diff options
Diffstat (limited to 'src/lib/metrics')
-rw-r--r-- | src/lib/metrics/metrics_common.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/metrics/metrics_common.h b/src/lib/metrics/metrics_common.h index 50f6147007..c684a3ec42 100644 --- a/src/lib/metrics/metrics_common.h +++ b/src/lib/metrics/metrics_common.h @@ -11,14 +11,10 @@ #include "lib/cc/torint.h" -/** Prefix to every metrics exposed. This is insures that the metrics are - * always in the same namespace. */ -#define METRICS_PREFIX tor_ - /** Helper macro that must be used to construct the right namespaced metrics * name. A name is a string so stringify the result. */ #define METRICS_STR(val) #val -#define METRICS_NAME(name) METRICS_STR(METRICS_PREFIX ## name) +#define METRICS_NAME(name) METRICS_STR(tor_ ## name) /** Format output type. */ typedef enum { |