Skip to content

Commit a422b7a

Browse files
tracing: Added a macro to report the metric values from the sdk to the tracing framework. (#32032)
* Added metric support * Addressed the review comments
1 parent a95af94 commit a422b7a

File tree

13 files changed

+52
-0
lines changed

13 files changed

+52
-0
lines changed

src/app/clusters/wifi-network-diagnostics-server/wifi-network-diagnostics-server.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ CHIP_ERROR WiFiDiagosticsAttrAccess::ReadWiFiRssi(AttributeValueEncoder & aEncod
163163
{
164164
rssi.SetNonNull(value);
165165
ChipLogProgress(Zcl, "The current RSSI of the Node’s Wi-Fi radio in dB: %d", value);
166+
MATTER_TRACE_METRIC("wifi_rssi", value);
166167
}
167168
else
168169
{

src/tracing/backend.h

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class Backend : public ::chip::IntrusiveListNodeBase<>
6464
virtual void TraceInstant(const char * label, const char * group) {}
6565

6666
virtual void TraceCounter(const char * label) {}
67+
virtual void TraceMetric(const char * label, int32_t value) {}
6768
virtual void LogMessageSend(MessageSendInfo &) { TraceInstant("MessageSent", "Messaging"); }
6869
virtual void LogMessageReceived(MessageReceivedInfo &) { TraceInstant("MessageReceived", "Messaging"); }
6970

src/tracing/esp32_trace/esp32_tracing.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,19 @@ void ESP32Backend::TraceCounter(const char * label)
153153
{
154154
::Insights::ESPInsightsCounter::GetInstance(label)->ReportMetrics();
155155
}
156+
157+
void ESP32Backend::TraceMetric(const char * label, int32_t value)
158+
{
159+
if (!mRegistered)
160+
{
161+
esp_diag_metrics_register("SYS_MTR" /*Tag of metrics */, label /* Unique key 8 */, label /* label displayed on dashboard */,
162+
"insights.mtr" /* hierarchical path */, ESP_DIAG_DATA_TYPE_INT /* data_type */);
163+
mRegistered = true;
164+
}
165+
ESP_LOGI("mtr", "The value of %s is %ld ", label, value);
166+
esp_diag_metrics_add_int(label, value);
167+
}
168+
156169
void ESP32Backend::TraceBegin(const char * label, const char * group)
157170
{
158171
HashValue hashValue = MurmurHash(group);

src/tracing/esp32_trace/esp32_tracing.h

+4
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ class ESP32Backend : public ::chip::Tracing::Backend
2929
void TraceInstant(const char * label, const char * group) override;
3030

3131
void TraceCounter(const char * label) override;
32+
void TraceMetric(const char * label, int32_t value) override;
3233

3334
void LogMessageSend(MessageSendInfo &) override;
3435
void LogMessageReceived(MessageReceivedInfo &) override;
3536

3637
void LogNodeLookup(NodeLookupInfo &) override;
3738
void LogNodeDiscovered(NodeDiscoveredInfo &) override;
3839
void LogNodeDiscoveryFailed(NodeDiscoveryFailedInfo &) override;
40+
41+
private:
42+
bool mRegistered = false;
3943
};
4044

4145
} // namespace Insights

src/tracing/esp32_trace/include/matter/tracing/macros_impl.h

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#define MATTER_TRACE_END(label, group) ::chip::Tracing::Internal::End(label, group)
3030
#define MATTER_TRACE_INSTANT(label, group) ::chip::Tracing::Internal::Instant(label, group)
3131
#define MATTER_TRACE_COUNTER(label) ::chip::Tracing::Internal::Counter(label)
32+
#define MATTER_TRACE_METRIC(label, value) ::chip::Tracing::Internal::Metric(label, value)
3233

3334
namespace chip {
3435
namespace Tracing {

src/tracing/json/json_tracing.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,15 @@ void JsonBackend::TraceCounter(const char * label)
295295
OutputValue(value);
296296
}
297297

298+
void JsonBackend::TraceMetric(const char * label, int32_t val)
299+
{
300+
::Json::Value value;
301+
value["label"] = label;
302+
value["value"] = val;
303+
304+
OutputValue(value);
305+
}
306+
298307
void JsonBackend::LogMessageSend(MessageSendInfo & info)
299308
{
300309
::Json::Value value;

src/tracing/json/json_tracing.h

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class JsonBackend : public ::chip::Tracing::Backend
5252
void TraceEnd(const char * label, const char * group) override;
5353
void TraceInstant(const char * label, const char * group) override;
5454
void TraceCounter(const char * label) override;
55+
void TraceMetric(const char * label, int32_t val) override;
5556
void LogMessageSend(MessageSendInfo &) override;
5657
void LogMessageReceived(MessageReceivedInfo &) override;
5758
void LogNodeLookup(NodeLookupInfo &) override;

src/tracing/macros.h

+9
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@
2626
// MATTER_TRACE_END(label, group)
2727
// MATTER_TRACE_INSTANT(label, group)
2828
// MATTER_TRACE_SCOPE(label, group)
29+
30+
// Tracing macro to trace monotonically increasing counter values.
31+
// MATTER_TRACE_COUNTER(label)
32+
33+
// Tracing macro to represent historical metric data i.e the data points which represent different
34+
// values at different point of time.
35+
// MATTER_TRACE_METRIC(label, value)
36+
2937
#include <matter/tracing/macros_impl.h>
3038
#include <tracing/log_declares.h>
3139
#include <tracing/registry.h>
@@ -79,6 +87,7 @@
7987
#define MATTER_TRACE_INSTANT(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
8088
#define MATTER_TRACE_SCOPE(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
8189
#define MATTER_TRACE_COUNTER(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
90+
#define MATTER_TRACE_METRIC(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
8291

8392
#define MATTER_LOG_MESSAGE_SEND(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
8493
#define MATTER_LOG_MESSAGE_RECEIVED(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)

src/tracing/multiplexed/include/matter/tracing/macros_impl.h

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#define MATTER_TRACE_END(label, group) ::chip::Tracing::Internal::End(label, group)
3030
#define MATTER_TRACE_INSTANT(label, group) ::chip::Tracing::Internal::Instant(label, group)
3131
#define MATTER_TRACE_COUNTER(label) ::chip::Tracing::Internal::Counter(label)
32+
#define MATTER_TRACE_METRIC(label, value) ::chip::Tracing::Internal::Metric(label, value)
3233

3334
namespace chip {
3435
namespace Tracing {

src/tracing/none/include/matter/tracing/macros_impl.h

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@
3232
#define MATTER_TRACE_INSTANT(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
3333
#define MATTER_TRACE_SCOPE(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
3434
#define MATTER_TRACE_COUNTER(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)
35+
#define MATTER_TRACE_METRIC(...) _MATTER_TRACE_DISABLE(__VA_ARGS__)

src/tracing/perfetto/include/matter/tracing/macros_impl.h

+2
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ PERFETTO_DEFINE_CATEGORIES(perfetto::Category("Matter").SetDescription("Matter t
3737
static int count##_label = 0; \
3838
TRACE_COUNTER("Matter", label, ++count##_label); \
3939
} while (0)
40+
41+
#define MATTER_TRACE_METRIC(label, value) TRACE_COUNTER("Matter", label, value)

src/tracing/registry.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ void Counter(const char * label)
8484
}
8585
}
8686

87+
void Metric(const char * label, int32_t value)
88+
{
89+
for (auto & backend : gTracingBackends)
90+
{
91+
backend.TraceMetric(label, value);
92+
}
93+
}
94+
8795
void LogMessageSend(::chip::Tracing::MessageSendInfo & info)
8896
{
8997
for (auto & backend : gTracingBackends)

src/tracing/registry.h

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ void Begin(const char * label, const char * group);
7777
void End(const char * label, const char * group);
7878
void Instant(const char * label, const char * group);
7979
void Counter(const char * label);
80+
void Metric(const char * label, int32_t value);
8081

8182
void LogMessageSend(::chip::Tracing::MessageSendInfo & info);
8283
void LogMessageReceived(::chip::Tracing::MessageReceivedInfo & info);

0 commit comments

Comments
 (0)