Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update stat producerId documentation #64

Merged
merged 3 commits into from
Jun 24, 2024
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
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# ProtoBuf Release Notes

## 0.0.7-dev - 2024-06-19
## 0.0.7-dev - 2024-06-24

### Documentation

- Update stat producerId documentation (PR #64 by @hiimjako)

### Dependencies

Expand Down
4 changes: 2 additions & 2 deletions docs/stat.proto.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ direction LR
%% A Stat of PMU data, check IEEE C37.118 standard for more details.
%% Headers used in rabbitMQ:
%% * `id` (string): id of the `Stat` message.
%% * `producerId` (string): the id of the PMU linked to the Stat.
%% * `producerId` (string): the id of the producer (e.g. a PMU) linked to the dataset.
%% * `timestampId` (int64): related measurement Unix msec timestamp (if any)
%%

Expand All @@ -56,7 +56,7 @@ class Stat {
A Stat of PMU data, check IEEE C37.118 standard for more details.
Headers used in rabbitMQ:
* `id` (string): id of the `Stat` message.
* `producerId` (string): the id of the PMU linked to the Stat.
* `producerId` (string): the id of the producer (e.g. a PMU) linked to the dataset.
* `timestampId` (int64): related measurement Unix msec timestamp (if any)


Expand Down
2 changes: 1 addition & 1 deletion zaphiro/c37118/v1/stat.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ option go_package = "./c37118/v1";
/* A Stat of PMU data, check IEEE C37.118 standard for more details.
Headers used in rabbitMQ:
* `id` (string): id of the `Stat` message.
* `producerId` (string): the id of the PMU linked to the Stat.
* `producerId` (string): the id of the producer (e.g. a PMU) linked to the dataset.
* `timestampId` (int64): related measurement Unix msec timestamp (if any)
*/

Expand Down
Loading