-
Notifications
You must be signed in to change notification settings - Fork 435
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
[vSphere][datastore] Add support for additional metrics #10911
Changes from 15 commits
2004252
a2c2591
d81254b
e9147ab
2eb74a8
11a135b
8ce790b
321a5e2
0cbd1bc
0677108
3b98122
38b42aa
2cb93db
9f6b19f
73366a7
6a47c43
57aad0b
4c5186f
4c457aa
7bb821b
7cad138
5333a11
73a1b47
4afc186
ac62604
9c7ae05
1bdac8d
47317a7
0b87f5b
9c15224
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,33 +6,86 @@ | |
type: keyword | ||
# Reason to add as a dimension field: to uniquely identify the datastore | ||
dimension: true | ||
description: Datastore name | ||
description: Datastore name. | ||
- name: fstype | ||
type: keyword | ||
# Reason to add as a dimension field: in case datastore name is duplicated across different type. | ||
dimension: true | ||
description: Filesystem type | ||
description: Filesystem type. | ||
- name: capacity.total.bytes | ||
type: long | ||
metric_type: gauge | ||
unit: byte | ||
description: Total bytes of the datastore | ||
description: Total bytes of the datastore. | ||
format: bytes | ||
- name: capacity.free.bytes | ||
type: long | ||
metric_type: gauge | ||
unit: byte | ||
description: Free bytes of the datastore | ||
description: Free bytes of the datastore. | ||
format: bytes | ||
- name: capacity.used.bytes | ||
type: long | ||
metric_type: gauge | ||
unit: byte | ||
description: Used bytes of the datastore | ||
description: Used bytes of the datastore. | ||
format: bytes | ||
- name: capacity.used.pct | ||
type: scaled_float | ||
metric_type: gauge | ||
unit: percent | ||
description: Used percent of the datastore | ||
description: Percentage of datastore capacity used. | ||
format: percent | ||
- name: host.count | ||
type: long | ||
metric_type: gauge | ||
description: > | ||
Number of hosts associated with the datastore. | ||
- name: host.names | ||
agithomas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
type: keyword | ||
description: > | ||
List of all the host names associated with the datastore. | ||
- name: iops | ||
type: long | ||
metric_type: gauge | ||
description: > | ||
Storage I/O Control aggregated Input/Output Operations Per Second. | ||
- name: read.bytes | ||
type: long | ||
metric_type: gauge | ||
unit: byte | ||
description: > | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. metric_type to be added for new metrics. |
||
Rate of reading data from the datastore. | ||
format: bytes | ||
- name: read.latency.total.ms | ||
type: long | ||
metric_type: gauge | ||
unit: ms | ||
description: > | ||
Average amount of time for a read operation from the datastore in milliseconds. | ||
- name: status | ||
type: keyword | ||
description: > | ||
Status of the datastore. | ||
- name: vm.count | ||
type: long | ||
metric_type: gauge | ||
description: > | ||
Number of VMs associated with the datastore. | ||
- name: vm.names | ||
type: keyword | ||
description: > | ||
List of all the VM names associated with the datastore. | ||
- name: write.bytes | ||
type: long | ||
metric_type: gauge | ||
unit: byte | ||
description: > | ||
Rate of writing data to the datastore. | ||
format: bytes | ||
- name: write.latency.total.ms | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please check the metricset of datastore. There is a change in the fields. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this is resolved still ? |
||
metric_type: gauge | ||
unit: ms | ||
type: long | ||
description: > | ||
Average amount of time for a write operation from the datastore in milliseconds. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the version to 1.15.0-next