Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ingest Manager] Make Agent beta and Constraints experimental #19586

Merged
merged 2 commits into from
Jul 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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