Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Fix table-manager metric name #44

Merged
merged 1 commit into from
Apr 20, 2020
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
4 changes: 2 additions & 2 deletions cortex-mixin/alerts.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@
// We also have a 3h grace-period for creation of tables which means the we can fail for 3h before it's an outage.
alert: 'CortexTableSyncFailure',
expr: |||
100 * rate(cortex_dynamo_sync_tables_seconds_count{status_code!~"2.."}[15m])
100 * rate(cortex_table_manager_sync_duration_seconds_count{status_code!~"2.."}[15m])
/
rate(cortex_dynamo_sync_tables_seconds_count[15m])
rate(cortex_table_manager_sync_duration_seconds_count[15m])
> 10
|||,
'for': '30m',
Expand Down