OtlpMetricDto
OtlpMetricDto
| Name | Description | Schema | Default |
|---|---|---|---|
| description optional | Description of Metric Example : The total number of bytes read successfully. | any of [string, null] | |
| gauge optional | The gauge field is a metric type that represents a single value at a specific point in time, used for measuring fluctuating values like current memory usage or CPU temperature. either sum or gauge must be specified. | any of [OtlpGaugeDto, null] | |
| name required | Name of Metric Example : node_disk_read_bytes_total | string | |
| sum optional | The sum field is a metric type that represents a cumulative value over time, used for measuring quantities that only increase, like the number of requests or bytes sent. either sum or gauge must be specified. | any of [OtlpSumDto, null] | |
| unit optional | Unit of Metric Example : Bytes | any of [string, null] |