Skip to content

Commit

Permalink
add stability featuregate
Browse files Browse the repository at this point in the history
  • Loading branch information
wildum committed Feb 28, 2024
1 parent 042b9c7 commit 9c649bc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions component/loki/rules/kubernetes/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

"github.com/go-kit/log"
"github.com/grafana/agent/component"
"github.com/grafana/agent/internal/featuregate"
"github.com/grafana/agent/pkg/flow/logging/level"
lokiClient "github.com/grafana/agent/pkg/loki/client"
"github.com/grafana/dskit/backoff"
Expand All @@ -30,9 +31,10 @@ import (

func init() {
component.Register(component.Registration{
Name: "loki.rules.kubernetes",
Args: Arguments{},
Exports: nil,
Name: "loki.rules.kubernetes",
Stability: featuregate.StabilityExperimental,
Args: Arguments{},
Exports: nil,
Build: func(o component.Options, c component.Arguments) (component.Component, error) {
return NewComponent(o, c.(Arguments))
},
Expand Down

0 comments on commit 9c649bc

Please sign in to comment.