summaryrefslogtreecommitdiffstats
path: root/src/web/api/functions/functions.c
blob: c00e04ca09e61c6ba36d0da26cc5880cf5ee3264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// SPDX-License-Identifier: GPL-3.0-or-later

#include "functions.h"

void global_functions_add(void) {
    // we register this only on localhost
    // for the other nodes, the origin server should register it
    rrd_function_add_inline(
        localhost,
        NULL,
        "streaming",
        10,
        RRDFUNCTIONS_PRIORITY_DEFAULT + 1,
        RRDFUNCTIONS_VERSION_DEFAULT,
        RRDFUNCTIONS_STREAMING_HELP,
        "top",
        HTTP_ACCESS_SIGNED_ID | HTTP_ACCESS_SAME_SPACE | HTTP_ACCESS_SENSITIVE_DATA,
        function_streaming);

    rrd_function_add_inline(
        localhost,
        NULL,
        "netdata-api-calls",
        10,
        RRDFUNCTIONS_PRIORITY_DEFAULT + 2,
        RRDFUNCTIONS_VERSION_DEFAULT,
        RRDFUNCTIONS_PROGRESS_HELP,
        "top",
        HTTP_ACCESS_SIGNED_ID | HTTP_ACCESS_SAME_SPACE | HTTP_ACCESS_SENSITIVE_DATA,
        function_progress);

    rrd_function_add_inline(
        localhost,
        NULL,
        RRDFUNCTIONS_BEARER_GET_TOKEN,
        10,
        RRDFUNCTIONS_PRIORITY_DEFAULT + 3,
        RRDFUNCTIONS_VERSION_DEFAULT,
        RRDFUNCTIONS_BEARER_GET_TOKEN_HELP,
        RRDFUNCTIONS_TAG_HIDDEN,
        HTTP_ACCESS_SIGNED_ID | HTTP_ACCESS_SAME_SPACE | HTTP_ACCESS_SENSITIVE_DATA,
        function_bearer_get_token);
}