Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
timzaak committed Jul 21, 2024
1 parent 9478b3b commit f9d6231
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion docs/develop/change-log.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Change Log

### Version 2.4.0

- improve: extract client and server common entity
- improve: extract client and server common entity
- conf: **break change** remove hocon config
- ci: add js client build ci, improve release cd
- improve: clean deps, update claps
- feat: add openTelemetry trace

### Version 2.3.0

Expand Down
3 changes: 3 additions & 0 deletions docs/guide/spa-server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,7 @@ addr = "0.0.0.0"
# expire = '30d' # 30day
# extension_names = ['icon', 'gif', 'jpg', 'jpeg', 'png', 'js']


# [openTelemetry]
# endpoint = "http://localhost:4317"
```
6 changes: 3 additions & 3 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ tracing = "0.1.21"# sync with warp
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

tracing-opentelemetry = "0.24"
opentelemetry = { version = "0.23", features = ["trace", "metrics"] }
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio", "metrics"] }
opentelemetry-otlp = { version = "0.16", features = ["default", "metrics"] }
opentelemetry = { version = "0.23", features = ["trace"] }
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.16", features = ["default"] }
#opentelemetry-resource-detectors = { version = "0.2" }
opentelemetry-semantic-conventions = { version = "0.15" }

Expand Down

0 comments on commit f9d6231

Please sign in to comment.