Skip to content

Commit

Permalink
add "netdata-" prefix to streaming and metrics-cardinality functions (n…
Browse files Browse the repository at this point in the history
…etdata#19413)

* add "netdata-" prefix for streaming and metrics-cardinality functions

* update priority
  • Loading branch information
ilyam8 authored Jan 16, 2025
1 parent 2f8a587 commit a1f3b74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/web/api/functions/functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void global_functions_add(void) {
rrd_function_add_inline(
localhost,
NULL,
"streaming",
"netdata-streaming",
10,
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
RRDFUNCTIONS_VERSION_DEFAULT,
Expand All @@ -22,7 +22,7 @@ void global_functions_add(void) {
NULL,
"netdata-api-calls",
10,
RRDFUNCTIONS_PRIORITY_DEFAULT + 2,
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
RRDFUNCTIONS_VERSION_DEFAULT,
RRDFUNCTIONS_PROGRESS_HELP,
"top",
Expand All @@ -44,9 +44,9 @@ void global_functions_add(void) {
rrd_function_add_inline(
localhost,
NULL,
"metrics-cardinality",
"netdata-metrics-cardinality",
10,
RRDFUNCTIONS_PRIORITY_DEFAULT,
RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
RRDFUNCTIONS_VERSION_DEFAULT,
RRDFUNCTIONS_METRICS_CARDINALITY_HELP,
"top",
Expand Down

0 comments on commit a1f3b74

Please sign in to comment.