Skip to content
Draft
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Change `JobScrapingFailure` to page owner team and default to atlas if not set.

### Removed

- Remove cluster-autoscaler runbook which does not exist anymore
Expand Down Expand Up @@ -416,6 +420,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Rules unit tests: simplify files organization by removing the `capi` folder. Also fixes a bug in cloud-director tests.
- Rules linting: run against all configured providers.
- Exclude more containers from Rocket's `ManagementClusterContainerIsRestartingTooFrequently` alert.

## [4.62.0] - 2025-05-15

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,18 @@ spec:
expr: |-
# This alert uses the same logic as the `aggregation:giantswarm:jobscrapingfailures` recording rule
(
count(up == 0) by (job, installation, cluster_id, provider, pipeline)
/
count(up) by (job, installation, cluster_id, provider, pipeline)
(
count(up == 0) by (app, job, installation, cluster_id, provider, pipeline)
/
count(up) by (app, job, installation, cluster_id, provider, pipeline)
)
* on(app, cluster_id) group_left(team)
label_replace(app_operator_app_info, "app", "$1", "name", "[^-]+-(.+)")
) >= 1
for: 1d
labels:
area: platform
severity: notify
team: atlas
topic: observability
cancel_if_outside_working_hours: "true"
- alert: CriticalJobScrapingFailure
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about the Critical one underneath? Do we still need it as a séparate alert?

Expand Down