Skip to content

Commit

Permalink
0.74.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Apr 22, 2021
1 parent b18c3d6 commit 4b5ab9b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog Hiber API

### 0.74.4 (2021-04-22)

Small convenience hotfix for the `ModemHealthCount`.

##### ModemService

- **[B]** Changed `ModemHealthCount.Response` to group tag health counts instead of having them all in a big list.

#### Backwards incompatible changes

- **[B]** Changed `ModemHealthCount.Response` to group tag health counts instead of having them all in a big list.

### 0.74 (2021-04-15)

#### Changes
Expand Down
18 changes: 5 additions & 13 deletions modem.proto
Original file line number Diff line number Diff line change
Expand Up @@ -735,25 +735,17 @@ message ModemHealthCount {
Health health = 3 [deprecated = true];
}

message HealthCountPerTag {
message HealthCountGroupedPerTag {
/* The tag this count is for. */
hiber.tag.Tag tag = 1;

/* Health level based on the modem alarm and some always-present alarms. */
health.HealthLevel health_level = 2;

/* The number of modems matching the modem selection with this tag and health level */
uint32 count = 3;

/* Deprecated health based on the number of error and warning events this modem has received in the past 30 days
* Uses the OK, WARNING, ERROR format.
*/
Health health = 4 [deprecated = true];
repeated HealthCount health_counts = 2;
}

message Response {
repeated HealthCount health_totals = 1;
repeated HealthCountPerTag health_per_tag = 2;
repeated HealthCountGroupedPerTag health_grouped_per_tag = 4;
Request request = 3;

reserved 2;
}
}

0 comments on commit 4b5ab9b

Please sign in to comment.