mirror of
https://github.com/netdata/netdata.git
synced 2025-04-26 05:47:20 +00:00

* cleanup journal v2 mounts periodically * fix for last commit * re-enable loading page from disk when the arrangement of pages requires it * Remove unused statistics * Estimate diskspace when the current datafile is full and queue a rotate command (Currently it will not attempt to estimate end size for journals) Queue a command to check quota on startup per tier * apps.plugin now exposes RSS chart * shorter thread names to make debugging easier, since thread names can only be 15 characters * more thread names fixes * allow an apps_groups.conf target to be pid 0 or 1 Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com>
33 lines
902 B
C
33 lines
902 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "common.h"
|
|
|
|
extern void *macos_main(void *ptr);
|
|
|
|
const struct netdata_static_thread static_threads_macos[] = {
|
|
{
|
|
.name = "P[macos]",
|
|
.config_section = CONFIG_SECTION_PLUGINS,
|
|
.config_name = "macos",
|
|
.enabled = 1,
|
|
.thread = NULL,
|
|
.init_routine = NULL,
|
|
.start_routine = macos_main,
|
|
.env_name = NULL,
|
|
.global_variable = NULL,
|
|
},
|
|
|
|
{NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL}
|
|
};
|
|
|
|
const struct netdata_static_thread static_threads_freebsd[] = {
|
|
{NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL}
|
|
};
|
|
|
|
const struct netdata_static_thread static_threads_linux[] = {
|
|
{NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL}
|
|
};
|
|
|
|
struct netdata_static_thread *static_threads_get() {
|
|
return static_threads_concat(static_threads_common, static_threads_macos);
|
|
}
|