Skip to content

Commit

Permalink
Add Iceberg local file IO metrics (#19787)
Browse files Browse the repository at this point in the history
* Added metrics for Iceberg file IO operations on Hadoop and renamed existing metrics to distinguish them from S3 metrics
  • Loading branch information
kodjo-anipah committed Jul 10, 2024
1 parent 3445b5d commit c4e4015
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions graylog2-server/src/main/resources/prometheus-exporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1285,12 +1285,18 @@ metric_mappings:
wildcard_extract_labels:
- "delete_object"

- metric_name: "data_warehouse_iceberg_file_io_read"
match_pattern: "org.graylog.iceberg.read.*"
- metric_name: "data_warehouse_iceberg_file_io_s3_read"
match_pattern: "org.graylog.iceberg.file.io.s3.read.*"
wildcard_extract_labels:
- "read"

- metric_name: "data_warehouse_iceberg_file_io_write"
match_pattern: "org.graylog.iceberg.write.*"
- metric_name: "data_warehouse_iceberg_file_io_s3_write"
match_pattern: "org.graylog.iceberg.file.io.s3.write.*"
wildcard_extract_labels:
- "write"

- metric_name: "data_warehouse_iceberg_file_io_local_write"
match_pattern: "org.graylog.iceberg.file.io.local.write"

- metric_name: "data_warehouse_iceberg_file_io_local_read"
match_pattern: "org.graylog.iceberg.file.io.local.read"

0 comments on commit c4e4015

Please sign in to comment.