Skip to content

Commit

Permalink
Added metrics for Iceberg file IO operations on Hadoop and renamed ex…
Browse files Browse the repository at this point in the history
…isting metrics to distinguish them from S3 metrics
  • Loading branch information
kodjo-anipah committed Jul 1, 2024
1 parent 797fa4a commit 257107c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 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,20 @@ 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_hadoop_write"
match_pattern: "org.graylog.iceberg.file.io.hadoop.write"


- metric_name: "data_warehouse_iceberg_file_io_hadoop_read"
match_pattern: "org.graylog.iceberg.file.io.hadoop.read"

0 comments on commit 257107c

Please sign in to comment.