blob: 9cba0694fa7176d1001ab258049c914da6025396 (
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
|
// SPDX-License-Identifier: GPL-3.0-or-later
#include "common.h"
/* Run service jobs every X seconds */
#define SERVICE_HEARTBEAT 10
void service_main_cleanup(void *ptr)
{
struct netdata_static_thread *static_thread = (struct netdata_static_thread *)ptr;
static_thread->enabled = NETDATA_MAIN_THREAD_EXITING;
debug(D_SYSTEM, "Cleaning up...");
static_thread->enabled = NETDATA_MAIN_THREAD_EXITED;
}
/*
* The service thread.
*/
void *service_main(void *ptr)
{
netdata_thread_cleanup_push(service_main_cleanup, ptr);
heartbeat_t hb;
heartbeat_init(&hb);
usec_t step = USEC_PER_SEC * SERVICE_HEARTBEAT;
debug(D_SYSTEM, "Service thread starts");
while (!netdata_exit) {
heartbeat_next(&hb, step);
rrd_cleanup_obsolete_charts();
}
netdata_thread_cleanup_pop(1);
return NULL;
}
|