forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apache status: adjust field collection in fleet mode (elastic#22821)
* apache status: adjust collected fields in fleet mode * Fix: mage check * Update CHANGELOG * nit-pick * Address PR comments (cherry picked from commit 0c1e54c)
- Loading branch information
Showing
5 changed files
with
113 additions
and
33 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package fleetmode | ||
|
||
import ( | ||
"flag" | ||
|
||
"github.com/elastic/beats/v7/libbeat/common" | ||
) | ||
|
||
// Enabled checks to see if filebeat/metricbeat is running under Agent | ||
// The management setting is stored in the main Beat runtime object, but we can't see that from a module | ||
// So instead we check the CLI flags, since Agent starts filebeat/metricbeat with "-E", "management.mode=x-pack-fleet", "-E", "management.enabled=true" | ||
func Enabled() bool { | ||
type management struct { | ||
Mode string `config:"management.mode"` | ||
Enabled bool `config:"management.enabled"` | ||
} | ||
var managementSettings management | ||
|
||
cfgFlag := flag.Lookup("E") | ||
if cfgFlag == nil { | ||
return false | ||
} | ||
|
||
cfgObject, _ := cfgFlag.Value.(*common.SettingsFlag) | ||
cliCfg := cfgObject.Config() | ||
|
||
err := cliCfg.Unpack(&managementSettings) | ||
if err != nil { | ||
return false | ||
} | ||
|
||
if managementSettings.Enabled == true && managementSettings.Mode == "x-pack-fleet" { | ||
return true | ||
} | ||
return false | ||
} |
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