-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Receive and use package.version from Elastic Agent (#37553)
In managed mode (running under Agent), Beats now receive agent information alongside connection details. This includes the agent's package version, which Beats will report instead of their own. That means the version added to event will be the agent's package version. The beats test framework (libbeat/tests/integration/framework.go) now utilizes exec.Cmd instead of os.StartProcess to initiate the test beat. Furthermore, the StdinPipe is now exposed instead of binding os.Stdin to the process stdin. A new utility, `testing/certutil/certutil`, has been created to provide root CA and child certificates for use in tests.
- Loading branch information
Showing
16 changed files
with
613 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12494,11 +12494,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-a | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/elastic-agent-client/v7 | ||
Version: v7.6.0 | ||
Version: v7.8.0 | ||
Licence type (autodetected): Elastic | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-client/v7@v7.6.0/LICENSE.txt: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-client/v7@v7.8.0/LICENSE.txt: | ||
|
||
ELASTIC LICENSE AGREEMENT | ||
|
||
|
@@ -25546,11 +25546,11 @@ Contents of probable licence file $GOMODCACHE/google.golang.org/[email protected]/LIC | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : google.golang.org/protobuf | ||
Version: v1.31.0 | ||
Version: v1.32.0 | ||
Licence type (autodetected): BSD-3-Clause | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/google.golang.org/protobuf@v1.31.0/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/google.golang.org/protobuf@v1.32.0/LICENSE: | ||
|
||
Copyright (c) 2018 The Go Authors. All rights reserved. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.