-
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.
[metricbeat] Add system/entropy metricset (#12450)
* add system/entropy metricset
- Loading branch information
1 parent
016a0b1
commit 260f095
Showing
17 changed files
with
286 additions
and
2 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,21 @@ | ||
//// | ||
This file is generated! See scripts/docs_collector.py | ||
//// | ||
|
||
[[metricbeat-metricset-system-entropy]] | ||
=== System entropy metricset | ||
|
||
include::../../../module/system/entropy/_meta/docs.asciidoc[] | ||
|
||
|
||
==== Fields | ||
|
||
For a description of each field in the metricset, see the | ||
<<exported-fields-system,exported fields>> section. | ||
|
||
Here is an example document generated by this metricset: | ||
|
||
[source,json] | ||
---- | ||
include::../../../module/system/entropy/_meta/data.json[] | ||
---- |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
- process | ||
- process_summary | ||
- socket_summary | ||
#- entropy | ||
#- core | ||
#- diskio | ||
#- socket | ||
|
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,20 @@ | ||
{ | ||
"@timestamp": "2017-10-12T08:05:34.853Z", | ||
"event": { | ||
"dataset": "system.entropy", | ||
"duration": 115000, | ||
"module": "system" | ||
}, | ||
"metricset": { | ||
"name": "entropy" | ||
}, | ||
"service": { | ||
"type": "system" | ||
}, | ||
"system": { | ||
"entropy": { | ||
"available_bits": 2801, | ||
"pct": 0.683837890625 | ||
} | ||
} | ||
} |
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,5 @@ | ||
This is the entropy metricset of the module system. It collects the amount of available entropy in bits. On kernel versions greater than 2.6, entropy will be out of a total pool size of 4096. | ||
|
||
This Metricset is available on: | ||
|
||
- linux |
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,15 @@ | ||
- name: entropy | ||
type: group | ||
description: > | ||
Available system entropy | ||
release: ga | ||
fields: | ||
- name: available_bits | ||
type: long | ||
description: > | ||
The available bits of entropy | ||
- name: pct | ||
type: scaled_float | ||
format: percent | ||
description: > | ||
The percentage of available entropy, relative to the pool size of 4096 |
1 change: 1 addition & 0 deletions
1
metricbeat/module/system/entropy/_meta/testdata/proc/sys/kernel/random/entropy_avail
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 @@ | ||
2801 |
1 change: 1 addition & 0 deletions
1
metricbeat/module/system/entropy/_meta/testdata/proc/sys/kernel/random/poolsize
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 @@ | ||
4096 |
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,18 @@ | ||
// 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 entropy |
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,106 @@ | ||
// 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. | ||
|
||
// +build linux | ||
|
||
package entropy | ||
|
||
import ( | ||
"io/ioutil" | ||
"path" | ||
"strconv" | ||
"strings" | ||
|
||
"github.com/pkg/errors" | ||
|
||
"github.com/elastic/beats/libbeat/common" | ||
"github.com/elastic/beats/libbeat/common/cfgwarn" | ||
"github.com/elastic/beats/metricbeat/mb" | ||
"github.com/elastic/beats/metricbeat/module/system" | ||
) | ||
|
||
// init registers the MetricSet with the central registry as soon as the program | ||
// starts. The New function will be called later to instantiate an instance of | ||
// the MetricSet for each host defined in the module's configuration. After the | ||
// MetricSet has been created then Fetch will begin to be called periodically. | ||
func init() { | ||
mb.Registry.MustAddMetricSet("system", "entropy", New) | ||
} | ||
|
||
// MetricSet holds any configuration or state information. It must implement | ||
// the mb.MetricSet interface. And this is best achieved by embedding | ||
// mb.BaseMetricSet because it implements all of the required mb.MetricSet | ||
// interface methods except for Fetch. | ||
type MetricSet struct { | ||
mb.BaseMetricSet | ||
randomPath string | ||
} | ||
|
||
// New creates a new instance of the MetricSet. New is responsible for unpacking | ||
// any MetricSet specific configuration options if there are any. | ||
func New(base mb.BaseMetricSet) (mb.MetricSet, error) { | ||
cfgwarn.Beta("The system entropy metricset is beta.") | ||
|
||
systemModule, ok := base.Module().(*system.Module) | ||
if !ok { | ||
return nil, errors.New("unexpected module type") | ||
} | ||
|
||
totalPath := path.Join(systemModule.HostFS, "/proc/sys/kernel/random") | ||
|
||
return &MetricSet{ | ||
BaseMetricSet: base, | ||
randomPath: totalPath, | ||
}, nil | ||
} | ||
|
||
// Fetch methods implements the data gathering and data conversion to the right | ||
// format. It publishes the event which is then forwarded to the output. In case | ||
// of an error set the Error field of mb.Event or simply call report.Error(). | ||
func (m *MetricSet) Fetch(report mb.ReporterV2) error { | ||
entropy, err := getEntropyData(path.Join(m.randomPath, "entropy_avail")) | ||
if err != nil { | ||
return errors.Wrap(err, "error getting entropy") | ||
} | ||
poolsize, err := getEntropyData(path.Join(m.randomPath, "poolsize")) | ||
if err != nil { | ||
return errors.Wrap(err, "error getting poolsize") | ||
} | ||
report.Event(mb.Event{ | ||
MetricSetFields: common.MapStr{ | ||
"available_bits": entropy, | ||
"pct": float64(entropy) / float64(poolsize), | ||
}, | ||
}) | ||
|
||
return nil | ||
} | ||
|
||
func getEntropyData(path string) (int, error) { | ||
//This will be a number in the range 0 to 4096. | ||
raw, err := ioutil.ReadFile(path) | ||
if err != nil { | ||
return 0, errors.Wrap(err, "error reading from random") | ||
} | ||
|
||
intval, err := strconv.ParseInt(strings.TrimSpace(string(raw)), 10, 64) | ||
if err != nil { | ||
return 0, errors.Wrap(err, "error parsing from random") | ||
} | ||
|
||
return int(intval), nil | ||
} |
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,59 @@ | ||
// 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. | ||
|
||
// +build linux | ||
|
||
package entropy | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
mbtest "github.com/elastic/beats/metricbeat/mb/testing" | ||
"github.com/elastic/beats/metricbeat/module/system" | ||
) | ||
|
||
func TestData(t *testing.T) { | ||
testdata := "./_meta/testdata" | ||
system.HostFS = &testdata | ||
f := mbtest.NewReportingMetricSetV2Error(t, getConfig()) | ||
err := mbtest.WriteEventsReporterV2Error(f, t, ".") | ||
if err != nil { | ||
t.Fatal("write", err) | ||
} | ||
} | ||
|
||
func TestFetch(t *testing.T) { | ||
testdata := "./_meta/testdata" | ||
system.HostFS = &testdata | ||
f := mbtest.NewReportingMetricSetV2Error(t, getConfig()) | ||
events, errs := mbtest.ReportingFetchV2Error(f) | ||
|
||
assert.Empty(t, errs) | ||
if !assert.NotEmpty(t, events) { | ||
t.FailNow() | ||
} | ||
assert.Equal(t, events[0].MetricSetFields["available_bits"], 2801) | ||
} | ||
|
||
func getConfig() map[string]interface{} { | ||
return map[string]interface{}{ | ||
"module": "system", | ||
"metricsets": []string{"entropy"}, | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
- process | ||
- process_summary | ||
- socket_summary | ||
#- entropy | ||
#- core | ||
#- diskio | ||
#- socket | ||
|