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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
// SPDX-License-Identifier: GPL-3.0-or-later
#include "api_v2_contexts.h"
#include "aclk/aclk_capas.h"
void build_info_to_json_object(BUFFER *b);
void buffer_json_agents_v2(BUFFER *wb, struct query_timings *timings, time_t now_s, bool info, bool array) {
if(!now_s)
now_s = now_realtime_sec();
if(array) {
buffer_json_member_add_array(wb, "agents");
buffer_json_add_array_item_object(wb);
}
else
buffer_json_member_add_object(wb, "agent");
buffer_json_member_add_string(wb, "mg", localhost->machine_guid);
buffer_json_member_add_uuid(wb, "nd", localhost->node_id.uuid);
buffer_json_member_add_string(wb, "nm", rrdhost_hostname(localhost));
buffer_json_member_add_time_t(wb, "now", now_s);
if(array)
buffer_json_member_add_uint64(wb, "ai", 0);
if(info) {
buffer_json_member_add_object(wb, "application");
build_info_to_json_object(wb);
buffer_json_object_close(wb); // application
buffer_json_cloud_status(wb, now_s);
size_t currently_collected_metrics = 0;
buffer_json_member_add_object(wb, "nodes");
{
size_t receiving = 0, archived = 0, sending = 0, total = 0;
RRDHOST *host;
dfe_start_read(rrdhost_root_index, host) {
total++;
if(rrdhost_flag_check(host, RRDHOST_FLAG_RRDPUSH_SENDER_CONNECTED))
sending++;
if(host != localhost) {
if (rrdhost_is_online(host))
receiving++;
else
archived++;
}
currently_collected_metrics += host->accounting.currently_collected;
}
dfe_done(host);
buffer_json_member_add_uint64(wb, "total", total);
buffer_json_member_add_uint64(wb, "receiving", receiving);
buffer_json_member_add_uint64(wb, "sending", sending);
buffer_json_member_add_uint64(wb, "archived", archived);
}
buffer_json_object_close(wb); // nodes
agent_capabilities_to_json(wb, localhost, "capabilities");
buffer_json_member_add_object(wb, "api");
{
buffer_json_member_add_uint64(wb, "version", aclk_get_http_api_version());
buffer_json_member_add_boolean(wb, "bearer_protection", netdata_is_protected_by_bearer);
}
buffer_json_object_close(wb); // api
buffer_json_member_add_array(wb, "db_size");
size_t group_seconds = localhost->rrd_update_every;
for (size_t tier = 0; tier < storage_tiers; tier++) {
STORAGE_ENGINE *eng = localhost->db[tier].eng;
if (!eng) continue;
group_seconds *= storage_tiers_grouping_iterations[tier];
uint64_t max = storage_engine_disk_space_max(eng->seb, localhost->db[tier].si);
uint64_t used = storage_engine_disk_space_used(eng->seb, localhost->db[tier].si);
#ifdef ENABLE_DBENGINE
if (!max && eng->seb == STORAGE_ENGINE_BACKEND_DBENGINE) {
max = get_directory_free_bytes_space(multidb_ctx[tier]);
max += used;
}
#endif
time_t first_time_s = storage_engine_global_first_time_s(eng->seb, localhost->db[tier].si);
// size_t currently_collected_metrics = storage_engine_collected_metrics(eng->seb, localhost->db[tier].si);
NETDATA_DOUBLE percent;
if (used && max)
percent = (NETDATA_DOUBLE) used * 100.0 / (NETDATA_DOUBLE) max;
else
percent = 0.0;
buffer_json_add_array_item_object(wb);
buffer_json_member_add_uint64(wb, "tier", tier);
char human_retention[128];
duration_snprintf_time_t(human_retention, sizeof(human_retention), (stime_t)group_seconds);
buffer_json_member_add_string(wb, "granularity", human_retention);
buffer_json_member_add_uint64(wb, "metrics", storage_engine_metrics(eng->seb, localhost->db[tier].si));
buffer_json_member_add_uint64(wb, "samples", storage_engine_samples(eng->seb, localhost->db[tier].si));
if(used || max) {
buffer_json_member_add_uint64(wb, "disk_used", used);
buffer_json_member_add_uint64(wb, "disk_max", max);
buffer_json_member_add_double(wb, "disk_percent", percent);
}
if(first_time_s) {
time_t retention = now_s - first_time_s;
buffer_json_member_add_time_t(wb, "from", first_time_s);
buffer_json_member_add_time_t(wb, "to", now_s);
buffer_json_member_add_time_t(wb, "retention", retention);
duration_snprintf_hours(human_retention, sizeof(human_retention),
(int)duration_round_to_resolution(retention, 3600));
buffer_json_member_add_string(wb, "retention_human", human_retention);
if(used || max) { // we have disk space information
time_t time_retention = 0;
#ifdef ENABLE_DBENGINE
time_retention = multidb_ctx[tier]->config.max_retention_s;
#endif
time_t space_retention = (time_t)((NETDATA_DOUBLE)(now_s - first_time_s) * 100.0 / percent);
time_t actual_retention = MIN(space_retention, time_retention ? time_retention : space_retention);
if (time_retention) {
duration_snprintf_hours(human_retention, sizeof(human_retention),
(int)duration_round_to_resolution(time_retention, 3600));
buffer_json_member_add_time_t(wb, "requested_retention", time_retention);
buffer_json_member_add_string(wb, "requested_retention_human", human_retention);
}
duration_snprintf_hours(human_retention, sizeof(human_retention),
(int)duration_round_to_resolution(actual_retention, 3600));
buffer_json_member_add_time_t(wb, "expected_retention", actual_retention);
buffer_json_member_add_string(wb, "expected_retention_human", human_retention);
}
}
if(currently_collected_metrics)
buffer_json_member_add_uint64(wb, "currently_collected_metrics", currently_collected_metrics);
buffer_json_object_close(wb);
}
buffer_json_array_close(wb); // db_size
}
if(timings)
buffer_json_query_timings(wb, "timings", timings);
buffer_json_object_close(wb);
if(array)
buffer_json_array_close(wb);
}
|