Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- Renamed `SensorState` to `SensorStateSnapshot` to better reflect its purpose.
- Renamed `sampled_at` timestamps for state snapshots to `origin_time`.
- Renamed `sampled_at` timestamps for metric samples to `sample_time`.
- Remove `SensorMetricSample` in favour of using `MetricSample` for sensors.

## Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,15 @@ message SensorMetricSample {
// sample_time: "2023-10-01T00:00:00Z",
// metric: "METRIC_SENSOR_TEMPERATURE",
// value: metric_value_variant: {simple_metric: {value: 23.5},
// bounds: {}
// source: {}
// },
// {
// sample_time: "2023-10-01T00:00:00Z",
// metric: "METRIC_SENSOR_RELATIVE_HUMIDITY",
// value: metric_value_variant: {simple_metric: {value: 23.5},
// bounds: {}
// source: "humidity_sensor_1"
// }
// ],
// states: [
Expand All @@ -254,7 +258,7 @@ message SensorData {
uint64 sensor_id = 1;

// List of measurements for a metric of the specific microgrid sensor.
repeated SensorMetricSample metric_samples = 2;
repeated frequenz.api.common.v1.metrics.MetricSample metric_samples = 2;

// List of states of a specific microgrid sensor.
repeated SensorStateSnapshot states = 3;
Expand Down
Loading