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
42 changes: 21 additions & 21 deletions receiver/nsxtreceiver/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ metrics:

The average amount of CPU being used by the node.

| Unit | Metric Type | Value Type |
| ---- | ----------- | ---------- |
| % | Gauge | Double |
| Unit | Metric Type | Value Type | Stability |
| ---- | ----------- | ---------- | --------- |
| % | Gauge | Double | development |

#### Attributes

Expand All @@ -30,9 +30,9 @@ The average amount of CPU being used by the node.

The amount of storage space used by the node.

| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| By | Sum | Int | Cumulative | false |
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| ---- | ----------- | ---------- | ----------------------- | --------- | --------- |
| By | Sum | Int | Cumulative | false | development |

#### Attributes

Expand All @@ -44,33 +44,33 @@ The amount of storage space used by the node.

The percentage of storage space utilized.

| Unit | Metric Type | Value Type |
| ---- | ----------- | ---------- |
| % | Gauge | Double |
| Unit | Metric Type | Value Type | Stability |
| ---- | ----------- | ---------- | --------- |
| % | Gauge | Double | development |

### nsxt.node.memory.cache.usage

The size of the node's memory cache.

| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| KBy | Sum | Int | Cumulative | false |
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| ---- | ----------- | ---------- | ----------------------- | --------- | --------- |
| KBy | Sum | Int | Cumulative | false | development |

### nsxt.node.memory.usage

The memory usage of the node.

| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| KBy | Sum | Int | Cumulative | false |
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| ---- | ----------- | ---------- | ----------------------- | --------- | --------- |
| KBy | Sum | Int | Cumulative | false | development |

### nsxt.node.network.io

The number of bytes which have flowed through the network interface.

| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| By | Sum | Int | Cumulative | true |
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| ---- | ----------- | ---------- | ----------------------- | --------- | --------- |
| By | Sum | Int | Cumulative | true | development |

#### Attributes

Expand All @@ -82,9 +82,9 @@ The number of bytes which have flowed through the network interface.

The number of packets which have flowed through the network interface on the node.

| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {packets} | Sum | Int | Cumulative | true |
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| ---- | ----------- | ---------- | ----------------------- | --------- | --------- |
| {packets} | Sum | Int | Cumulative | true | development |

#### Attributes

Expand Down
14 changes: 14 additions & 0 deletions receiver/nsxtreceiver/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ attributes:
metrics:
nsxt.node.network.io:
description: The number of bytes which have flowed through the network interface.
stability:
level: development
unit: "By"
sum:
monotonic: true
Expand All @@ -67,6 +69,8 @@ metrics:
attributes: [direction]
nsxt.node.network.packet.count:
description: The number of packets which have flowed through the network interface on the node.
stability:
level: development
unit: "{packets}"
sum:
monotonic: true
Expand All @@ -76,19 +80,25 @@ metrics:
attributes: [direction, packet.type]
nsxt.node.cpu.utilization:
description: The average amount of CPU being used by the node.
stability:
level: development
unit: "%"
gauge:
value_type: double
enabled: true
attributes: [class]
nsxt.node.filesystem.utilization:
description: The percentage of storage space utilized.
stability:
level: development
unit: "%"
gauge:
value_type: double
enabled: true
nsxt.node.filesystem.usage:
description: The amount of storage space used by the node.
stability:
level: development
unit: By
sum:
monotonic: false
Expand All @@ -98,6 +108,8 @@ metrics:
attributes: [disk_state]
nsxt.node.memory.usage:
description: The memory usage of the node.
stability:
level: development
unit: KBy
sum:
monotonic: false
Expand All @@ -106,6 +118,8 @@ metrics:
enabled: true
nsxt.node.memory.cache.usage:
description: The size of the node's memory cache.
stability:
level: development
unit: KBy
sum:
monotonic: false
Expand Down
Loading