-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add repo logo and update readme
- Loading branch information
Showing
2 changed files
with
156 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Observe | ||
![WebAssembly Observability](./.github/assets/observe-wasm.svg) | ||
|
||
# WebAssembly Observability Toolkit | ||
|
||
Observe provides observability SDKs for WebAssembly, enabling continuous | ||
monitoring of WebAssembly code as it executes within a runtime. | ||
|
@@ -33,10 +35,10 @@ prioritize these additional components | |
|
||
There are two components to this process: | ||
|
||
1. [Instrumenting the Wasm code](#instrumenting-wasm-module) | ||
1. [Instrumenting the Wasm code](#instrumenting-wasm-modules) | ||
2. [Including a runtime/host SDK](#including-a-runtime-sdk) | ||
|
||
## Instrumenting Wasm Module | ||
## Instrumenting Wasm Modules | ||
|
||
This package expects the wasm code to be instrumented using our instrumenting | ||
compiler. The only way to instrument your wasm right now is through the | ||
|
@@ -61,7 +63,8 @@ curl -F [email protected] https://compiler-preview.dylibso.com/instrument -X POST | |
## Including a runtime SDK | ||
|
||
First install the cargo dependency for the SDK: | ||
This example covers the integration of the Rust SDK for Wasmtime. First install | ||
the cargo dependency for the SDK: | ||
|
||
```toml | ||
[dependencies] | ||
|