Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Monitoring.md to include metrics.port #735

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion doc/Monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,14 @@ record_insert_seq:
```select event_time, database, table, rows, duration_ms,size_in_bytes from system.part_log where table='table' and event_type='NewPart' and event_time > now () - interval 30 minute and database='db' ;```

## Grafana Dashboard
JMX metrics of sink connector are exposed through the port
JMX metrics of sink connector are exposed through the port.(Default: 8084)
If you need to override the port, add `metrics.port` in config.yml

```
metrics.enable: "true"
metrics.port: 8085
```


The JMX_exporter docker image scrapes the JMX metrics from the sink connector
The metrics can be read through the following URL
Expand Down
Loading