|
9 | 9 | metrics/chronos_httpserver,
|
10 | 10 | ./config,
|
11 | 11 | ./wakunode2,
|
12 |
| - ../protocol/waku_filter |
| 12 | + ../protocol/waku_filter, |
| 13 | + ../protocol/waku_store, |
| 14 | + ../protocol/waku_lightpush |
13 | 15 |
|
14 | 16 | logScope:
|
15 | 17 | topics = "wakunode.setup.metrics"
|
@@ -56,11 +58,13 @@ proc startMetricsLog*() =
|
56 | 58 | cumulativeErrors = totalErrors
|
57 | 59 | cumulativeConns = totalConnections
|
58 | 60 | info "Total connections initiated", count = freshConnCount
|
59 |
| - info "Total Messages", count = parseCollectorIntoF64(waku_node_messages) |
60 |
| - info "Total SWAP peers", count = parseCollectorIntoF64(waku_swap_peers_count) |
61 |
| - info "Total FILTER peers", count = parseCollectorIntoF64(waku_filter_peers) |
| 61 | + info "Total messages", count = parseCollectorIntoF64(waku_node_messages) |
| 62 | + info "Total swap peers", count = parseCollectorIntoF64(waku_swap_peers_count) |
| 63 | + info "Total filter peers", count = parseCollectorIntoF64(waku_filter_peers) |
| 64 | + info "Total store peers", count = parseCollectorIntoF64(waku_store_peers) |
| 65 | + info "Total lightpush peers", count = parseCollectorIntoF64(waku_lightpush_peers) |
62 | 66 | info "Total errors", count = freshErrorCount
|
63 |
| - info "Total subscribed topics", count = parseCollectorIntoF64(waku_filter_subscribers) |
| 67 | + info "Total active filter subscriptions", count = parseCollectorIntoF64(waku_filter_subscribers) |
64 | 68 |
|
65 | 69 | discard setTimer(Moment.fromNow(30.seconds), logMetrics)
|
66 | 70 |
|
|
0 commit comments