We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e14a60 commit b78d22bCopy full SHA for b78d22b
modules/aztec/default.nix
@@ -18,6 +18,11 @@
18
type = types.listOf types.str;
19
description = "Ethereum hosts for the sequencer";
20
};
21
+ metrics-collector-endpoint = mkOption {
22
+ type = types.str;
23
+ default = "";
24
+ description = "OpenTelemetry OTLP metrics endpoint";
25
+ };
26
l1ConsensusHostUrls = mkOption {
27
28
description = "L1 consensus host URLs for the sequencer";
@@ -64,7 +69,8 @@
64
69
--sequencer.validatorPrivateKeys "$(cat ${cfg.validatorPrivateKeys})" \
65
70
--sequencer.coinbase ${cfg.coinbase} \
66
71
--p2p.p2pIp ${cfg.p2pIp} \
67
- --p2p.p2pPort ${toString cfg.p2pPort}
72
+ --p2p.p2pPort ${toString cfg.p2pPort} \
73
+ --tel.metricsCollectorUrl ${cfg.metrics-collector-endpoint}
68
74
'';
75
76
0 commit comments