Skip to content

Commit

Permalink
[Ingest Manager] Make Agent beta and Constraints experimental (elasti…
Browse files Browse the repository at this point in the history
…c#19586)

* make agent beta

* make constraints experimental
  • Loading branch information
michalpristas authored and melchiormoulin committed Oct 14, 2020
1 parent 303988f commit 0ae3589
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ inputs:
name: epm/nginx
version: 1.7.0
dataset.namespace: prod
# constraints are still Experimental and should not be used in production.
constraints?:
# Contraints look are not final
- os.platform: { in: "windows" }
Expand All @@ -129,6 +130,7 @@ inputs:
name: epm/nginx
version: 1.7.0
dataset.namespace: prod
# constraints are still Experimental and should not be used in production.
constraints?:
# Contraints look are not final
- os.platform: { in: "windows" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var (
)

// ConstraintFilter filters ast based on included constraints.
// constraints are still Experimental and should not be used in production.
func ConstraintFilter(log *logger.Logger, ast *transpiler.AST) error {
// get datasources
inputsNode, found := transpiler.Lookup(ast, inputsKey)
Expand Down
2 changes: 1 addition & 1 deletion x-pack/elastic-agent/pkg/agent/warn/warn.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/elastic/beats/v7/x-pack/elastic-agent/pkg/core/logger"
)

const message = "The Elastic Agent is currently in Experimental and should not be used in production"
const message = "The Elastic Agent is currently in BETA and should not be used in production"

// LogNotGA warns the users in the log that the Elastic Agent is not GA.
func LogNotGA(log *logger.Logger) {
Expand Down

0 comments on commit 0ae3589

Please sign in to comment.