Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.x](backport #40766) [Metricbeat][vSphere] New metrics support and minor changes to existing metricsets #40807

Merged
merged 5 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Add new metricset resourcepool for the vSphere module. {pull}40456[40456]
- Add metrics for the vSphere Virtualmachine metricset. {pull}40485[40485]
- Log the total time taken for GCP `ListTimeSeries` and `AggregatedList` requests {pull}40661[40661]
- Add new metrics fot datastore and minor changes to overall vSphere metrics {pull}40766[40766]
- Add new metrics for the vSphere Host metricset. {pull}40429[40429]
- Add new metrics for the vSphere Datastore metricset. {pull}40441[40441]
- Add new metricset cluster for the vSphere module. {pull}40536[40536]
Expand Down
66 changes: 36 additions & 30 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -67175,76 +67175,92 @@ format: percent

--

*`vsphere.datastore.fstype`*::
*`vsphere.datastore.disk.capacity.bytes`*::
+
--
Filesystem type.
Configured size of the datastore.


type: keyword
type: long

format: bytes

--

*`vsphere.datastore.host.count`*::
*`vsphere.datastore.disk.capacity.usage.bytes`*::
+
--
Number of hosts.
The amount of storage capacity currently being consumed by datastore.


type: long

format: bytes

--

*`vsphere.datastore.host.names`*::
*`vsphere.datastore.disk.provisioned.bytes`*::
+
--
List of all the host names.
Amount of storage set aside for use by a datastore.


type: long

format: bytes

--

*`vsphere.datastore.fstype`*::
+
--
Filesystem type.


type: keyword

--

*`vsphere.datastore.iops`*::
*`vsphere.datastore.host.count`*::
+
--
Storage I/O Control aggregated Input/Output Operations Per Second.
Number of hosts.


type: long

--

*`vsphere.datastore.name`*::
*`vsphere.datastore.host.names`*::
+
--
Datastore name.
List of all the host names.


type: keyword

--

*`vsphere.datastore.read.bytes`*::
*`vsphere.datastore.name`*::
+
--
Rate of reading data from the datastore.

Datastore name.

type: long

format: bytes
type: keyword

--

*`vsphere.datastore.read.latency.total.ms`*::
*`vsphere.datastore.read.bytes`*::
+
--
Average amount of time for a read operation from the datastore in milliseconds.
Rate of reading data from the datastore.


type: long

format: bytes

--

*`vsphere.datastore.status`*::
Expand Down Expand Up @@ -67289,16 +67305,6 @@ format: bytes

--

*`vsphere.datastore.write.latency.total.ms`*::
+
--
Average amount of time for a write operation from the datastore in milliseconds.


type: long

--

[float]
=== datastorecluster

Expand Down Expand Up @@ -68281,10 +68287,10 @@ type: long
--


*`vsphere.virtualmachine.snapshot.info`*::
*`vsphere.virtualmachine.snapshot.info.*`*::
+
--
Deatils of the snapshots of this virtualmachine.
Details of the snapshots of this virtualmachine.

type: object

Expand Down
56 changes: 36 additions & 20 deletions metricbeat/module/vsphere/datastore/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,55 @@
"period": 10000
},
"service": {
"address": "127.0.0.1:55632",
"address": "127.0.0.1:33365",
"type": "vsphere"
},
"vsphere": {
"datastore": {
"capacity": {
"free": {
"bytes": 10973641441280
},
"total": {
"bytes": 10995116277760
},
"used": {
"bytes": 21474836480,
"pct": 0.001953125
}
},
"fstype": "OTHER",
"host": {
"count": 1,
"names": [
"localhost_localdomain"
"DC3_H0"
]
},
"name": "LocalDS_0",
"status": "green",
"vm": {
"count": 2,
"count": 6,
"names": [
"ha-host_VM0",
"ha-host_VM1"
"DC3_H0_VM0"
]
}
},
"read": {
"bytes": 0
},
"write": {
"bytes": 337000
},
"disk": {
"capacity": {
"usage": {
"bytes": 520505786368
},
"bytes": 1610344300544
},
"provisioned": {
"bytes": 520505786368
}
},
"capacity": {
"free": {
"bytes": 37120094208
},
"total": {
"bytes": 74686664704
},
"used": {
"bytes": 37566570496,
"pct": 0.502988996026061
}
},
"fstype": "local",
"name": "LocalDS_0"
}
}
}
27 changes: 15 additions & 12 deletions metricbeat/module/vsphere/datastore/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
description: >
Percentage of datastore capacity used.
format: percent
- name: disk.capacity.bytes
type: long
description: >
Configured size of the datastore.
format: bytes
- name: disk.capacity.usage.bytes
type: long
description: >
The amount of storage capacity currently being consumed by datastore.
format: bytes
- name: disk.provisioned.bytes
type: long
description: >
Amount of storage set aside for use by a datastore.
format: bytes
- name: fstype
type: keyword
description: >
Expand All @@ -36,10 +51,6 @@
type: keyword
description: >
List of all the host names.
- name: iops
type: long
description: >
Storage I/O Control aggregated Input/Output Operations Per Second.
- name: name
type: keyword
description: >
Expand All @@ -49,10 +60,6 @@
description: >
Rate of reading data from the datastore.
format: bytes
- name: read.latency.total.ms
type: long
description: >
Average amount of time for a read operation from the datastore in milliseconds.
- name: status
type: keyword
description: >
Expand All @@ -70,8 +77,4 @@
description: >
Rate of writing data to the datastore.
format: bytes
- name: write.latency.total.ms
type: long
description: >
Average amount of time for a write operation from the datastore in milliseconds.

14 changes: 7 additions & 7 deletions metricbeat/module/vsphere/datastore/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,16 @@ func mapPerfMetricToEvent(event mapstr.M, perfMetricMap map[string]interface{})
if val, exist := perfMetricMap["datastore.read.average"]; exist {
event.Put("read.bytes", val.(int64)*bytesMultiplier)
}
if val, exist := perfMetricMap["datastore.totalReadLatency.average"]; exist {
event.Put("read.latency.total.ms", val)
}
if val, exist := perfMetricMap["datastore.write.average"]; exist {
event.Put("write.bytes", val.(int64)*bytesMultiplier)
}
if val, exist := perfMetricMap["datastore.totalWriteLatency.average"]; exist {
event.Put("write.latency.total.ms", val)
if val, exist := perfMetricMap["disk.capacity.latest"]; exist {
event.Put("disk.capacity.bytes", val.(int64)*bytesMultiplier)
}
if val, exist := perfMetricMap["disk.capacity.usage.average"]; exist {
event.Put("disk.capacity.usage.bytes", val.(int64)*bytesMultiplier)
}
if val, exist := perfMetricMap["datastore.datastoreIops.average"]; exist {
event.Put("iops", val)
if val, exist := perfMetricMap["disk.provisioned.latest"]; exist {
event.Put("disk.provisioned.bytes", val.(int64)*bytesMultiplier)
}
}
32 changes: 15 additions & 17 deletions metricbeat/module/vsphere/datastore/data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import (
)

func TestEventMapping(t *testing.T) {
var m *DataStoreMetricSet
var datastoreTest = mo.Datastore{
Summary: types.DatastoreSummary{
Name: "datastore-test",
Expand All @@ -47,23 +46,22 @@ func TestEventMapping(t *testing.T) {

var metricDataTest = metricData{
perfMetrics: map[string]interface{}{
"datastore.read.average": int64(100),
"datastore.write.average": int64(200),
"datastore.datastoreIops.average": int64(10),
"datastore.totalReadLatency.average": int64(100),
"datastore.totalWriteLatency.average": int64(100),
"datastore.read.average": int64(100),
"datastore.write.average": int64(200),
"disk.capacity.latest": int64(10000),
"disk.capacity.usage.average": int64(5000),
"disk.provisioned.latest": int64(5000),
},
assetNames: assetNames{
outputHostNames: []string{"DC3_H0"},
outputVmNames: []string{"DC3_H0_VM0"},
},
}

outputEvent := m.mapEvent(datastoreTest, &metricDataTest)
outputEvent := (&DataStoreMetricSet{}).mapEvent(datastoreTest, &metricDataTest)
testEvent := mapstr.M{
"fstype": "local",
"status": types.ManagedEntityStatus("green"),
"iops": int64(10),
"name": "datastore-test",
"host": mapstr.M{
"count": 1,
Expand All @@ -75,19 +73,20 @@ func TestEventMapping(t *testing.T) {
},
"read": mapstr.M{
"bytes": int64(102400),
"latency": mapstr.M{
"total": mapstr.M{
"ms": int64(100),
},
},
},
"write": mapstr.M{
"bytes": int64(204800),
"latency": mapstr.M{
"total": mapstr.M{
"ms": int64(100),
},
"disk": mapstr.M{
"capacity": mapstr.M{
"bytes": int64(10240000),
"usage": mapstr.M{
"bytes": int64(5120000),
},
},
"provisioned": mapstr.M{
"bytes": int64(5120000),
},
},
"capacity": mapstr.M{
"free": mapstr.M{
Expand All @@ -104,5 +103,4 @@ func TestEventMapping(t *testing.T) {
}

assert.Exactly(t, outputEvent, testEvent)

}
Loading
Loading