Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add ceramic_one_info metric #162

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ minicbor = { version = "0.19.1", features = ["alloc", "std"] }
mockall = "0.11.4"
multiaddr = "0.18"
multibase = "0.9"
multihash = "0.18"
multihash = { version = "0.18", features = ["identity"] }
names = { version = "0.14.0", default-features = false }
nix = "0.26"
num_enum = "0.5.7"
Expand Down
25 changes: 14 additions & 11 deletions one/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,40 @@ publish = false

[dependencies]
anyhow.workspace = true
ceramic-kubo-rpc = { path = "../kubo-rpc", features = ["http"] }
ceramic-api.workspace = true
ceramic-api-server.workspace = true
ceramic-api.workspace = true
ceramic-core.workspace = true
ceramic-kubo-rpc = { path = "../kubo-rpc", features = ["http"] }
ceramic-kubo-rpc-server.workspace = true
ceramic-p2p.workspace = true
clap.workspace = true
futures.workspace = true
futures-util.workspace = true
futures.workspace = true
git-version = "0.3"
home = "0.5"
hyper.workspace = true
iroh-metrics.workspace = true
iroh-rpc-client.workspace = true
iroh-rpc-types.workspace = true
ceramic-p2p.workspace = true
iroh-metrics.workspace = true
libipld.workspace = true
libp2p.workspace = true
multiaddr.workspace = true
multibase.workspace = true
multihash.workspace = true
names.workspace = true
prometheus-client.workspace = true
recon.workspace = true
sqlx.workspace = true
serde = "1"
serde_json = "1"
serde_repr = "0.1"
signal-hook = "0.3.17"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
sqlx.workspace = true
swagger.workspace = true
tokio.workspace = true
tracing-appender = "0.2.2"
tracing-subscriber.workspace = true
tracing.workspace = true
ceramic-core.workspace = true
hyper.workspace = true
swagger.workspace = true
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
signal-hook = "0.3.17"

[dev-dependencies]
expect-test.workspace = true
Loading
Loading