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.
Add domain state metricset to kvm module (elastic#17673)
This allows tracking KVM transitions of state and consolidate resource usage with machine state. Signed-off-by: Tom Doherty <[email protected]>
- Loading branch information
1 parent
0df53d3
commit ed7fa2a
Showing
17 changed files
with
365 additions
and
6 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,24 @@ | ||
//// | ||
This file is generated! See scripts/mage/docs_collector.go | ||
//// | ||
|
||
[[metricbeat-metricset-kvm-status]] | ||
=== kvm status metricset | ||
|
||
beta[] | ||
|
||
include::../../../module/kvm/status/_meta/docs.asciidoc[] | ||
|
||
This is a default metricset. If the host module is unconfigured, this metricset is enabled by default. | ||
|
||
==== Fields | ||
|
||
For a description of each field in the metricset, see the | ||
<<exported-fields-kvm,exported fields>> section. | ||
|
||
Here is an example document generated by this metricset: | ||
|
||
[source,json] | ||
---- | ||
include::../../../module/kvm/status/_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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
- module: kvm | ||
#metricsets: | ||
# - dommemstat | ||
# - status | ||
period: 10s | ||
hosts: ["unix:///var/run/libvirt/libvirt-sock"] |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"@timestamp": "2017-10-12T08:05:34.853Z", | ||
"agent": { | ||
"hostname": "host.example.com", | ||
"name": "host.example.com" | ||
}, | ||
"event":{ | ||
"dataset":"kvm.status", | ||
"module":"kvm", | ||
"duration":4012216 | ||
}, | ||
"metricset":{ | ||
"name":"status" | ||
}, | ||
"service":{ | ||
"address":"unix:///var/run/libvirt/libvirt-sock", | ||
"type":"kvm" | ||
}, | ||
"kvm":{ | ||
"status":{ | ||
"stat":{ | ||
"state":"running" | ||
}, | ||
"id":1, | ||
"name":"generic-2" | ||
} | ||
} | ||
} |
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 @@ | ||
This is the status metricset of the module kvm. |
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,23 @@ | ||
- name: status | ||
type: group | ||
description: > | ||
status | ||
release: beta | ||
fields: | ||
- name: stat | ||
type: group | ||
description: > | ||
Memory stat | ||
fields: | ||
- name: state | ||
type: keyword | ||
description: > | ||
domain state | ||
- name: id | ||
type: long | ||
description: > | ||
Domain id | ||
- name: name | ||
type: keyword | ||
description: > | ||
Domain name |
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,161 @@ | ||
// 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 status | ||
|
||
import ( | ||
"net" | ||
"net/url" | ||
"time" | ||
|
||
"github.com/pkg/errors" | ||
|
||
"github.com/digitalocean/go-libvirt" | ||
"github.com/digitalocean/go-libvirt/libvirttest" | ||
|
||
"github.com/elastic/beats/v7/libbeat/common" | ||
"github.com/elastic/beats/v7/libbeat/common/cfgwarn" | ||
"github.com/elastic/beats/v7/metricbeat/mb" | ||
) | ||
|
||
// 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("kvm", "status", New, | ||
mb.DefaultMetricSet(), | ||
) | ||
} | ||
|
||
// 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 | ||
Timeout time.Duration | ||
HostURL *url.URL | ||
} | ||
|
||
// 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 kvm status metricset is beta.") | ||
u, err := url.Parse(base.HostData().URI) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &MetricSet{ | ||
BaseMetricSet: base, | ||
Timeout: base.Module().Config().Timeout, | ||
HostURL: u, | ||
}, 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 { | ||
var ( | ||
c net.Conn | ||
err error | ||
) | ||
|
||
u := m.HostURL | ||
|
||
if u.Scheme == "test" { | ||
// when running tests, a mock Libvirt server is used | ||
c = libvirttest.New() | ||
} else { | ||
address := u.Host | ||
if u.Host == "" { | ||
address = u.Path | ||
} | ||
|
||
c, err = net.DialTimeout(u.Scheme, address, m.Timeout) | ||
if err != nil { | ||
return errors.Wrapf(err, "cannot connect to %v", u) | ||
} | ||
} | ||
|
||
defer c.Close() | ||
|
||
l := libvirt.New(c) | ||
if err = l.Connect(); err != nil { | ||
return errors.Wrap(err, "error connecting to libvirtd") | ||
} | ||
defer func() { | ||
if err = l.Disconnect(); err != nil { | ||
msg := errors.Wrap(err, "failed to disconnect") | ||
report.Error(msg) | ||
m.Logger().Error(msg) | ||
} | ||
}() | ||
|
||
domains, err := l.Domains() | ||
if err != nil { | ||
return errors.Wrap(err, "error listing domains") | ||
} | ||
|
||
for _, d := range domains { | ||
state, err := l.DomainState(d.Name) | ||
if err != nil { | ||
continue | ||
} | ||
reported := report.Event(mb.Event{ | ||
ModuleFields: common.MapStr{ | ||
"id": d.ID, | ||
"name": d.Name, | ||
}, | ||
MetricSetFields: common.MapStr{ | ||
"stat": common.MapStr{ | ||
"state": getDomainStateName(state), | ||
}, | ||
}, | ||
}) | ||
if !reported { | ||
return nil | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func getDomainStateName(tag libvirt.DomainState) string { | ||
switch tag { | ||
case 0: | ||
return "no state" | ||
case 1: | ||
return "running" | ||
case 2: | ||
return "blocked" | ||
case 3: | ||
return "paused" | ||
case 4: | ||
return "shutdown" | ||
case 5: | ||
return "shutoff" | ||
case 6: | ||
return "crashed" | ||
case 7: | ||
return "suspended" | ||
default: | ||
return "unidentified" | ||
} | ||
} |
Oops, something went wrong.