-
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.
Browse files
Browse the repository at this point in the history
* Fix generated metricbeat so create-metricset works. * Fix mage target add target to x-pack/metricbeat. (cherry picked from commit 77f0d20)
- Loading branch information
1 parent
6858550
commit dfb87a7
Showing
6 changed files
with
67 additions
and
28 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
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,54 @@ | ||
// 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 metricset | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
|
||
"github.com/magefile/mage/sh" | ||
|
||
devtools "github.com/elastic/beats/v7/dev-tools/mage" | ||
) | ||
|
||
// CreateMetricset creates a new metricset. | ||
// | ||
// Required ENV variables: | ||
// * MODULE: Name of the module | ||
// * METRICSET: Name of the metricset | ||
func CreateMetricset() error { | ||
ve, err := devtools.PythonVirtualenv() | ||
if err != nil { | ||
return err | ||
} | ||
python, err := devtools.LookVirtualenvPath(ve, "python") | ||
if err != nil { | ||
return err | ||
} | ||
beatsDir, err := devtools.ElasticBeatsDir() | ||
if err != nil { | ||
return err | ||
} | ||
scriptPath := filepath.Join(beatsDir, "metricbeat", "scripts", "create_metricset.py") | ||
|
||
_, err = sh.Exec( | ||
map[string]string{}, os.Stdout, os.Stderr, python, scriptPath, | ||
"--path", devtools.CWD(), "--module", os.Getenv("MODULE"), "--metricset", os.Getenv("METRICSET"), | ||
) | ||
return err | ||
} |
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
ES_BEATS ?= ../.. | ||
|
||
include $(ES_BEATS)/dev-tools/make/mage.mk | ||
|
||
# Creates a new metricset. Requires the params MODULE and METRICSET | ||
.PHONY: create-metricset | ||
create-metricset: | ||
mage createMetricset |
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