Skip to content

Commit

Permalink
feat: Added deterministic Grafana dashboard uids (#1035)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Hipwell <steve.hipwell@gmail.com>
  • Loading branch information
stevehipwell authored Sep 3, 2024
1 parent 4fdb80f commit 871c255
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions charts/fluent-bit-aggregator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

## [UNRELEASED]

### Added

- Added deterministic _Grafana_ dashboard `uid` based on the chart namespace and fullname.

## [v0.15.6] - 2024-08-15

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,7 @@
},
"timezone": "",
"title": "{{ include "fluent-bit-aggregator.fullname" . }}",
"uid": null,
"uid": "{{ sha1sum (printf "%s-%s" .Release.Namespace (include "fluent-bit-aggregator.fullname" .)) }}",
"version": 0,
"weekStart": ""
}
4 changes: 4 additions & 0 deletions charts/fluent-bit-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

## [UNRELEASED]

### Added

- Added deterministic _Grafana_ dashboard `uid` based on the chart namespace and fullname.

## [v0.12.6] - 2024-08-15

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@
},
"timezone": "",
"title": "{{ include "fluent-bit-collector.fullname" . }}",
"uid": null,
"uid": "{{ sha1sum (printf "%s-%s" .Release.Namespace (include "fluent-bit-collector.fullname" .)) }}",
"version": 7,
"weekStart": ""
}
4 changes: 4 additions & 0 deletions charts/fluentd-aggregator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

## [UNRELEASED]

### Added

- Added deterministic _Grafana_ dashboard `uid` based on the chart namespace and fullname.

## [v4.8.2] - 2024-08-29

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2648,7 +2648,7 @@
},
"timezone": "utc",
"title": "{{ include "fluentd-aggregator.fullname" . }}",
"uid": null,
"uid": "{{ sha1sum (printf "%s-%s" .Release.Namespace (include "fluentd-aggregator.fullname" .)) }}",
"version": 4,
"weekStart": ""
}

0 comments on commit 871c255

Please sign in to comment.