From 07844e8effdfca0a51dbe7441a26d823e7c6d75b Mon Sep 17 00:00:00 2001 From: jannast <104557199+jannast@users.noreply.github.com> Date: Fri, 29 Sep 2023 13:11:11 +0200 Subject: [PATCH] New manip convey demo values (#68) // new manipulation ConveyMetricDemoValues for metrics # Checklist The following aspects have been respected by the author of this pull request, confirmed by both pull request assignee **and** reviewer: * Changelog update (necessity checked and entry added or not added respectively) * [x] Pull Request Assignee * [x] Reviewer * README update (necessity checked and entry added or not added respectively) * [x] Pull Request Assignee * [x] Reviewer --- CHANGELOG.md | 1 + src/t2iapi/metric/service.proto | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cbf617..0980e8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- manipulation ConveyMetricDemoValues for metrics - manipulation SetAlertConditionAndAlertSignalActivationState for alert activation states ### Changed diff --git a/src/t2iapi/metric/service.proto b/src/t2iapi/metric/service.proto index 280eb7b..8851667 100644 --- a/src/t2iapi/metric/service.proto +++ b/src/t2iapi/metric/service.proto @@ -115,4 +115,11 @@ service MetricService { */ rpc TransitionProvideValueToExpressNoValueAvailable (BasicHandleRequest) returns (BasicResponse); + + /* + Convey demo values for the metric with the given handle. + This means that the metric value is arbitrary and for demonstration purposes only. + */ + rpc ConveyMetricDemoValues (BasicHandleRequest) + returns (BasicResponse); }