Skip to content

Commit 51264fd

Browse files
committed
Merge branch 'release/1.16.10'
2 parents 5640a55 + ed05c98 commit 51264fd

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.16.10](https://github.com/rdkcentral/entservices-apis/compare/1.16.9...1.16.10)
8+
9+
- RDKEMW-2993 : Add Telemetry Plugin [`#542`](https://github.com/rdkcentral/entservices-apis/pull/542)
10+
- Merge tag '1.16.9' into develop [`568ab07`](https://github.com/rdkcentral/entservices-apis/commit/568ab071117cc3df59cc7d69c503bb28f04314c8)
11+
712
#### [1.16.9](https://github.com/rdkcentral/entservices-apis/compare/1.16.8...1.16.9)
813

14+
> 24 September 2025
15+
916
- RDKEMW-8612 - Front Panel Documentation Update [`#551`](https://github.com/rdkcentral/entservices-apis/pull/551)
17+
- 1.16.9 release changelog updates [`bdc2e35`](https://github.com/rdkcentral/entservices-apis/commit/bdc2e351d8c8f770fa5b72766999eeb44ce69113)
1018
- Merge tag '1.16.8' into develop [`ebb853f`](https://github.com/rdkcentral/entservices-apis/commit/ebb853fe03f13e86e70ba85c7b554a405f28c042)
1119

1220
#### [1.16.8](https://github.com/rdkcentral/entservices-apis/compare/1.16.7...1.16.8)

apis/Ids.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,9 @@ namespace Exchange {
300300

301301
ID_FRONT_PANEL = ID_ENTOS_OFFSET + 0x3E0,
302302
ID_FRONT_PANEL_LIGHTS_LIST_ITERATOR = ID_FRONT_PANEL + 1,
303-
ID_FRONT_PANEL_BLINK_INFO_LIST_ITERATOR = ID_FRONT_PANEL + 2
303+
ID_FRONT_PANEL_BLINK_INFO_LIST_ITERATOR = ID_FRONT_PANEL + 2,
304+
305+
ID_TELEMETRYMETRICS = ID_ENTOS_OFFSET + 0x3F0
304306
};
305307
}
306308
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/*
2+
* If not stated otherwise in this file or this component's LICENSE file the
3+
* following copyright and licenses apply:
4+
*
5+
* Copyright 2025 RDK Management
6+
*
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
*/
19+
20+
#pragma once
21+
22+
#include "Module.h"
23+
24+
namespace WPEFramework {
25+
namespace Exchange {
26+
27+
// @text:keep
28+
struct EXTERNAL ITelemetryMetrics : virtual public Core::IUnknown {
29+
enum { ID = ID_TELEMETRYMETRICS };
30+
31+
/** @brief Record the telementryMetrics add new hash values to existing hash */
32+
// @text record
33+
// @param id string identifier for the telemetry record.
34+
// @param telemetryMetrics jsonString hash contains key value pair of telemetryData
35+
// @param markerName Groups related metrics
36+
virtual Core::hresult Record(const string& id, const string& telemetryMetrics, const string& markerName) = 0;
37+
38+
/** @brief Publish the Telemetry Data
39+
makes a T2 call that records all the key / value pairs in
40+
hash. The existing id and hash are cleared after publish.*/
41+
// @text publish
42+
// @param id string identifier for the telemetry record.
43+
// @param markerName Groups related metrics
44+
virtual Core::hresult Publish(const string& id, const string& markerName) = 0;
45+
};
46+
}// namespace Exchange
47+
}// namespace WPEFramework
48+

0 commit comments

Comments
 (0)