MetricDataPoint
Type: Object
Represents a single time-series data point for a specific metric. This is the fundamental unit of measurement in the analytics system, capturing a value at a specific point in time. These data points are stored in a high-performance time-series database (TimescaleDB) and can be aggregated to generate insights into system performance, production efficiency, and other key business indicators.
Fields
| Name | Type | Args | Description | Deprecated |
|---|---|---|---|---|
| component | Component | The component this data point belongs to. | ||
| componentId | ID | |||
| metric | Metric! | The metric this data point belongs to. | ||
| metricId | ID! | |||
| operation | Operation | The operation this data point belongs to. | ||
| operationId | ID | |||
| signalType | SignalType | Semantic signal classification inherited from the parent metric. | ||
| tags | JsonString! | Any tags relevant to this data point. | ||
| timestamp | DateTime! | |||
| value | Decimal! | The value at the time of reading. |