Skip to content

Commit

Permalink
[receiver/hostmetrics] Add network udp snmp metrics.
Browse files Browse the repository at this point in the history
**Description:** Added the udp proto snmp metrics to hostmetrics receiver.

**Link to tracking Issue:**
    TODO: https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/***

**Testing:** TODO

**Documentation:** Metric documentation in metadata.yaml
  • Loading branch information
drubinMeta committed Sep 24, 2023
1 parent 75def8a commit e080b89
Show file tree
Hide file tree
Showing 8 changed files with 491 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,47 @@ The limit for entries in the conntrack table.
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {entries} | Sum | Int | Cumulative | false |
### system.network.udp.buf_errors
The number of udp RcvbufErrors or SndbufErrors.
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {errors} | Sum | Int | Cumulative | true |
#### Attributes
| Name | Description | Values |
| ---- | ----------- | ------ |
| direction | Direction of flow of bytes/operations (receive or transmit). | Str: ``receive``, ``transmit`` |
### system.network.udp.datagrams
The number of udp datagrams transmitted and received.
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {datagrams} | Sum | Int | Cumulative | true |
#### Attributes
| Name | Description | Values |
| ---- | ----------- | ------ |
| direction | Direction of flow of bytes/operations (receive or transmit). | Str: ``receive``, ``transmit`` |
### system.network.udp.errors
The packet receive errors.
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {errors} | Sum | Int | Cumulative | true |
### system.network.udp.no_ports
The packets to unknown port received.
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
| ---- | ----------- | ---------- | ----------------------- | --------- |
| {packets} | Sum | Int | Cumulative | true |

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e080b89

Please sign in to comment.