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
2 changes: 2 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
* `ComponentState` to `ElectricalComponentStateSnapshot`
* `ComponentState.sampled_at` to `ElectricalComponentStateSnapshot.origin_time`
* `ComponentData` to `ElectricalComponentTelemetry` (to better specify its purpose of encapsulating general telemetry data from electrical components)
* `ComponentData.states` to `ElectricalComponentTelemetry.state_snapshots`
* Grid-related terms to clarify their meaning and purpose:

+ `COMPONENT_CATEGORY_GRID` to `ELECTRICAL_COMPONENT_CATEGORY_GRID_CONNECTION_POINT`
Expand All @@ -38,6 +39,7 @@
* `SensorErrorCode` to `SensorDiagnosticCode`
* `SensorData` to `SensorTelemetry` (to better specify its purpose of encapsulating general telemetry data from sensors)
* `SensorState` to `SensorStateSnapshot`
* `SensorData.states` to `SensorTelemetry.state_snapshots`
* `SensorState.sampled_at` to `SensorStateSnapshot.origin_time`
* `SensorStateCode.SENSOR_STATE_CODE_ON` to `SensorStateCode.SENSOR_STATE_CODE_OK` (to better indicate that we do not control on/off state of sensors)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,6 @@ message ElectricalComponentTelemetry {
// List of measurements for a metric of the specific microgrid component.
repeated frequenz.api.common.v1.metrics.MetricSample metric_samples = 2;

// List of states of a specific microgrid component.
repeated ElectricalComponentStateSnapshot states = 3;
// List of state snapshots of a specific microgrid component.
repeated ElectricalComponentStateSnapshot state_snapshots = 3;
}
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ message SensorTelemetry {
// sensors.
repeated frequenz.api.common.v1.metrics.MetricSample metric_samples = 2;

// List of states of a specific microgrid sensor.
repeated SensorStateSnapshot states = 3;
// List of state snapshots of a specific microgrid sensor.
repeated SensorStateSnapshot state_snapshots = 3;
}

Loading