Skip to content

Commit ccb168d

Browse files
authored
Document metrics publish CLI options (#347)
1 parent e9bf11f commit ccb168d

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

docs/Reference/CLI/CLI-Syntax.md

+57
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,63 @@ Host on which Prometheus accesses Teku metrics. The default is `127.0.0.1`.
796796
Specifies the port (TCP) on which [Prometheus](https://prometheus.io/) accesses Teku metrics.
797797
The default is `8008`.
798798

799+
### metrics-publish-endpoint
800+
801+
=== "Syntax"
802+
803+
```bash
804+
--metrics-publish-endpoint=<URL>
805+
```
806+
807+
=== "Example"
808+
809+
```bash
810+
--metrics-publish-endpoint=https://beaconcha.in/api/v1/client/metrics?apikey={apikey}
811+
```
812+
813+
=== "Environment variable"
814+
815+
```bash
816+
TEKU_METRICS_PUBLISH_ENDPOINT=https://beaconcha.in/api/v1/client/metrics?apikey={apikey}
817+
```
818+
819+
=== "Configuration file"
820+
821+
```bash
822+
metrics-publish-endpoint: "https://beaconcha.in/api/v1/client/metrics?apikey={apikey}"
823+
```
824+
825+
Endpoint URL of an external service such as [beaconcha.in](https://beaconcha.in/) to which Teku publishes metrics for node monitoring.
826+
827+
### metrics-publish-interval
828+
829+
=== "Syntax"
830+
831+
```bash
832+
--metrics-publish-interval=<INTEGER>
833+
```
834+
835+
=== "Example"
836+
837+
```bash
838+
--metrics-publish-interval=60
839+
```
840+
841+
=== "Environment variable"
842+
843+
```bash
844+
TEKU_METRICS_PUBLISH_INTERVAL=60
845+
```
846+
847+
=== "Configuration file"
848+
849+
```bash
850+
metrics-publish-interval: "60"
851+
```
852+
853+
Interval between metric publications to the external service defined in [metrics-publish-endpoint](#metrics-publish-endpoint), measured in seconds.
854+
The default is `60`.
855+
799856
### network
800857

801858
=== "Syntax"

0 commit comments

Comments
 (0)