@aztec/telemetry-client 0.0.0-test.1 → 0.0.1-commit.b655e406
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/attributes.d.ts +21 -8
- package/dest/attributes.d.ts.map +1 -1
- package/dest/attributes.js +16 -8
- package/dest/bench.d.ts +3 -0
- package/dest/bench.d.ts.map +1 -1
- package/dest/bench.js +7 -0
- package/dest/config.d.ts +5 -1
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +23 -1
- package/dest/index.d.ts +1 -0
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -0
- package/dest/l1_metrics.d.ts +17 -0
- package/dest/l1_metrics.d.ts.map +1 -0
- package/dest/l1_metrics.js +70 -0
- package/dest/lmdb_metrics.d.ts +4 -2
- package/dest/lmdb_metrics.d.ts.map +1 -1
- package/dest/lmdb_metrics.js +8 -0
- package/dest/metrics.d.ts +87 -12
- package/dest/metrics.d.ts.map +1 -1
- package/dest/metrics.js +88 -13
- package/dest/{event_loop_monitor.d.ts → nodejs_metrics_monitor.d.ts} +5 -2
- package/dest/nodejs_metrics_monitor.d.ts.map +1 -0
- package/dest/{event_loop_monitor.js → nodejs_metrics_monitor.js} +55 -12
- package/dest/noop.d.ts +3 -1
- package/dest/noop.d.ts.map +1 -1
- package/dest/noop.js +2 -0
- package/dest/otel.d.ts +8 -4
- package/dest/otel.d.ts.map +1 -1
- package/dest/otel.js +79 -19
- package/dest/otel_filter_metric_exporter.d.ts +11 -3
- package/dest/otel_filter_metric_exporter.d.ts.map +1 -1
- package/dest/otel_filter_metric_exporter.js +38 -4
- package/dest/otel_resource.d.ts.map +1 -1
- package/dest/otel_resource.js +31 -2
- package/dest/prom_otel_adapter.d.ts +57 -8
- package/dest/prom_otel_adapter.d.ts.map +1 -1
- package/dest/prom_otel_adapter.js +143 -43
- package/dest/start.js +4 -4
- package/dest/telemetry.d.ts +28 -11
- package/dest/telemetry.d.ts.map +1 -1
- package/dest/telemetry.js +1 -1
- package/dest/vendor/otel-pino-stream.d.ts +0 -1
- package/dest/vendor/otel-pino-stream.d.ts.map +1 -1
- package/dest/vendor/otel-pino-stream.js +2 -2
- package/dest/wrappers/fetch.d.ts +1 -1
- package/dest/wrappers/fetch.d.ts.map +1 -1
- package/dest/wrappers/fetch.js +7 -5
- package/dest/wrappers/json_rpc_server.d.ts +1 -1
- package/dest/wrappers/json_rpc_server.d.ts.map +1 -1
- package/dest/wrappers/l2_block_stream.d.ts +1 -1
- package/dest/wrappers/l2_block_stream.d.ts.map +1 -1
- package/package.json +16 -13
- package/src/attributes.ts +27 -11
- package/src/bench.ts +15 -5
- package/src/config.ts +41 -2
- package/src/index.ts +1 -0
- package/src/l1_metrics.ts +80 -0
- package/src/lmdb_metrics.ts +24 -3
- package/src/metrics.ts +106 -12
- package/src/{event_loop_monitor.ts → nodejs_metrics_monitor.ts} +59 -10
- package/src/noop.ts +4 -1
- package/src/otel.ts +66 -21
- package/src/otel_filter_metric_exporter.ts +47 -5
- package/src/otel_resource.ts +40 -2
- package/src/prom_otel_adapter.ts +191 -59
- package/src/start.ts +4 -4
- package/src/telemetry.ts +50 -12
- package/src/vendor/otel-pino-stream.ts +1 -4
- package/src/wrappers/fetch.ts +24 -31
- package/src/wrappers/json_rpc_server.ts +1 -1
- package/src/wrappers/l2_block_stream.ts +1 -1
- package/dest/event_loop_monitor.d.ts.map +0 -1
package/src/metrics.ts
CHANGED
|
@@ -6,9 +6,15 @@
|
|
|
6
6
|
* @see {@link https://opentelemetry.io/docs/specs/semconv/general/metrics/ | OpenTelemetry Metrics} for naming conventions.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
export const BLOB_SINK_STORE_REQUESTS = 'aztec.blob_sink.store_request_count';
|
|
10
|
+
export const BLOB_SINK_RETRIEVE_REQUESTS = 'aztec.blob_sink.retrieve_request_count';
|
|
9
11
|
export const BLOB_SINK_OBJECTS_IN_BLOB_STORE = 'aztec.blob_sink.objects_in_blob_store';
|
|
10
12
|
export const BLOB_SINK_BLOB_SIZE = 'aztec.blob_sink.blob_size';
|
|
11
13
|
|
|
14
|
+
export const BLOB_SINK_ARCHIVE_BLOB_REQUEST_COUNT = 'aztec.blob_sink.archive.block_request_count';
|
|
15
|
+
export const BLOB_SINK_ARCHIVE_BLOCK_REQUEST_COUNT = 'aztec.blob_sink.archive.blob_request_count';
|
|
16
|
+
export const BLOB_SINK_ARCHIVE_BLOB_COUNT = 'aztec.blob_sink.archive.blob_count';
|
|
17
|
+
|
|
12
18
|
/** How long it takes to simulate a circuit */
|
|
13
19
|
export const CIRCUIT_SIMULATION_DURATION = 'aztec.circuit.simulation.duration';
|
|
14
20
|
export const CIRCUIT_SIMULATION_INPUT_SIZE = 'aztec.circuit.simulation.input_size';
|
|
@@ -30,32 +36,48 @@ export const MEMPOOL_TX_COUNT = 'aztec.mempool.tx_count';
|
|
|
30
36
|
export const MEMPOOL_TX_SIZE = 'aztec.mempool.tx_size';
|
|
31
37
|
export const DB_NUM_ITEMS = 'aztec.db.num_items';
|
|
32
38
|
export const DB_MAP_SIZE = 'aztec.db.map_size';
|
|
39
|
+
export const DB_PHYSICAL_FILE_SIZE = 'aztec.db.physical_file_size';
|
|
33
40
|
export const DB_USED_SIZE = 'aztec.db.used_size';
|
|
34
41
|
|
|
35
42
|
export const MEMPOOL_ATTESTATIONS_COUNT = 'aztec.mempool.attestations_count';
|
|
36
43
|
export const MEMPOOL_ATTESTATIONS_SIZE = 'aztec.mempool.attestations_size';
|
|
37
44
|
|
|
38
|
-
export const ARCHIVER_SYNC_DURATION = 'aztec.archiver.sync_duration';
|
|
39
|
-
export const ARCHIVER_L1_BLOCKS_SYNCED = 'aztec.archiver.l1_blocks_synced';
|
|
40
45
|
export const ARCHIVER_L1_BLOCK_HEIGHT = 'aztec.archiver.l1_block_height';
|
|
41
46
|
export const ARCHIVER_BLOCK_HEIGHT = 'aztec.archiver.block_height';
|
|
42
|
-
export const ARCHIVER_TX_COUNT = 'aztec.archiver.tx_count';
|
|
43
47
|
export const ARCHIVER_ROLLUP_PROOF_DELAY = 'aztec.archiver.rollup_proof_delay';
|
|
44
48
|
export const ARCHIVER_ROLLUP_PROOF_COUNT = 'aztec.archiver.rollup_proof_count';
|
|
49
|
+
|
|
50
|
+
export const ARCHIVER_MANA_PER_BLOCK = 'aztec.archiver.block.mana_count';
|
|
51
|
+
export const ARCHIVER_TXS_PER_BLOCK = 'aztec.archiver.block.tx_count';
|
|
52
|
+
export const ARCHIVER_SYNC_PER_BLOCK = 'aztec.archiver.block.sync_per_item_duration';
|
|
53
|
+
export const ARCHIVER_SYNC_BLOCK_COUNT = 'aztec.archiver.block.sync_count';
|
|
54
|
+
|
|
55
|
+
export const ARCHIVER_SYNC_PER_MESSAGE = 'aztec.archiver.message.sync_per_item_duration';
|
|
56
|
+
export const ARCHIVER_SYNC_MESSAGE_COUNT = 'aztec.archiver.message.sync_count';
|
|
57
|
+
|
|
58
|
+
export const ARCHIVER_PRUNE_DURATION = 'aztec.archiver.prune_duration';
|
|
45
59
|
export const ARCHIVER_PRUNE_COUNT = 'aztec.archiver.prune_count';
|
|
46
60
|
|
|
61
|
+
export const ARCHIVER_TOTAL_TXS = 'aztec.archiver.tx_count';
|
|
62
|
+
|
|
47
63
|
export const NODE_RECEIVE_TX_DURATION = 'aztec.node.receive_tx.duration';
|
|
48
64
|
export const NODE_RECEIVE_TX_COUNT = 'aztec.node.receive_tx.count';
|
|
49
65
|
|
|
66
|
+
export const NODE_SNAPSHOT_DURATION = 'aztec.node.snapshot_duration';
|
|
67
|
+
export const NODE_SNAPSHOT_ERROR_COUNT = 'aztec.node.snapshot_error_count';
|
|
68
|
+
|
|
50
69
|
export const SEQUENCER_STATE_TRANSITION_BUFFER_DURATION = 'aztec.sequencer.state_transition_buffer.duration';
|
|
51
70
|
export const SEQUENCER_BLOCK_BUILD_DURATION = 'aztec.sequencer.block.build_duration';
|
|
52
71
|
export const SEQUENCER_BLOCK_BUILD_MANA_PER_SECOND = 'aztec.sequencer.block.build_mana_per_second';
|
|
53
72
|
export const SEQUENCER_BLOCK_COUNT = 'aztec.sequencer.block.count';
|
|
54
|
-
export const
|
|
55
|
-
export const
|
|
56
|
-
export const
|
|
57
|
-
|
|
58
|
-
export const
|
|
73
|
+
export const SEQUENCER_CURRENT_BLOCK_REWARDS = 'aztec.sequencer.current_block_rewards';
|
|
74
|
+
export const SEQUENCER_SLOT_COUNT = 'aztec.sequencer.slot.total_count';
|
|
75
|
+
export const SEQUENCER_FILLED_SLOT_COUNT = 'aztec.sequencer.slot.filled_count';
|
|
76
|
+
|
|
77
|
+
export const SEQUENCER_COLLECTED_ATTESTATIONS_COUNT = 'aztec.sequencer.attestations.collected_count';
|
|
78
|
+
export const SEQUENCER_REQUIRED_ATTESTATIONS_COUNT = 'aztec.sequencer.attestations.required_count';
|
|
79
|
+
export const SEQUENCER_COLLECT_ATTESTATIONS_DURATION = 'aztec.sequencer.attestations.collect_duration';
|
|
80
|
+
export const SEQUENCER_COLLECT_ATTESTATIONS_TIME_ALLOWANCE = 'aztec.sequencer.attestations.collect_allowance';
|
|
59
81
|
|
|
60
82
|
export const L1_PUBLISHER_GAS_PRICE = 'aztec.l1_publisher.gas_price';
|
|
61
83
|
export const L1_PUBLISHER_TX_COUNT = 'aztec.l1_publisher.tx_count';
|
|
@@ -70,15 +92,48 @@ export const L1_PUBLISHER_BLOB_INCLUSION_BLOCKS = 'aztec.l1_publisher.blob_inclu
|
|
|
70
92
|
export const L1_PUBLISHER_BLOB_TX_SUCCESS = 'aztec.l1_publisher.blob_tx_success';
|
|
71
93
|
export const L1_PUBLISHER_BLOB_TX_FAILURE = 'aztec.l1_publisher.blob_tx_failure';
|
|
72
94
|
export const L1_PUBLISHER_BALANCE = 'aztec.l1_publisher.balance';
|
|
95
|
+
export const L1_PUBLISHER_TX_TOTAL_FEE = 'aztec.l1_publisher.tx_total_fee';
|
|
96
|
+
|
|
97
|
+
export const L1_BLOCK_HEIGHT = 'aztec.l1.block_height';
|
|
98
|
+
export const L1_BALANCE_ETH = 'aztec.l1.balance';
|
|
99
|
+
export const L1_GAS_PRICE_WEI = 'aztec.l1.gas_price';
|
|
100
|
+
export const L1_BLOB_BASE_FEE_WEI = 'aztec.l1.blob_base_fee';
|
|
101
|
+
|
|
102
|
+
export const L1_TX_MINED_DURATION = 'aztec.l1_tx.mined_duration';
|
|
103
|
+
export const L1_TX_MINED_COUNT = 'aztec.l1_tx.mined_count';
|
|
104
|
+
export const L1_TX_REVERTED_COUNT = 'aztec.l1_tx.reverted_count';
|
|
105
|
+
export const L1_TX_CANCELLED_COUNT = 'aztec.l1_tx.cancelled_count';
|
|
106
|
+
export const L1_TX_NOT_MINED_COUNT = 'aztec.l1_tx.not_mined_count';
|
|
107
|
+
export const L1_TX_ATTEMPTS_UNTIL_MINED = 'aztec.l1_tx.attempts_until_mined';
|
|
108
|
+
export const L1_TX_MAX_PRIORITY_FEE = 'aztec.l1_tx.max_priority_fee';
|
|
109
|
+
export const L1_TX_MAX_FEE = 'aztec.l1_tx.max_fee';
|
|
110
|
+
export const L1_TX_BLOB_FEE = 'aztec.l1_tx.blob_fee';
|
|
73
111
|
|
|
74
112
|
export const PEER_MANAGER_GOODBYES_SENT = 'aztec.peer_manager.goodbyes_sent';
|
|
75
113
|
export const PEER_MANAGER_GOODBYES_RECEIVED = 'aztec.peer_manager.goodbyes_received';
|
|
114
|
+
export const PEER_MANAGER_PEER_COUNT = 'aztec.peer_manager.peer_count';
|
|
76
115
|
|
|
77
116
|
export const P2P_REQ_RESP_SENT_REQUESTS = 'aztec.p2p.req_resp.sent_requests';
|
|
78
117
|
export const P2P_REQ_RESP_RECEIVED_REQUESTS = 'aztec.p2p.req_resp.received_requests';
|
|
79
118
|
export const P2P_REQ_RESP_FAILED_OUTBOUND_REQUESTS = 'aztec.p2p.req_resp.failed_outbound_requests';
|
|
80
119
|
export const P2P_REQ_RESP_FAILED_INBOUND_REQUESTS = 'aztec.p2p.req_resp.failed_inbound_requests';
|
|
81
120
|
|
|
121
|
+
export const P2P_GOSSIP_MESSAGE_VALIDATION_DURATION = 'aztec.p2p.gossip.message_validation_duration';
|
|
122
|
+
export const P2P_GOSSIP_MESSAGE_PREVALIDATION_COUNT = 'aztec.p2p.gossip.message_validation_count';
|
|
123
|
+
export const P2P_GOSSIP_MESSAGE_LATENCY = 'aztec.p2p.gossip.message_latency';
|
|
124
|
+
|
|
125
|
+
export const P2P_GOSSIP_AGG_MESSAGE_LATENCY_MIN = 'aztec.p2p.gossip.agg_message_latency_min';
|
|
126
|
+
export const P2P_GOSSIP_AGG_MESSAGE_LATENCY_MAX = 'aztec.p2p.gossip.agg_message_latency_max';
|
|
127
|
+
export const P2P_GOSSIP_AGG_MESSAGE_LATENCY_P50 = 'aztec.p2p.gossip.agg_message_latency_p50';
|
|
128
|
+
export const P2P_GOSSIP_AGG_MESSAGE_LATENCY_P90 = 'aztec.p2p.gossip.agg_message_latency_p90';
|
|
129
|
+
export const P2P_GOSSIP_AGG_MESSAGE_LATENCY_AVG = 'aztec.p2p.gossip.agg_message_latency_avg';
|
|
130
|
+
|
|
131
|
+
export const P2P_GOSSIP_AGG_MESSAGE_VALIDATION_DURATION_MIN = 'aztec.p2p.gossip.agg_message_validation_duration_min';
|
|
132
|
+
export const P2P_GOSSIP_AGG_MESSAGE_VALIDATION_DURATION_MAX = 'aztec.p2p.gossip.agg_message_validation_duration_max';
|
|
133
|
+
export const P2P_GOSSIP_AGG_MESSAGE_VALIDATION_DURATION_P50 = 'aztec.p2p.gossip.agg_message_validation_duration_p50';
|
|
134
|
+
export const P2P_GOSSIP_AGG_MESSAGE_VALIDATION_DURATION_P90 = 'aztec.p2p.gossip.agg_message_validation_duration_p90';
|
|
135
|
+
export const P2P_GOSSIP_AGG_MESSAGE_VALIDATION_DURATION_AVG = 'aztec.p2p.gossip.agg_message_validation_duration_avg';
|
|
136
|
+
|
|
82
137
|
export const PUBLIC_PROCESSOR_TX_DURATION = 'aztec.public_processor.tx_duration';
|
|
83
138
|
export const PUBLIC_PROCESSOR_TX_COUNT = 'aztec.public_processor.tx_count';
|
|
84
139
|
export const PUBLIC_PROCESSOR_TX_PHASE_COUNT = 'aztec.public_processor.tx_phase_count';
|
|
@@ -91,15 +146,21 @@ export const PUBLIC_PROCESSOR_TOTAL_GAS_HISTOGRAM = 'aztec.public_processor.tota
|
|
|
91
146
|
export const PUBLIC_PROCESSOR_GAS_RATE = 'aztec.public_processor.gas_rate';
|
|
92
147
|
export const PUBLIC_PROCESSOR_TREE_INSERTION = 'aztec.public_processor.tree_insertion';
|
|
93
148
|
|
|
149
|
+
export const PUBLIC_EXECUTOR_PREFIX = 'aztec.public_executor.';
|
|
94
150
|
export const PUBLIC_EXECUTOR_SIMULATION_COUNT = 'aztec.public_executor.simulation_count';
|
|
95
151
|
export const PUBLIC_EXECUTOR_SIMULATION_DURATION = 'aztec.public_executor.simulation_duration';
|
|
96
152
|
export const PUBLIC_EXECUTOR_SIMULATION_MANA_PER_SECOND = 'aztec.public_executor.simulation_mana_per_second';
|
|
97
|
-
export const
|
|
98
|
-
export const
|
|
153
|
+
export const PUBLIC_EXECUTOR_SIMULATION_MANA_USED = 'aztec.public_executor.simulation_mana_used';
|
|
154
|
+
export const PUBLIC_EXECUTOR_SIMULATION_TOTAL_INSTRUCTIONS = 'aztec.public_executor.simulation_total_instructions';
|
|
155
|
+
export const PUBLIC_EXECUTOR_TX_HASHING = 'aztec.public_executor.tx_hashing';
|
|
156
|
+
export const PUBLIC_EXECUTOR_PRIVATE_EFFECTS_INSERTION = 'aztec.public_executor.private_effects_insertion';
|
|
157
|
+
export const PUBLIC_EXECUTOR_SIMULATION_BYTECODE_SIZE = 'aztec.public_executor.simulation_bytecode_size';
|
|
99
158
|
|
|
100
159
|
export const PROVING_ORCHESTRATOR_BASE_ROLLUP_INPUTS_DURATION =
|
|
101
160
|
'aztec.proving_orchestrator.base_rollup.inputs_duration';
|
|
102
161
|
|
|
162
|
+
export const PROVING_ORCHESTRATOR_AVM_FALLBACK_COUNT = 'aztec.proving_orchestrator.avm.fallback_count';
|
|
163
|
+
|
|
103
164
|
export const PROVING_QUEUE_JOB_SIZE = 'aztec.proving_queue.job_size';
|
|
104
165
|
export const PROVING_QUEUE_SIZE = 'aztec.proving_queue.size';
|
|
105
166
|
export const PROVING_QUEUE_TOTAL_JOBS = 'aztec.proving_queue.enqueued_jobs_count';
|
|
@@ -121,15 +182,18 @@ export const PROVER_NODE_EXECUTION_DURATION = 'aztec.prover_node.execution.durat
|
|
|
121
182
|
export const PROVER_NODE_JOB_DURATION = 'aztec.prover_node.job_duration';
|
|
122
183
|
export const PROVER_NODE_JOB_BLOCKS = 'aztec.prover_node.job_blocks';
|
|
123
184
|
export const PROVER_NODE_JOB_TRANSACTIONS = 'aztec.prover_node.job_transactions';
|
|
185
|
+
export const PROVER_NODE_REWARDS_TOTAL = 'aztec.prover_node.rewards_total';
|
|
186
|
+
export const PROVER_NODE_REWARDS_PER_EPOCH = 'aztec.prover_node.rewards_per_epoch';
|
|
124
187
|
|
|
125
188
|
export const WORLD_STATE_FORK_DURATION = 'aztec.world_state.fork.duration';
|
|
126
189
|
export const WORLD_STATE_SYNC_DURATION = 'aztec.world_state.sync.duration';
|
|
127
190
|
export const WORLD_STATE_MERKLE_TREE_SIZE = 'aztec.world_state.merkle_tree_size';
|
|
128
191
|
export const WORLD_STATE_DB_SIZE = 'aztec.world_state.db_size';
|
|
129
192
|
export const WORLD_STATE_DB_MAP_SIZE = 'aztec.world_state.db_map_size';
|
|
193
|
+
export const WORLD_STATE_DB_PHYSICAL_SIZE = 'aztec.world_state.db_physical_size';
|
|
130
194
|
export const WORLD_STATE_TREE_SIZE = 'aztec.world_state.tree_size';
|
|
131
|
-
export const
|
|
132
|
-
export const
|
|
195
|
+
export const WORLD_STATE_UNFINALIZED_HEIGHT = 'aztec.world_state.unfinalized_height';
|
|
196
|
+
export const WORLD_STATE_FINALIZED_HEIGHT = 'aztec.world_state.finalized_height';
|
|
133
197
|
export const WORLD_STATE_OLDEST_BLOCK = 'aztec.world_state.oldest_block';
|
|
134
198
|
export const WORLD_STATE_DB_USED_SIZE = 'aztec.world_state.db_used_size';
|
|
135
199
|
export const WORLD_STATE_DB_NUM_ITEMS = 'aztec.world_state.db_num_items';
|
|
@@ -139,7 +203,13 @@ export const WORLD_STATE_CRITICAL_ERROR_COUNT = 'aztec.world_state.critical_erro
|
|
|
139
203
|
export const PROOF_VERIFIER_COUNT = 'aztec.proof_verifier.count';
|
|
140
204
|
|
|
141
205
|
export const VALIDATOR_RE_EXECUTION_TIME = 'aztec.validator.re_execution_time';
|
|
206
|
+
export const VALIDATOR_RE_EXECUTION_MANA = 'aztec.validator.re_execution_mana';
|
|
207
|
+
export const VALIDATOR_RE_EXECUTION_TX_COUNT = 'aztec.validator.re_execution_tx_count';
|
|
208
|
+
|
|
142
209
|
export const VALIDATOR_FAILED_REEXECUTION_COUNT = 'aztec.validator.failed_reexecution_count';
|
|
210
|
+
export const VALIDATOR_ATTESTATION_SUCCESS_COUNT = 'aztec.validator.attestation_success_count';
|
|
211
|
+
export const VALIDATOR_ATTESTATION_FAILED_BAD_PROPOSAL_COUNT = 'aztec.validator.attestation_failed_bad_proposal_count';
|
|
212
|
+
export const VALIDATOR_ATTESTATION_FAILED_NODE_ISSUE_COUNT = 'aztec.validator.attestation_failed_node_issue_count';
|
|
143
213
|
|
|
144
214
|
export const NODEJS_EVENT_LOOP_DELAY_MIN = 'nodejs.eventloop.delay.min';
|
|
145
215
|
export const NODEJS_EVENT_LOOP_DELAY_MEAN = 'nodejs.eventloop.delay.mean';
|
|
@@ -151,3 +221,27 @@ export const NODEJS_EVENT_LOOP_DELAY_P99 = 'nodejs.eventloop.delay.p99';
|
|
|
151
221
|
|
|
152
222
|
export const NODEJS_EVENT_LOOP_UTILIZATION = 'nodejs.eventloop.utilization';
|
|
153
223
|
export const NODEJS_EVENT_LOOP_TIME = 'nodejs.eventloop.time';
|
|
224
|
+
|
|
225
|
+
export const NODEJS_MEMORY_HEAP_USAGE = 'nodejs.memory.v8_heap.usage';
|
|
226
|
+
export const NODEJS_MEMORY_HEAP_TOTAL = 'nodejs.memory.v8_heap.total';
|
|
227
|
+
export const NODEJS_MEMORY_NATIVE_USAGE = 'nodejs.memory.native.usage';
|
|
228
|
+
export const NODEJS_MEMORY_BUFFER_USAGE = 'nodejs.memory.array_buffer.usage';
|
|
229
|
+
|
|
230
|
+
export const TX_PROVIDER_TXS_FROM_PROPOSALS_COUNT = 'aztec.tx_collector.txs_from_proposal_count';
|
|
231
|
+
export const TX_PROVIDER_TXS_FROM_MEMPOOL_COUNT = 'aztec.tx_collector.txs_from_mempool_count';
|
|
232
|
+
export const TX_PROVIDER_TXS_FROM_P2P_COUNT = 'aztec.tx_collector.txs_from_p2p_count';
|
|
233
|
+
export const TX_PROVIDER_MISSING_TXS_COUNT = 'aztec.tx_collector.missing_txs_count';
|
|
234
|
+
|
|
235
|
+
export const TX_COLLECTOR_COUNT = 'aztec.tx_collector.tx_count';
|
|
236
|
+
export const TX_COLLECTOR_DURATION_PER_REQUEST = 'aztec.tx_collector.duration_per_request';
|
|
237
|
+
export const TX_COLLECTOR_DURATION_PER_TX = 'aztec.tx_collector.duration_per_tx';
|
|
238
|
+
|
|
239
|
+
export const IVC_VERIFIER_TIME = 'aztec.ivc_verifier.time';
|
|
240
|
+
export const IVC_VERIFIER_TOTAL_TIME = 'aztec.ivc_verifier.total_time';
|
|
241
|
+
export const IVC_VERIFIER_FAILURE_COUNT = 'aztec.ivc_verifier.failure_count';
|
|
242
|
+
|
|
243
|
+
export const IVC_VERIFIER_AGG_DURATION_MIN = 'aztec.ivc_verifier.agg_duration_min';
|
|
244
|
+
export const IVC_VERIFIER_AGG_DURATION_MAX = 'aztec.ivc_verifier.agg_duration_max';
|
|
245
|
+
export const IVC_VERIFIER_AGG_DURATION_P50 = 'aztec.ivc_verifier.agg_duration_p50';
|
|
246
|
+
export const IVC_VERIFIER_AGG_DURATION_P90 = 'aztec.ivc_verifier.agg_duration_p90';
|
|
247
|
+
export const IVC_VERIFIER_AGG_DURATION_AVG = 'aztec.ivc_verifier.agg_duration_avg';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Observable } from '@opentelemetry/api';
|
|
1
2
|
import { type EventLoopUtilization, type IntervalHistogram, monitorEventLoopDelay, performance } from 'node:perf_hooks';
|
|
2
3
|
|
|
3
4
|
import * as Attributes from './attributes.js';
|
|
@@ -13,7 +14,7 @@ import {
|
|
|
13
14
|
/**
|
|
14
15
|
* Detector for custom Aztec attributes
|
|
15
16
|
*/
|
|
16
|
-
export class
|
|
17
|
+
export class NodejsMetricsMonitor {
|
|
17
18
|
private eventLoopDelayGauges: {
|
|
18
19
|
min: ObservableGauge;
|
|
19
20
|
max: ObservableGauge;
|
|
@@ -24,6 +25,10 @@ export class EventLoopMonitor {
|
|
|
24
25
|
p99: ObservableGauge;
|
|
25
26
|
};
|
|
26
27
|
|
|
28
|
+
// skip `rss` because that's already tracked by @opentelemetry/host-metrics
|
|
29
|
+
// description of each field here https://nodejs.org/api/process.html#processmemoryusage
|
|
30
|
+
private memoryGauges: Record<Exclude<keyof NodeJS.MemoryUsage, 'rss'>, ObservableGauge>;
|
|
31
|
+
|
|
27
32
|
private eventLoopUilization: ObservableGauge;
|
|
28
33
|
private eventLoopTime: UpDownCounter;
|
|
29
34
|
|
|
@@ -62,6 +67,25 @@ export class EventLoopMonitor {
|
|
|
62
67
|
});
|
|
63
68
|
|
|
64
69
|
this.eventLoopDelay = monitorEventLoopDelay();
|
|
70
|
+
|
|
71
|
+
this.memoryGauges = {
|
|
72
|
+
heapUsed: meter.createObservableGauge(Metrics.NODEJS_MEMORY_HEAP_USAGE, {
|
|
73
|
+
unit: 'By',
|
|
74
|
+
description: 'Memory used by the V8 heap',
|
|
75
|
+
}),
|
|
76
|
+
heapTotal: meter.createObservableGauge(Metrics.NODEJS_MEMORY_HEAP_TOTAL, {
|
|
77
|
+
unit: 'By',
|
|
78
|
+
description: 'The max size the V8 heap can grow to',
|
|
79
|
+
}),
|
|
80
|
+
arrayBuffers: meter.createObservableGauge(Metrics.NODEJS_MEMORY_BUFFER_USAGE, {
|
|
81
|
+
unit: 'By',
|
|
82
|
+
description: 'Memory allocated for buffers (includes native memory used)',
|
|
83
|
+
}),
|
|
84
|
+
external: meter.createObservableGauge(Metrics.NODEJS_MEMORY_NATIVE_USAGE, {
|
|
85
|
+
unit: 'By',
|
|
86
|
+
description: 'Memory allocated for native C++ objects',
|
|
87
|
+
}),
|
|
88
|
+
};
|
|
65
89
|
}
|
|
66
90
|
|
|
67
91
|
start(): void {
|
|
@@ -74,6 +98,7 @@ export class EventLoopMonitor {
|
|
|
74
98
|
this.meter.addBatchObservableCallback(this.measure, [
|
|
75
99
|
this.eventLoopUilization,
|
|
76
100
|
...Object.values(this.eventLoopDelayGauges),
|
|
101
|
+
...Object.values(this.memoryGauges),
|
|
77
102
|
]);
|
|
78
103
|
}
|
|
79
104
|
|
|
@@ -84,6 +109,7 @@ export class EventLoopMonitor {
|
|
|
84
109
|
this.meter.removeBatchObservableCallback(this.measure, [
|
|
85
110
|
this.eventLoopUilization,
|
|
86
111
|
...Object.values(this.eventLoopDelayGauges),
|
|
112
|
+
...Object.values(this.memoryGauges),
|
|
87
113
|
]);
|
|
88
114
|
this.eventLoopDelay.disable();
|
|
89
115
|
this.eventLoopDelay.reset();
|
|
@@ -91,6 +117,20 @@ export class EventLoopMonitor {
|
|
|
91
117
|
}
|
|
92
118
|
|
|
93
119
|
private measure = (obs: BatchObservableResult): void => {
|
|
120
|
+
this.measureMemoryUsage(obs);
|
|
121
|
+
this.measureEventLoopDelay(obs);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
private measureMemoryUsage = (observer: BatchObservableResult) => {
|
|
125
|
+
const mem = process.memoryUsage();
|
|
126
|
+
|
|
127
|
+
observer.observe(this.memoryGauges.heapUsed, mem.heapUsed);
|
|
128
|
+
observer.observe(this.memoryGauges.heapTotal, mem.heapTotal);
|
|
129
|
+
observer.observe(this.memoryGauges.arrayBuffers, mem.arrayBuffers);
|
|
130
|
+
observer.observe(this.memoryGauges.external, mem.external);
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
private measureEventLoopDelay = (obs: BatchObservableResult): void => {
|
|
94
134
|
const newELU = performance.eventLoopUtilization();
|
|
95
135
|
const delta = performance.eventLoopUtilization(newELU, this.lastELU);
|
|
96
136
|
this.lastELU = newELU;
|
|
@@ -103,17 +143,26 @@ export class EventLoopMonitor {
|
|
|
103
143
|
// - https://youtu.be/WetXnEPraYM
|
|
104
144
|
obs.observe(this.eventLoopUilization, delta.utilization);
|
|
105
145
|
|
|
106
|
-
this.eventLoopTime.add(Math.
|
|
107
|
-
this.eventLoopTime.add(Math.
|
|
146
|
+
this.eventLoopTime.add(Math.trunc(delta.idle), { [Attributes.NODEJS_EVENT_LOOP_STATE]: 'idle' });
|
|
147
|
+
this.eventLoopTime.add(Math.trunc(delta.active), { [Attributes.NODEJS_EVENT_LOOP_STATE]: 'active' });
|
|
108
148
|
|
|
109
|
-
obs
|
|
110
|
-
obs
|
|
111
|
-
obs
|
|
112
|
-
obs
|
|
113
|
-
obs
|
|
114
|
-
obs
|
|
115
|
-
obs
|
|
149
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.min, this.eventLoopDelay.min);
|
|
150
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.mean, this.eventLoopDelay.mean);
|
|
151
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.max, this.eventLoopDelay.max);
|
|
152
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.stddev, this.eventLoopDelay.stddev);
|
|
153
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.p50, this.eventLoopDelay.percentile(50));
|
|
154
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.p90, this.eventLoopDelay.percentile(90));
|
|
155
|
+
safeObserveInt(obs, this.eventLoopDelayGauges.p99, this.eventLoopDelay.percentile(99));
|
|
116
156
|
|
|
117
157
|
this.eventLoopDelay.reset();
|
|
118
158
|
};
|
|
119
159
|
}
|
|
160
|
+
|
|
161
|
+
function safeObserveInt(observer: BatchObservableResult, metric: Observable, value: number, attrs?: object) {
|
|
162
|
+
// discard NaN, Infinity, -Infinity
|
|
163
|
+
if (!Number.isFinite(value)) {
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
observer.observe(metric, Math.trunc(value), attrs);
|
|
168
|
+
}
|
package/src/noop.ts
CHANGED
|
@@ -3,6 +3,9 @@ import { type Meter, type Span, type SpanContext, type Tracer, createNoopMeter }
|
|
|
3
3
|
import type { TelemetryClient } from './telemetry.js';
|
|
4
4
|
|
|
5
5
|
export class NoopTelemetryClient implements TelemetryClient {
|
|
6
|
+
setExportedPublicTelemetry(_prefixes: string[]): void {}
|
|
7
|
+
setPublicTelemetryCollectFrom(_roles: string[]): void {}
|
|
8
|
+
|
|
6
9
|
getMeter(): Meter {
|
|
7
10
|
return createNoopMeter();
|
|
8
11
|
}
|
|
@@ -32,7 +35,7 @@ export class NoopTracer implements Tracer {
|
|
|
32
35
|
return new NoopSpan();
|
|
33
36
|
}
|
|
34
37
|
|
|
35
|
-
startActiveSpan<F extends (...args: any[]) => any>(_name: string, ...args:
|
|
38
|
+
startActiveSpan<F extends (...args: any[]) => any>(_name: string, ...args: unknown[]): ReturnType<F> {
|
|
36
39
|
// there are three different signatures for startActiveSpan, grab the function, we don't care about the rest
|
|
37
40
|
const fn = args.find(arg => typeof arg === 'function') as F;
|
|
38
41
|
return fn(new NoopSpan());
|
package/src/otel.ts
CHANGED
|
@@ -28,8 +28,8 @@ import { BatchSpanProcessor, NodeTracerProvider } from '@opentelemetry/sdk-trace
|
|
|
28
28
|
import { ATTR_SERVICE_NAME, ATTR_SERVICE_VERSION } from '@opentelemetry/semantic-conventions';
|
|
29
29
|
|
|
30
30
|
import type { TelemetryClientConfig } from './config.js';
|
|
31
|
-
import {
|
|
32
|
-
import { OtelFilterMetricExporter } from './otel_filter_metric_exporter.js';
|
|
31
|
+
import { NodejsMetricsMonitor } from './nodejs_metrics_monitor.js';
|
|
32
|
+
import { OtelFilterMetricExporter, PublicOtelFilterMetricExporter } from './otel_filter_metric_exporter.js';
|
|
33
33
|
import { registerOtelLoggerProvider } from './otel_logger_provider.js';
|
|
34
34
|
import { getOtelResource } from './otel_resource.js';
|
|
35
35
|
import type { TelemetryClient } from './telemetry.js';
|
|
@@ -38,7 +38,7 @@ export type OpenTelemetryClientFactory = (resource: IResource, log: Logger) => O
|
|
|
38
38
|
|
|
39
39
|
export class OpenTelemetryClient implements TelemetryClient {
|
|
40
40
|
hostMetrics: HostMetrics | undefined;
|
|
41
|
-
|
|
41
|
+
nodejsMetricsMonitor: NodejsMetricsMonitor | undefined;
|
|
42
42
|
private meters: Map<string, Meter> = new Map<string, Meter>();
|
|
43
43
|
private tracers: Map<string, Tracer> = new Map<string, Tracer>();
|
|
44
44
|
|
|
@@ -47,9 +47,18 @@ export class OpenTelemetryClient implements TelemetryClient {
|
|
|
47
47
|
private meterProvider: MeterProvider,
|
|
48
48
|
private traceProvider: TracerProvider,
|
|
49
49
|
private loggerProvider: LoggerProvider | undefined,
|
|
50
|
+
private publicMetricExporter: PublicOtelFilterMetricExporter | undefined,
|
|
50
51
|
private log: Logger,
|
|
51
52
|
) {}
|
|
52
53
|
|
|
54
|
+
setExportedPublicTelemetry(metrics: string[]): void {
|
|
55
|
+
this.publicMetricExporter?.setMetricPrefixes(metrics);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
setPublicTelemetryCollectFrom(roles: string[]): void {
|
|
59
|
+
this.publicMetricExporter?.setAllowedRoles(roles);
|
|
60
|
+
}
|
|
61
|
+
|
|
53
62
|
getMeter(name: string): Meter {
|
|
54
63
|
let meter = this.meters.get(name);
|
|
55
64
|
if (!meter) {
|
|
@@ -91,12 +100,12 @@ export class OpenTelemetryClient implements TelemetryClient {
|
|
|
91
100
|
meterProvider: this.meterProvider,
|
|
92
101
|
});
|
|
93
102
|
|
|
94
|
-
this.
|
|
103
|
+
this.nodejsMetricsMonitor = new NodejsMetricsMonitor(
|
|
95
104
|
this.meterProvider.getMeter(this.resource.attributes[ATTR_SERVICE_NAME] as string),
|
|
96
105
|
);
|
|
97
106
|
|
|
98
107
|
this.hostMetrics.start();
|
|
99
|
-
this.
|
|
108
|
+
this.nodejsMetricsMonitor.start();
|
|
100
109
|
}
|
|
101
110
|
|
|
102
111
|
public isEnabled() {
|
|
@@ -112,7 +121,7 @@ export class OpenTelemetryClient implements TelemetryClient {
|
|
|
112
121
|
}
|
|
113
122
|
|
|
114
123
|
public async stop() {
|
|
115
|
-
this.
|
|
124
|
+
this.nodejsMetricsMonitor?.stop();
|
|
116
125
|
|
|
117
126
|
const flushAndShutdown = async (provider?: { forceFlush: () => Promise<void>; shutdown: () => Promise<void> }) => {
|
|
118
127
|
if (!provider) {
|
|
@@ -131,16 +140,31 @@ export class OpenTelemetryClient implements TelemetryClient {
|
|
|
131
140
|
|
|
132
141
|
public static createMeterProvider(
|
|
133
142
|
resource: IResource,
|
|
134
|
-
|
|
143
|
+
exporters: Array<PeriodicExportingMetricReaderOptions>,
|
|
135
144
|
): MeterProvider {
|
|
136
145
|
return new MeterProvider({
|
|
137
146
|
resource,
|
|
138
|
-
readers: options
|
|
139
|
-
? [new PeriodicExportingMetricReader(options as PeriodicExportingMetricReaderOptions)]
|
|
140
|
-
: [],
|
|
147
|
+
readers: exporters.map(options => new PeriodicExportingMetricReader(options)),
|
|
141
148
|
|
|
142
149
|
views: [
|
|
143
150
|
// Every histogram matching the selector (type + unit) gets these custom buckets assigned
|
|
151
|
+
new View({
|
|
152
|
+
instrumentType: InstrumentType.HISTOGRAM,
|
|
153
|
+
instrumentUnit: 'Mmana',
|
|
154
|
+
aggregation: new ExplicitBucketHistogramAggregation(
|
|
155
|
+
[0.1, 0.5, 1, 2, 4, 8, 10, 25, 50, 100, 500, 1000, 5000, 10000],
|
|
156
|
+
true,
|
|
157
|
+
),
|
|
158
|
+
}),
|
|
159
|
+
new View({
|
|
160
|
+
instrumentType: InstrumentType.HISTOGRAM,
|
|
161
|
+
instrumentUnit: 'tx',
|
|
162
|
+
aggregation: new ExplicitBucketHistogramAggregation(
|
|
163
|
+
// TPS
|
|
164
|
+
[0.1 * 36, 0.2 * 36, 0.5 * 36, 1 * 36, 2 * 36, 5 * 36, 10 * 36, 15 * 36].map(Math.ceil),
|
|
165
|
+
true,
|
|
166
|
+
),
|
|
167
|
+
}),
|
|
144
168
|
new View({
|
|
145
169
|
instrumentType: InstrumentType.HISTOGRAM,
|
|
146
170
|
instrumentUnit: 's',
|
|
@@ -257,20 +281,41 @@ export class OpenTelemetryClient implements TelemetryClient {
|
|
|
257
281
|
|
|
258
282
|
tracerProvider.register();
|
|
259
283
|
|
|
260
|
-
const
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
284
|
+
const exporters: PeriodicExportingMetricReaderOptions[] = [];
|
|
285
|
+
if (config.metricsCollectorUrl) {
|
|
286
|
+
exporters.push({
|
|
287
|
+
exporter: new OtelFilterMetricExporter(
|
|
288
|
+
new OTLPMetricExporter({ url: config.metricsCollectorUrl.href }),
|
|
289
|
+
config.otelExcludeMetrics,
|
|
290
|
+
'deny',
|
|
291
|
+
),
|
|
292
|
+
exportTimeoutMillis: config.otelExportTimeoutMs,
|
|
293
|
+
exportIntervalMillis: config.otelCollectIntervalMs,
|
|
294
|
+
});
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
let publicExporter: PublicOtelFilterMetricExporter | undefined;
|
|
298
|
+
if (config.publicMetricsCollectorUrl && !config.publicMetricsOptOut) {
|
|
299
|
+
log.info(`Exporting public metrics: ${config.publicIncludeMetrics}`, {
|
|
300
|
+
publicMetrics: config.publicIncludeMetrics,
|
|
301
|
+
collectorUrl: config.publicMetricsCollectorUrl,
|
|
302
|
+
});
|
|
303
|
+
publicExporter = new PublicOtelFilterMetricExporter(
|
|
304
|
+
config.publicMetricsCollectFrom,
|
|
305
|
+
new OTLPMetricExporter({ url: config.publicMetricsCollectorUrl.href }),
|
|
306
|
+
config.publicIncludeMetrics,
|
|
307
|
+
);
|
|
308
|
+
exporters.push({
|
|
309
|
+
exporter: publicExporter,
|
|
310
|
+
exportTimeoutMillis: config.otelExportTimeoutMs,
|
|
311
|
+
exportIntervalMillis: config.otelCollectIntervalMs,
|
|
312
|
+
});
|
|
313
|
+
}
|
|
270
314
|
|
|
315
|
+
const meterProvider = OpenTelemetryClient.createMeterProvider(resource, exporters);
|
|
271
316
|
const loggerProvider = registerOtelLoggerProvider(resource, config.logsCollectorUrl);
|
|
272
317
|
|
|
273
|
-
return new OpenTelemetryClient(resource, meterProvider, tracerProvider, loggerProvider, log);
|
|
318
|
+
return new OpenTelemetryClient(resource, meterProvider, tracerProvider, loggerProvider, publicExporter, log);
|
|
274
319
|
};
|
|
275
320
|
}
|
|
276
321
|
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type ExportResult, ExportResultCode } from '@opentelemetry/core';
|
|
2
2
|
import type { MetricData, PushMetricExporter, ResourceMetrics } from '@opentelemetry/sdk-metrics';
|
|
3
3
|
|
|
4
|
+
import { AZTEC_NODE_ROLE } from './attributes.js';
|
|
5
|
+
|
|
4
6
|
export class OtelFilterMetricExporter implements PushMetricExporter {
|
|
5
|
-
constructor(
|
|
7
|
+
constructor(
|
|
8
|
+
private readonly exporter: PushMetricExporter,
|
|
9
|
+
private metricPrefix: string[],
|
|
10
|
+
private readonly filter: 'allow' | 'deny' = 'deny',
|
|
11
|
+
) {
|
|
6
12
|
if (exporter.selectAggregation) {
|
|
7
13
|
(this as PushMetricExporter).selectAggregation = exporter.selectAggregation.bind(exporter);
|
|
8
14
|
}
|
|
@@ -23,9 +29,17 @@ export class OtelFilterMetricExporter implements PushMetricExporter {
|
|
|
23
29
|
}
|
|
24
30
|
|
|
25
31
|
private filterMetrics(metrics: MetricData[]): MetricData[] {
|
|
26
|
-
return metrics.filter(
|
|
27
|
-
|
|
28
|
-
|
|
32
|
+
return metrics.filter(metric => {
|
|
33
|
+
const matched = this.metricPrefix.some(prefix => metric.descriptor.name.startsWith(prefix));
|
|
34
|
+
|
|
35
|
+
if (this.filter === 'deny') {
|
|
36
|
+
return !matched;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (this.filter === 'allow') {
|
|
40
|
+
return matched;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
29
43
|
}
|
|
30
44
|
|
|
31
45
|
public forceFlush(): Promise<void> {
|
|
@@ -35,4 +49,32 @@ export class OtelFilterMetricExporter implements PushMetricExporter {
|
|
|
35
49
|
public shutdown(): Promise<void> {
|
|
36
50
|
return this.exporter.shutdown();
|
|
37
51
|
}
|
|
52
|
+
|
|
53
|
+
public setMetricPrefixes(metrics: string[]) {
|
|
54
|
+
this.metricPrefix = metrics;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class PublicOtelFilterMetricExporter extends OtelFilterMetricExporter {
|
|
59
|
+
constructor(
|
|
60
|
+
private allowedRoles: string[],
|
|
61
|
+
exporter: PushMetricExporter,
|
|
62
|
+
metricPrefix: string[],
|
|
63
|
+
) {
|
|
64
|
+
super(exporter, metricPrefix, 'allow');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
public override export(metrics: ResourceMetrics, resultCallback: (result: ExportResult) => void): void {
|
|
68
|
+
const role = String(metrics.resource.attributes[AZTEC_NODE_ROLE] ?? '');
|
|
69
|
+
if (!role || !this.allowedRoles.includes(role)) {
|
|
70
|
+
// noop
|
|
71
|
+
return resultCallback({ code: ExportResultCode.SUCCESS });
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
super.export(metrics, resultCallback);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
public setAllowedRoles(roles: string[]) {
|
|
78
|
+
this.allowedRoles = roles;
|
|
79
|
+
}
|
|
38
80
|
}
|
package/src/otel_resource.ts
CHANGED
|
@@ -1,16 +1,54 @@
|
|
|
1
1
|
import {
|
|
2
|
+
type DetectorSync,
|
|
2
3
|
type IResource,
|
|
4
|
+
Resource,
|
|
3
5
|
detectResourcesSync,
|
|
4
6
|
envDetectorSync,
|
|
5
7
|
osDetectorSync,
|
|
6
|
-
processDetectorSync,
|
|
7
8
|
serviceInstanceIdDetectorSync,
|
|
8
9
|
} from '@opentelemetry/resources';
|
|
10
|
+
import { SEMRESATTRS_SERVICE_NAME } from '@opentelemetry/semantic-conventions';
|
|
11
|
+
|
|
12
|
+
import { AZTEC_NODE_ROLE, AZTEC_REGISTRY_ADDRESS, AZTEC_ROLLUP_ADDRESS, AZTEC_ROLLUP_VERSION } from './attributes.js';
|
|
9
13
|
|
|
10
14
|
export function getOtelResource(): IResource {
|
|
11
15
|
const resource = detectResourcesSync({
|
|
12
|
-
detectors: [
|
|
16
|
+
detectors: [
|
|
17
|
+
aztecNetworkDetectorSync,
|
|
18
|
+
osDetectorSync,
|
|
19
|
+
envDetectorSync,
|
|
20
|
+
// this detector is disabled because:
|
|
21
|
+
// 1. our software runs in a docker container, a lot of the attributes detected would be identical across different machines (e.g. all run node v22, executing the same script, running PID 1, etc)
|
|
22
|
+
// 2. it catures process.argv which could contain sensitive values in plain text (e.g. validator private keys)
|
|
23
|
+
// processDetectorSync,
|
|
24
|
+
serviceInstanceIdDetectorSync,
|
|
25
|
+
],
|
|
13
26
|
});
|
|
14
27
|
|
|
15
28
|
return resource;
|
|
16
29
|
}
|
|
30
|
+
|
|
31
|
+
const aztecNetworkDetectorSync: DetectorSync = {
|
|
32
|
+
detect(): IResource {
|
|
33
|
+
let role: string | undefined;
|
|
34
|
+
if (process.argv.includes('--sequencer')) {
|
|
35
|
+
role = 'sequencer';
|
|
36
|
+
} else if (process.argv.includes('--prover-node')) {
|
|
37
|
+
role = 'prover-node';
|
|
38
|
+
} else if (process.argv.includes('--node')) {
|
|
39
|
+
role = 'node';
|
|
40
|
+
} else if (process.argv.includes('--p2p-bootstrap')) {
|
|
41
|
+
role = 'bootnode';
|
|
42
|
+
}
|
|
43
|
+
const aztecAttributes = {
|
|
44
|
+
// this gets overwritten by OTEL_RESOURCE_ATTRIBUTES (if set)
|
|
45
|
+
[SEMRESATTRS_SERVICE_NAME]: role ? `aztec-${role}` : undefined,
|
|
46
|
+
[AZTEC_NODE_ROLE]: role,
|
|
47
|
+
[AZTEC_ROLLUP_VERSION]: process.env.ROLLUP_VERSION ?? 'canonical',
|
|
48
|
+
[AZTEC_ROLLUP_ADDRESS]: process.env.ROLLUP_CONTRACT_ADDRESS,
|
|
49
|
+
[AZTEC_REGISTRY_ADDRESS]: process.env.REGISTRY_CONTRACT_ADDRESS,
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
return new Resource(aztecAttributes);
|
|
53
|
+
},
|
|
54
|
+
};
|