mirror of
https://github.com/netdata/netdata.git
synced 2025-04-25 13:33:48 +00:00
add "netdata-" prefix to streaming and metrics-cardinality functions (#19413)
* add "netdata-" prefix for streaming and metrics-cardinality functions * update priority
This commit is contained in:
parent
2f8a5872a7
commit
a1f3b747b5
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ void global_functions_add(void) {
|
||||||
rrd_function_add_inline(
|
rrd_function_add_inline(
|
||||||
localhost,
|
localhost,
|
||||||
NULL,
|
NULL,
|
||||||
"streaming",
|
"netdata-streaming",
|
||||||
10,
|
10,
|
||||||
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
|
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
|
||||||
RRDFUNCTIONS_VERSION_DEFAULT,
|
RRDFUNCTIONS_VERSION_DEFAULT,
|
||||||
|
@ -22,7 +22,7 @@ void global_functions_add(void) {
|
||||||
NULL,
|
NULL,
|
||||||
"netdata-api-calls",
|
"netdata-api-calls",
|
||||||
10,
|
10,
|
||||||
RRDFUNCTIONS_PRIORITY_DEFAULT + 2,
|
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
|
||||||
RRDFUNCTIONS_VERSION_DEFAULT,
|
RRDFUNCTIONS_VERSION_DEFAULT,
|
||||||
RRDFUNCTIONS_PROGRESS_HELP,
|
RRDFUNCTIONS_PROGRESS_HELP,
|
||||||
"top",
|
"top",
|
||||||
|
@ -44,9 +44,9 @@ void global_functions_add(void) {
|
||||||
rrd_function_add_inline(
|
rrd_function_add_inline(
|
||||||
localhost,
|
localhost,
|
||||||
NULL,
|
NULL,
|
||||||
"metrics-cardinality",
|
"netdata-metrics-cardinality",
|
||||||
10,
|
10,
|
||||||
RRDFUNCTIONS_PRIORITY_DEFAULT,
|
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
|
||||||
RRDFUNCTIONS_VERSION_DEFAULT,
|
RRDFUNCTIONS_VERSION_DEFAULT,
|
||||||
RRDFUNCTIONS_METRICS_CARDINALITY_HELP,
|
RRDFUNCTIONS_METRICS_CARDINALITY_HELP,
|
||||||
"top",
|
"top",
|
||||||
|
|
Loading…
Add table
Reference in a new issue