Skip to content

Commit

Permalink
internal/featuregate: explain why Private preview is not included
Browse files Browse the repository at this point in the history
  • Loading branch information
rfratto committed Mar 27, 2024
1 parent 2da8b59 commit 1be0c8a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/featuregate/featuregate.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ import (
type Stability int

const (
// NOTE(rfratto): Grafana has a life cycle stage called "Private Preview"
// after experimental but before Public Preview. This stage doesn't make
// sense for Alloy, as it's not possible for a feature to be only available
// upon request.
//
// Based on this, we only use Experimental, Public preview, and Generally available.

// StabilityUndefined is the default value for Stability, which indicates an error and should never be used.
StabilityUndefined Stability = iota
// StabilityExperimental is used to designate features in the Experimental
Expand Down

0 comments on commit 1be0c8a

Please sign in to comment.