File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1818 type = types . listOf types . str ;
1919 description = "Ethereum hosts for the sequencer" ;
2020 } ;
21+ metrics-collector-endpoint = mkOption {
22+ type = types . str ;
23+ default = "http://127.0.0.1:4318/v1/metrics" ;
24+ description = "OpenTelemetry OTLP metrics endpoint" ;
25+ } ;
2126 l1ConsensusHostUrls = mkOption {
2227 type = types . listOf types . str ;
2328 description = "L1 consensus host URLs for the sequencer" ;
6469 --sequencer.validatorPrivateKeys "$(cat ${ cfg . validatorPrivateKeys } )" \
6570 --sequencer.coinbase ${ cfg . coinbase } \
6671 --p2p.p2pIp ${ cfg . p2pIp } \
67- --p2p.p2pPort ${ toString cfg . p2pPort }
72+ --p2p.p2pPort ${ toString cfg . p2pPort } \
73+ --tel.metricsCollectorUrl ${ cfg . metrics-collector-endpoint }
6874 '' ;
6975 } ;
7076 } ;
You can’t perform that action at this time.
0 commit comments