Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 metrics related to alert in all the vSphere metricsets. {pull}40714[40714]
- 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]
Expand Down
70 changes: 70 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -67120,6 +67120,16 @@ type: keyword

--

*`vsphere.cluster.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

[float]
=== datastore

Expand Down Expand Up @@ -67273,6 +67283,16 @@ type: keyword

--

*`vsphere.datastore.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

*`vsphere.datastore.vm.count`*::
+
--
Expand Down Expand Up @@ -67366,6 +67386,16 @@ type: long

--

*`vsphere.datastorecluster.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

[float]
=== host

Expand Down Expand Up @@ -67723,6 +67753,16 @@ type: keyword

--

*`vsphere.host.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

*`vsphere.host.uptime`*::
+
--
Expand Down Expand Up @@ -67852,6 +67892,16 @@ type: long

--

*`vsphere.network.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

[float]
=== resourcepool

Expand Down Expand Up @@ -68078,6 +68128,16 @@ type: keyword

--

*`vsphere.resourcepool.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

[float]
=== virtualmachine

Expand Down Expand Up @@ -68305,6 +68365,16 @@ type: long

--

*`vsphere.virtualmachine.triggerd_alarms.*`*::
+
--
List of all the triggerd alarms.


type: object

--

[[exported-fields-windows]]
== Windows fields

Expand Down
118 changes: 76 additions & 42 deletions metricbeat/module/vsphere/cluster/_meta/data.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,81 @@
{
"@timestamp": "2017-10-12T08:05:34.853Z",
"event": {
"dataset": "vsphere.cluster",
"duration": 115000,
"module": "vsphere"
},
"metricset": {
"name": "cluster",
"period": 10000
},
"service": {
"address": "127.0.0.1:33365",
"type": "vsphere"
},
"vsphere": {
"@timestamp": "2017-10-12T08:05:34.853Z",
"event": {
"dataset": "vsphere.cluster",
"duration": 115000,
"module": "vsphere"
},
"metricset": {
"name": "cluster",
"period": 10000
},
"service": {
"address": "127.0.0.1:33365",
"type": "vsphere"
},
"vsphere": {
"cluster": {
"name": "Cluster_1",
"das_config": {
"enabled": false,
"admission": {
"control": {
"enabled": true
}
"triggerd_alarms": [
{
"status": "red",
"triggered_time": "2024-09-09T13:23:00.786Z",
"description": "Default alarm to monitor system boards. See the host's Hardware Status tab for more details.",
"entity_name": "121.0.0.0",
"name": "Host hardware system board status",
"id": "alarm-121.host-12"
},
{
"triggered_time": "2024-09-09T13:23:00.786Z",
"description": "Default alarm to monitor storage. See the host's Hardware Status tab for more details.",
"entity_name": "121.0.0.0",
"name": "Host storage status",
"id": "alarm-124.host-12",
"status": "red"
},
{
"entity_name": "121.0.0.0",
"name": "Host memory usage",
"id": "alarm-4.host-12",
"status": "yellow",
"triggered_time": "2024-08-28T10:31:26.621Z",
"description": "Default alarm to monitor host memory usage"
},
{
"name": "CPU Utilization",
"id": "alarm-703.host-12",
"status": "red",
"triggered_time": "2024-08-28T10:31:26.621Z",
"description": "",
"entity_name": "121.0.0.0"
}
],
"name": "Cluster_1",
"das_config": {
"enabled": false,
"admission": {
"control": {
"enabled": true
}
}
},
"host": {
"count": 1,
"names": [
"Host_1"
]
},
"datastore": {
"count": 1,
"names": [
"Datastore_1"
]
},
"network": {
"count": 1,
"names": [
"Network_1"
]
}
},
"host": {
"count": 1,
"names": [
"Host_1"
]
},
"datastore": {
"count": 1,
"names": [
"Datastore_1"
]
},
"network": {
"count": 1,
"names": [
"Network_1"
]
}
}
}
}
}
7 changes: 6 additions & 1 deletion metricbeat/module/vsphere/cluster/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,9 @@
- name: names
type: keyword
description: >
List of all the Network names associated with the cluster.
List of all the Network names associated with the cluster.
- name: triggerd_alarms.*
type: object
object_type: keyword
description: >
List of all the triggerd alarms.
Loading