Skip to content

Commit

Permalink
component: graduate subset of components to stable
Browse files Browse the repository at this point in the history
We identified that a subset of components are ready to be marked stable.
This commit moves all of those components to stable, and in one case,
moves an experimental component to beta.
  • Loading branch information
rfratto committed Mar 13, 2024
1 parent 15ce0e8 commit de8b35e
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion internal/component/discovery/kubelet/kubelet.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var (
func init() {
component.Register(component.Registration{
Name: "discovery.kubelet",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: discovery.Exports{},
Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/loki/echo/echo.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "loki.echo",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: Exports{},

Expand Down
2 changes: 1 addition & 1 deletion internal/component/loki/rules/kubernetes/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "loki.rules.kubernetes",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: nil,
Build: func(o component.Options, c component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/loki/source/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "loki.source.kubernetes",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/loki/source/podlogs/podlogs.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "loki.source.podlogs",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/mimir/rules/kubernetes/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "mimir.rules.kubernetes",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: nil,
Build: func(o component.Options, c component.Arguments) (component.Component, error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.exporter.loadbalancing",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: otelcol.ConsumerExports{},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.extension.jaeger_remote_sampling",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.processor.probabilistic_sampler",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: otelcol.ConsumerExports{},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.processor.resourcedetection",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: otelcol.ConsumerExports{},

Expand Down
2 changes: 1 addition & 1 deletion internal/component/otelcol/processor/span/span.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.processor.span",
Stability: featuregate.StabilityExperimental,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: otelcol.ConsumerExports{},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.processor.tail_sampling",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: otelcol.ConsumerExports{},

Expand Down
2 changes: 1 addition & 1 deletion internal/component/otelcol/receiver/loki/loki.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.receiver.loki",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: Exports{},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "otelcol.receiver.prometheus",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},
Exports: Exports{},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "prometheus.operator.podmonitors",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: operator.Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/prometheus/operator/probes/probes.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "prometheus.operator.probes",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: operator.Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "prometheus.operator.servicemonitors",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: operator.Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/component/pyroscope/ebpf/ebpf_placeholder.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
func init() {
component.Register(component.Registration{
Name: "pyroscope.ebpf",
Stability: featuregate.StabilityBeta,
Stability: featuregate.StabilityStable,
Args: Arguments{},

Build: func(opts component.Options, args component.Arguments) (component.Component, error) {
Expand Down

0 comments on commit de8b35e

Please sign in to comment.