From 7104b0c45a5166ef9157c525e46ce7d59b3e1f84 Mon Sep 17 00:00:00 2001 From: shripad621git Date: Fri, 9 Feb 2024 15:03:56 +0530 Subject: [PATCH] Added some documentation regarding the newly added macros --- src/tracing/macros.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/tracing/macros.h b/src/tracing/macros.h index 18b80f685c4062..0643a466c2a77d 100644 --- a/src/tracing/macros.h +++ b/src/tracing/macros.h @@ -26,6 +26,14 @@ // MATTER_TRACE_END(label, group) // MATTER_TRACE_INSTANT(label, group) // MATTER_TRACE_SCOPE(label, group) + +// Tracing macro to trace monotonically increasing counter values. +// MATTER_TRACE_COUNTER(label) + +// Tracing macro to represent historical metric data i.e the data points which represent different +// values at different point of time. +// MATTER_TRACE_METRIC(label, value) + #include #include #include