Skip to content

Commit 0968ad4

Browse files
Add revision to telemetry
1 parent 511b2a3 commit 0968ad4

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

bootstrap/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [0.5.7]
44

5+
- Added revision to telemetry
56
- Updated `avail-light-core` to 1.2.13
67

78
## [0.5.6](https://github.com/availproject/avail-light/releases/tag/avail-light-bootstrap-v0.5.6) - 2025-10-21

bootstrap/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ async fn run(
100100
"client_alias",
101101
cfg.client_alias.clone().unwrap_or("".to_string()),
102102
),
103+
("revision", rev.to_string()),
103104
];
104105

105106
let mut metrics = telemetry::otlp::initialize(

client/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [1.13.4]
44

5+
- Added revision to telemetry
56
- Updated `avail-light-core` to 1.2.13
67

78
## [1.13.3](https://github.com/availproject/avail-light/releases/tag/avail-light-client-v1.13.3) - 2025-10-21

client/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ async fn run(
423423
cfg.client_alias.clone().unwrap_or("".to_string()),
424424
),
425425
("network_mode", cfg.network_mode.to_string()),
426+
("revision", rev.to_string()),
426427
];
427428

428429
let mut metrics = telemetry::otlp::initialize(

crawler/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 0.2.0
44

5+
- Added revision to telemetry
56
- Update `avail-light-core` to 1.2.13
67
- Remove `ot_flush_block_interval` from configuration
78

crawler/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ async fn run(config: Config, db: DB, shutdown: Controller<String>) -> Result<()>
180180
("partition_size", partition_size),
181181
("network", Network::name(&config.genesis_hash)),
182182
("client_alias", config.client_alias),
183+
("revision", rev.to_string()),
183184
];
184185

185186
let mut metrics = otlp::initialize(

fat/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [1.12.12]
44

5+
- Added revision to telemetry
56
- Updated `avail-light-core` to 1.2.13
67

78
## [1.12.11](https://github.com/availproject/avail-light/releases/tag/avail-light-fat-v1.12.11) - 2025-10-21

fat/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ async fn run(config: Config, db: DB, shutdown: Controller<String>) -> Result<()>
208208
("peerID", p2p_peer_id.to_string()),
209209
("partition_size", partition_size),
210210
("network", Network::name(&config.genesis_hash)),
211+
("revision", rev.to_string()),
211212
];
212213

213214
let mut metrics = telemetry::otlp::initialize(

0 commit comments

Comments
 (0)