Skip to content
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
34 changes: 17 additions & 17 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[workspace]
members = [
"src/btcnode-metrics",
"src/prom-api",
"src/btcnode-prom-metrics",
]
resolver = "3"
name = "btcnode-prom-metrics"

[workspace.package]
edition = "2024"
version = "0.1.0"
version = "1.0.0"
description = "The Bitcoin node metrics exporter for Prometheus built on the Rust Bitcoin Community's corepc-client crate."
license-file = "LICENSE"
homepage = "https://github.com/AltaModaTech/btcnode-prom-metrics"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ The Rust Bitcoin Community's public repository for this crate is at [corepc-clie

This repository's code is separated into:

- _prom-api_ implements the API for Prometheus to call for gathering metrics.
- _btcnode-prom-metrics_ implements the API for Prometheus to call for gathering metrics.
- _btcnode-metrics_ gathers metrics from the Bitcoin node and transforms them into Prometheus format.
2 changes: 1 addition & 1 deletion src/btcnode-metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "btcnode-metrics"
description.workspace = true
description = "Gathers Bitcoin node metrics and transforms to Prometheus format."
license-file.workspace = true
homepage.workspace = true
repository.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "prom-api"
name = "btcnode-prom-metrics"
description.workspace = true
license-file.workspace = true
homepage.workspace = true
Expand All @@ -10,7 +10,7 @@ version.workspace = true
edition.workspace = true

[dependencies]
btcnode-metrics = { path = "../btcnode-metrics", version = "0.1.0" }
btcnode-metrics = { path = "../btcnode-metrics", version = "^1.0.0" }
axum.workspace = true
tokio.workspace = true
prometheus.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.