We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10b6f3a commit 40a725aCopy full SHA for 40a725a
CHANGELOG.md
@@ -12,6 +12,8 @@ v1.8.3
12
13
### Bugfixes
14
15
+- Fix `mimir.rules.kubernetes` panic on non-leader debug info retrieval (@TheoBrigitte)
16
+
17
- Fix `loki.source.file` race condition that often lead to panic when using `decompression`. (@kalleep)
18
19
v1.8.2
internal/component/mimir/rules/kubernetes/debug.go
@@ -23,6 +23,10 @@ type DebugMimirNamespace struct {
23
func (c *Component) DebugInfo() interface{} {
24
var output DebugInfo
25
26
+ if c.eventProcessor == nil {
27
+ return output
28
+ }
29
30
currentState := c.eventProcessor.getMimirState()
31
for namespace := range currentState {
32
if !isManagedMimirNamespace(c.args.MimirNameSpacePrefix, namespace) {
0 commit comments