mirror of
https://github.com/netdata/netdata.git
synced 2025-04-06 14:35:32 +00:00

* rrdset - in progress * rrdset optimal constructor; rrdset conflict * rrdset final touches * re-organization of rrdset object members * prevent use-after-free * dictionary dfe supports also counting of iterations * rrddim managed by dictionary * rrd.h cleanup * DICTIONARY_ITEM now is referencing actual dictionary items in the code * removed rrdset linked list * Revert "removed rrdset linked list" This reverts commit 690d6a588b4b99619c2c5e10f84e8f868ae6def5. * removed rrdset linked list * added comments * Switch chart uuid to static allocation in rrdset Remove unused functions * rrdset_archive() and friends... * always create rrdfamily * enable ml_free_dimension * rrddim_foreach done with dfe * most custom rrddim loops replaced with rrddim_foreach * removed accesses to rrddim->dimensions * removed locks that are no longer needed * rrdsetvar is now managed by the dictionary * set rrdset is rrdsetvar, fixes https://github.com/netdata/netdata/pull/13646#issuecomment-1242574853 * conflict callback of rrdsetvar now properly checks if it has to reset the variable * dictionary registered callbacks accept as first parameter the DICTIONARY_ITEM * dictionary dfe now uses internal counter to report; avoided excess variables defined with dfe * dictionary walkthrough callbacks get dictionary acquired items * dictionary reference counters that can be dupped from zero * added advanced functions for get and del * rrdvar managed by dictionaries * thread safety for rrdsetvar * faster rrdvar initialization * rrdvar string lengths should match in all add, del, get functions * rrdvar internals hidden from the rest of the world * rrdvar is now acquired throughout netdata * hide the internal structures of rrdsetvar * rrdsetvar is now acquired through out netdata * rrddimvar managed by dictionary; rrddimvar linked list removed; rrddimvar structures hidden from the rest of netdata * better error handling * dont create variables if not initialized for health * dont create variables if not initialized for health again * rrdfamily is now managed by dictionaries; references of it are acquired dictionary items * type checking on acquired objects * rrdcalc renaming of functions * type checking for rrdfamily_acquired * rrdcalc managed by dictionaries * rrdcalc double free fix * host rrdvars is always needed * attempt to fix deadlock 1 * attempt to fix deadlock 2 * Remove unused variable * attempt to fix deadlock 3 * snprintfz * rrdcalc index in rrdset fix * Stop storing active charts and computing chart hashes * Remove store active chart function * Remove compute chart hash function * Remove sql_store_chart_hash function * Remove store_active_dimension function * dictionary delayed destruction * formatting and cleanup * zero dictionary base on rrdsetvar * added internal error to log delayed destructions of dictionaries * typo in rrddimvar * added debugging info to dictionary * debug info * fix for rrdcalc keys being empty * remove forgotten unlock * remove deadlock * Switch to metadata version 5 and drop chart_hash chart_hash_map chart_active dimension_active v_chart_hash * SQL cosmetic changes * do not busy wait while destroying a referenced dictionary * remove deadlock * code cleanup; re-organization; * fast cleanup and flushing of dictionaries * number formatting fixes * do not delete configured alerts when archiving a chart * rrddim obsolete linked list management outside dictionaries * removed duplicate contexts call * fix crash when rrdfamily is not initialized * dont keep rrddimvar referenced * properly cleanup rrdvar * removed some locks * Do not attempt to cleanup chart_hash / chart_hash_map * rrdcalctemplate managed by dictionary * register callbacks on the right dictionary * removed some more locks * rrdcalc secondary index replaced with linked-list; rrdcalc labels updates are now executed by health thread * when looking up for an alarm look using both chart id and chart name * host initialization a bit more modular * init rrdlabels on host update * preparation for dictionary views * improved comment * unused variables without internal checks * service threads isolation and worker info * more worker info in service thread * thread cancelability debugging with internal checks * strings data races addressed; fixes https://github.com/netdata/netdata/issues/13647 * dictionary modularization * Remove unused SQL statement definition * unit-tested thread safety of dictionaries; removed data race conditions on dictionaries and strings; dictionaries now can detect if the caller is holds a write lock and automatically all the calls become their unsafe versions; all direct calls to unsafe version is eliminated * remove worker_is_idle() from the exit of service functions, because we lose the lock time between loops * rewritten dictionary to have 2 separate locks, one for indexing and another for traversal * Update collectors/cgroups.plugin/sys_fs_cgroup.c Co-authored-by: Vladimir Kobal <vlad@prokk.net> * Update collectors/cgroups.plugin/sys_fs_cgroup.c Co-authored-by: Vladimir Kobal <vlad@prokk.net> * Update collectors/proc.plugin/proc_net_dev.c Co-authored-by: Vladimir Kobal <vlad@prokk.net> * fix memory leak in rrdset cache_dir * minor dictionary changes * dont use index locks in single threaded * obsolete dict option * rrddim options and flags separation; rrdset_done() optimization to keep array of reference pointers to rrddim; * fix jump on uninitialized value in dictionary; remove double free of cache_dir * addressed codacy findings * removed debugging code * use the private refcount on dictionaries * make dictionary item desctructors work on dictionary destruction; strictier control on dictionary API; proper cleanup sequence on rrddim; * more dictionary statistics * global statistics about dictionary operations, memory, items, callbacks * dictionary support for views - missing the public API * removed warning about unused parameter * chart and context name for cloud * chart and context name for cloud, again * dictionary statistics fixed; first implementation of dictionary views - not currently used * only the master can globally delete an item * context needs netdata prefix * fix context and chart it of spins * fix for host variables when health is not enabled * run garbage collector on item insert too * Fix info message; remove extra "using" * update dict unittest for new placement of garbage collector * we need RRDHOST->rrdvars for maintaining custom host variables * Health initialization needs the host->host_uuid * split STRING to its own files; no code changes other than that * initialize health unconditionally * unit tests do not pollute the global scope with their variables * Skip initialization when creating archived hosts on startup. When a child connects it will initialize properly Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com> Co-authored-by: Vladimir Kobal <vlad@prokk.net>
572 lines
19 KiB
C
572 lines
19 KiB
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "plugin_proc.h"
|
|
|
|
#include <sys/sem.h>
|
|
#include <sys/msg.h>
|
|
#include <sys/shm.h>
|
|
|
|
|
|
#ifndef SEMVMX
|
|
#define SEMVMX 32767 /* <= 32767 semaphore maximum value */
|
|
#endif
|
|
|
|
/* Some versions of libc only define IPC_INFO when __USE_GNU is defined. */
|
|
#ifndef IPC_INFO
|
|
#define IPC_INFO 3
|
|
#endif
|
|
|
|
struct ipc_limits {
|
|
uint64_t shmmni; /* max number of segments */
|
|
uint64_t shmmax; /* max segment size */
|
|
uint64_t shmall; /* max total shared memory */
|
|
uint64_t shmmin; /* min segment size */
|
|
|
|
int semmni; /* max number of arrays */
|
|
int semmsl; /* max semaphores per array */
|
|
int semmns; /* max semaphores system wide */
|
|
int semopm; /* max ops per semop call */
|
|
unsigned int semvmx; /* semaphore max value (constant) */
|
|
|
|
int msgmni; /* max queues system wide */
|
|
size_t msgmax; /* max size of message */
|
|
int msgmnb; /* default max size of queue */
|
|
};
|
|
|
|
struct ipc_status {
|
|
int semusz; /* current number of arrays */
|
|
int semaem; /* current semaphores system wide */
|
|
};
|
|
|
|
/*
|
|
* The last arg of semctl is a union semun, but where is it defined? X/OPEN
|
|
* tells us to define it ourselves, but until recently Linux include files
|
|
* would also define it.
|
|
*/
|
|
#ifndef HAVE_UNION_SEMUN
|
|
/* according to X/OPEN we have to define it ourselves */
|
|
union semun {
|
|
int val;
|
|
struct semid_ds *buf;
|
|
unsigned short int *array;
|
|
struct seminfo *__buf;
|
|
};
|
|
#endif
|
|
|
|
struct message_queue {
|
|
unsigned long long id;
|
|
int found;
|
|
|
|
RRDDIM *rd_messages;
|
|
RRDDIM *rd_bytes;
|
|
unsigned long long messages;
|
|
unsigned long long bytes;
|
|
|
|
struct message_queue * next;
|
|
};
|
|
|
|
struct shm_stats {
|
|
unsigned long long segments;
|
|
unsigned long long bytes;
|
|
};
|
|
|
|
static inline int ipc_sem_get_limits(struct ipc_limits *lim) {
|
|
static procfile *ff = NULL;
|
|
static int error_shown = 0;
|
|
static char filename[FILENAME_MAX + 1] = "";
|
|
|
|
if(unlikely(!filename[0]))
|
|
snprintfz(filename, FILENAME_MAX, "%s/proc/sys/kernel/sem", netdata_configured_host_prefix);
|
|
|
|
if(unlikely(!ff)) {
|
|
ff = procfile_open(filename, NULL, PROCFILE_FLAG_DEFAULT);
|
|
if(unlikely(!ff)) {
|
|
if(unlikely(!error_shown)) {
|
|
error("IPC: Cannot open file '%s'.", filename);
|
|
error_shown = 1;
|
|
}
|
|
goto ipc;
|
|
}
|
|
}
|
|
|
|
ff = procfile_readall(ff);
|
|
if(unlikely(!ff)) {
|
|
if(unlikely(!error_shown)) {
|
|
error("IPC: Cannot read file '%s'.", filename);
|
|
error_shown = 1;
|
|
}
|
|
goto ipc;
|
|
}
|
|
|
|
if(procfile_lines(ff) >= 1 && procfile_linewords(ff, 0) >= 4) {
|
|
lim->semvmx = SEMVMX;
|
|
lim->semmsl = str2i(procfile_lineword(ff, 0, 0));
|
|
lim->semmns = str2i(procfile_lineword(ff, 0, 1));
|
|
lim->semopm = str2i(procfile_lineword(ff, 0, 2));
|
|
lim->semmni = str2i(procfile_lineword(ff, 0, 3));
|
|
return 0;
|
|
}
|
|
else {
|
|
if(unlikely(!error_shown)) {
|
|
error("IPC: Invalid content in file '%s'.", filename);
|
|
error_shown = 1;
|
|
}
|
|
goto ipc;
|
|
}
|
|
|
|
ipc:
|
|
// cannot do it from the file
|
|
// query IPC
|
|
{
|
|
struct seminfo seminfo = {.semmni = 0};
|
|
union semun arg = {.array = (ushort *) &seminfo};
|
|
|
|
if(unlikely(semctl(0, 0, IPC_INFO, arg) < 0)) {
|
|
error("IPC: Failed to read '%s' and request IPC_INFO with semctl().", filename);
|
|
goto error;
|
|
}
|
|
|
|
lim->semvmx = SEMVMX;
|
|
lim->semmni = seminfo.semmni;
|
|
lim->semmsl = seminfo.semmsl;
|
|
lim->semmns = seminfo.semmns;
|
|
lim->semopm = seminfo.semopm;
|
|
return 0;
|
|
}
|
|
|
|
error:
|
|
lim->semvmx = 0;
|
|
lim->semmni = 0;
|
|
lim->semmsl = 0;
|
|
lim->semmns = 0;
|
|
lim->semopm = 0;
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
printf ("------ Semaphore Limits --------\n");
|
|
printf ("max number of arrays = %d\n", limits.semmni);
|
|
printf ("max semaphores per array = %d\n", limits.semmsl);
|
|
printf ("max semaphores system wide = %d\n", limits.semmns);
|
|
printf ("max ops per semop call = %d\n", limits.semopm);
|
|
printf ("semaphore max value = %u\n", limits.semvmx);
|
|
|
|
printf ("------ Semaphore Status --------\n");
|
|
printf ("used arrays = %d\n", status.semusz);
|
|
printf ("allocated semaphores = %d\n", status.semaem);
|
|
*/
|
|
|
|
static inline int ipc_sem_get_status(struct ipc_status *st) {
|
|
struct seminfo seminfo;
|
|
union semun arg;
|
|
|
|
arg.array = (ushort *) (void *) &seminfo;
|
|
|
|
if(unlikely(semctl (0, 0, SEM_INFO, arg) < 0)) {
|
|
/* kernel not configured for semaphores */
|
|
static int error_shown = 0;
|
|
if(unlikely(!error_shown)) {
|
|
error("IPC: kernel is not configured for semaphores");
|
|
error_shown = 1;
|
|
}
|
|
st->semusz = 0;
|
|
st->semaem = 0;
|
|
return -1;
|
|
}
|
|
|
|
st->semusz = seminfo.semusz;
|
|
st->semaem = seminfo.semaem;
|
|
return 0;
|
|
}
|
|
|
|
int ipc_msq_get_info(char *msg_filename, struct message_queue **message_queue_root) {
|
|
static procfile *ff;
|
|
struct message_queue *msq;
|
|
|
|
if(unlikely(!ff)) {
|
|
ff = procfile_open(msg_filename, " \t:", PROCFILE_FLAG_DEFAULT);
|
|
if(unlikely(!ff)) return 1;
|
|
}
|
|
|
|
ff = procfile_readall(ff);
|
|
if(unlikely(!ff)) return 1;
|
|
|
|
size_t lines = procfile_lines(ff);
|
|
size_t words = 0;
|
|
|
|
if(unlikely(lines < 2)) {
|
|
error("Cannot read %s. Expected 2 or more lines, read %zu.", ff->filename, lines);
|
|
return 1;
|
|
}
|
|
|
|
// loop through all lines except the first and the last ones
|
|
size_t l;
|
|
for(l = 1; l < lines - 1; l++) {
|
|
words = procfile_linewords(ff, l);
|
|
if(unlikely(words < 2)) continue;
|
|
if(unlikely(words < 14)) {
|
|
error("Cannot read %s line. Expected 14 params, read %zu.", ff->filename, words);
|
|
continue;
|
|
}
|
|
|
|
// find the id in the linked list or create a new structure
|
|
int found = 0;
|
|
|
|
unsigned long long id = str2ull(procfile_lineword(ff, l, 1));
|
|
for(msq = *message_queue_root; msq ; msq = msq->next) {
|
|
if(unlikely(id == msq->id)) {
|
|
found = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(unlikely(!found)) {
|
|
msq = callocz(1, sizeof(struct message_queue));
|
|
msq->next = *message_queue_root;
|
|
*message_queue_root = msq;
|
|
msq->id = id;
|
|
}
|
|
|
|
msq->messages = str2ull(procfile_lineword(ff, l, 4));
|
|
msq->bytes = str2ull(procfile_lineword(ff, l, 3));
|
|
msq->found = 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ipc_shm_get_info(char *shm_filename, struct shm_stats *shm) {
|
|
static procfile *ff;
|
|
|
|
if(unlikely(!ff)) {
|
|
ff = procfile_open(shm_filename, " \t:", PROCFILE_FLAG_DEFAULT);
|
|
if(unlikely(!ff)) return 1;
|
|
}
|
|
|
|
ff = procfile_readall(ff);
|
|
if(unlikely(!ff)) return 1;
|
|
|
|
size_t lines = procfile_lines(ff);
|
|
size_t words = 0;
|
|
|
|
if(unlikely(lines < 2)) {
|
|
error("Cannot read %s. Expected 2 or more lines, read %zu.", ff->filename, lines);
|
|
return 1;
|
|
}
|
|
|
|
shm->segments = 0;
|
|
shm->bytes = 0;
|
|
|
|
// loop through all lines except the first and the last ones
|
|
size_t l;
|
|
for(l = 1; l < lines - 1; l++) {
|
|
words = procfile_linewords(ff, l);
|
|
if(unlikely(words < 2)) continue;
|
|
if(unlikely(words < 16)) {
|
|
error("Cannot read %s line. Expected 16 params, read %zu.", ff->filename, words);
|
|
continue;
|
|
}
|
|
|
|
shm->segments++;
|
|
shm->bytes += str2ull(procfile_lineword(ff, l, 3));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int do_ipc(int update_every, usec_t dt) {
|
|
(void)dt;
|
|
|
|
static int do_sem = -1, do_msg = -1, do_shm = -1;
|
|
static int read_limits_next = -1;
|
|
static struct ipc_limits limits;
|
|
static struct ipc_status status;
|
|
static const RRDVAR_ACQUIRED *arrays_max = NULL, *semaphores_max = NULL;
|
|
static RRDSET *st_semaphores = NULL, *st_arrays = NULL;
|
|
static RRDDIM *rd_semaphores = NULL, *rd_arrays = NULL;
|
|
static char *msg_filename = NULL;
|
|
static struct message_queue *message_queue_root = NULL;
|
|
static long long dimensions_limit;
|
|
static char *shm_filename = NULL;
|
|
|
|
if(unlikely(do_sem == -1)) {
|
|
do_msg = config_get_boolean("plugin:proc:ipc", "message queues", CONFIG_BOOLEAN_YES);
|
|
do_sem = config_get_boolean("plugin:proc:ipc", "semaphore totals", CONFIG_BOOLEAN_YES);
|
|
do_shm = config_get_boolean("plugin:proc:ipc", "shared memory totals", CONFIG_BOOLEAN_YES);
|
|
|
|
char filename[FILENAME_MAX + 1];
|
|
|
|
snprintfz(filename, FILENAME_MAX, "%s%s", netdata_configured_host_prefix, "/proc/sysvipc/msg");
|
|
msg_filename = config_get("plugin:proc:ipc", "msg filename to monitor", filename);
|
|
|
|
snprintfz(filename, FILENAME_MAX, "%s%s", netdata_configured_host_prefix, "/proc/sysvipc/shm");
|
|
shm_filename = config_get("plugin:proc:ipc", "shm filename to monitor", filename);
|
|
|
|
dimensions_limit = config_get_number("plugin:proc:ipc", "max dimensions in memory allowed", 50);
|
|
|
|
// make sure it works
|
|
if(ipc_sem_get_limits(&limits) == -1) {
|
|
error("unable to fetch semaphore limits");
|
|
do_sem = CONFIG_BOOLEAN_NO;
|
|
}
|
|
else if(ipc_sem_get_status(&status) == -1) {
|
|
error("unable to fetch semaphore statistics");
|
|
do_sem = CONFIG_BOOLEAN_NO;
|
|
}
|
|
else {
|
|
// create the charts
|
|
if(unlikely(!st_semaphores)) {
|
|
st_semaphores = rrdset_create_localhost(
|
|
"system"
|
|
, "ipc_semaphores"
|
|
, NULL
|
|
, "ipc semaphores"
|
|
, NULL
|
|
, "IPC Semaphores"
|
|
, "semaphores"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_SEMAPHORES
|
|
, localhost->rrd_update_every
|
|
, RRDSET_TYPE_AREA
|
|
);
|
|
rd_semaphores = rrddim_add(st_semaphores, "semaphores", NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
}
|
|
|
|
if(unlikely(!st_arrays)) {
|
|
st_arrays = rrdset_create_localhost(
|
|
"system"
|
|
, "ipc_semaphore_arrays"
|
|
, NULL
|
|
, "ipc semaphores"
|
|
, NULL
|
|
, "IPC Semaphore Arrays"
|
|
, "arrays"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_SEM_ARRAYS
|
|
, localhost->rrd_update_every
|
|
, RRDSET_TYPE_AREA
|
|
);
|
|
rd_arrays = rrddim_add(st_arrays, "arrays", NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
}
|
|
|
|
// variables
|
|
semaphores_max = rrdvar_custom_host_variable_add_and_acquire(localhost, "ipc_semaphores_max");
|
|
arrays_max = rrdvar_custom_host_variable_add_and_acquire(localhost, "ipc_semaphores_arrays_max");
|
|
}
|
|
|
|
struct stat stbuf;
|
|
if (stat(msg_filename, &stbuf)) {
|
|
do_msg = CONFIG_BOOLEAN_NO;
|
|
}
|
|
|
|
if(unlikely(do_sem == CONFIG_BOOLEAN_NO && do_msg == CONFIG_BOOLEAN_NO)) {
|
|
error("ipc module disabled");
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if(likely(do_sem != CONFIG_BOOLEAN_NO)) {
|
|
if(unlikely(read_limits_next < 0)) {
|
|
if(unlikely(ipc_sem_get_limits(&limits) == -1)) {
|
|
error("Unable to fetch semaphore limits.");
|
|
}
|
|
else {
|
|
if(semaphores_max) rrdvar_custom_host_variable_set(localhost, semaphores_max, limits.semmns);
|
|
if(arrays_max) rrdvar_custom_host_variable_set(localhost, arrays_max, limits.semmni);
|
|
|
|
st_arrays->red = limits.semmni;
|
|
st_semaphores->red = limits.semmns;
|
|
|
|
read_limits_next = 60 / update_every;
|
|
}
|
|
}
|
|
else
|
|
read_limits_next--;
|
|
|
|
if(unlikely(ipc_sem_get_status(&status) == -1)) {
|
|
error("Unable to get semaphore statistics");
|
|
return 0;
|
|
}
|
|
|
|
if(st_semaphores->counter_done) rrdset_next(st_semaphores);
|
|
rrddim_set_by_pointer(st_semaphores, rd_semaphores, status.semaem);
|
|
rrdset_done(st_semaphores);
|
|
|
|
if(st_arrays->counter_done) rrdset_next(st_arrays);
|
|
rrddim_set_by_pointer(st_arrays, rd_arrays, status.semusz);
|
|
rrdset_done(st_arrays);
|
|
}
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
if(likely(do_msg != CONFIG_BOOLEAN_NO)) {
|
|
static RRDSET *st_msq_messages = NULL, *st_msq_bytes = NULL;
|
|
|
|
int ret = ipc_msq_get_info(msg_filename, &message_queue_root);
|
|
|
|
if(!ret && message_queue_root) {
|
|
if(unlikely(!st_msq_messages))
|
|
st_msq_messages = rrdset_create_localhost(
|
|
"system"
|
|
, "message_queue_messages"
|
|
, NULL
|
|
, "ipc message queues"
|
|
, NULL
|
|
, "IPC Message Queue Number of Messages"
|
|
, "messages"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_MSQ_MESSAGES
|
|
, update_every
|
|
, RRDSET_TYPE_STACKED
|
|
);
|
|
else
|
|
rrdset_next(st_msq_messages);
|
|
|
|
if(unlikely(!st_msq_bytes))
|
|
st_msq_bytes = rrdset_create_localhost(
|
|
"system"
|
|
, "message_queue_bytes"
|
|
, NULL
|
|
, "ipc message queues"
|
|
, NULL
|
|
, "IPC Message Queue Used Bytes"
|
|
, "bytes"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_MSQ_SIZE
|
|
, update_every
|
|
, RRDSET_TYPE_STACKED
|
|
);
|
|
else
|
|
rrdset_next(st_msq_bytes);
|
|
|
|
struct message_queue *msq = message_queue_root, *msq_prev = NULL;
|
|
while(likely(msq)){
|
|
if(likely(msq->found)) {
|
|
if(unlikely(!msq->rd_messages || !msq->rd_bytes)) {
|
|
char id[RRD_ID_LENGTH_MAX + 1];
|
|
snprintfz(id, RRD_ID_LENGTH_MAX, "%llu", msq->id);
|
|
if(likely(!msq->rd_messages)) msq->rd_messages = rrddim_add(st_msq_messages, id, NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
if(likely(!msq->rd_bytes)) msq->rd_bytes = rrddim_add(st_msq_bytes, id, NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
}
|
|
|
|
rrddim_set_by_pointer(st_msq_messages, msq->rd_messages, msq->messages);
|
|
rrddim_set_by_pointer(st_msq_bytes, msq->rd_bytes, msq->bytes);
|
|
|
|
msq->found = 0;
|
|
}
|
|
else {
|
|
rrddim_is_obsolete(st_msq_messages, msq->rd_messages);
|
|
rrddim_is_obsolete(st_msq_bytes, msq->rd_bytes);
|
|
|
|
// remove message queue from the linked list
|
|
if(!msq_prev)
|
|
message_queue_root = msq->next;
|
|
else
|
|
msq_prev->next = msq->next;
|
|
freez(msq);
|
|
msq = NULL;
|
|
}
|
|
if(likely(msq)) {
|
|
msq_prev = msq;
|
|
msq = msq->next;
|
|
}
|
|
else if(!msq_prev)
|
|
msq = message_queue_root;
|
|
else
|
|
msq = msq_prev->next;
|
|
}
|
|
|
|
rrdset_done(st_msq_messages);
|
|
rrdset_done(st_msq_bytes);
|
|
|
|
long long dimensions_num = rrdset_number_of_dimensions(st_msq_messages);
|
|
|
|
if(unlikely(dimensions_num > dimensions_limit)) {
|
|
info("Message queue statistics has been disabled");
|
|
info("There are %lld dimensions in memory but limit was set to %lld", dimensions_num, dimensions_limit);
|
|
rrdset_is_obsolete(st_msq_messages);
|
|
rrdset_is_obsolete(st_msq_bytes);
|
|
st_msq_messages = NULL;
|
|
st_msq_bytes = NULL;
|
|
do_msg = CONFIG_BOOLEAN_NO;
|
|
}
|
|
else if(unlikely(!message_queue_root)) {
|
|
info("Making chart %s (%s) obsolete since it does not have any dimensions", rrdset_name(st_msq_messages), rrdset_id(st_msq_messages));
|
|
rrdset_is_obsolete(st_msq_messages);
|
|
st_msq_messages = NULL;
|
|
|
|
info("Making chart %s (%s) obsolete since it does not have any dimensions", rrdset_name(st_msq_bytes), rrdset_id(st_msq_bytes));
|
|
rrdset_is_obsolete(st_msq_bytes);
|
|
st_msq_bytes = NULL;
|
|
}
|
|
}
|
|
}
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
if(likely(do_shm != CONFIG_BOOLEAN_NO)) {
|
|
static RRDSET *st_shm_segments = NULL, *st_shm_bytes = NULL;
|
|
static RRDDIM *rd_shm_segments = NULL, *rd_shm_bytes = NULL;
|
|
struct shm_stats shm;
|
|
|
|
if(!ipc_shm_get_info(shm_filename, &shm)) {
|
|
if(unlikely(!st_shm_segments)) {
|
|
st_shm_segments = rrdset_create_localhost(
|
|
"system"
|
|
, "shared_memory_segments"
|
|
, NULL
|
|
, "ipc shared memory"
|
|
, NULL
|
|
, "IPC Shared Memory Number of Segments"
|
|
, "segments"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_SHARED_MEM_SEGS
|
|
, update_every
|
|
, RRDSET_TYPE_STACKED
|
|
);
|
|
|
|
rd_shm_segments = rrddim_add(st_shm_segments, "segments", NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
}
|
|
else
|
|
rrdset_next(st_shm_segments);
|
|
|
|
rrddim_set_by_pointer(st_shm_segments, rd_shm_segments, shm.segments);
|
|
|
|
rrdset_done(st_shm_segments);
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
if(unlikely(!st_shm_bytes)) {
|
|
st_shm_bytes = rrdset_create_localhost(
|
|
"system"
|
|
, "shared_memory_bytes"
|
|
, NULL
|
|
, "ipc shared memory"
|
|
, NULL
|
|
, "IPC Shared Memory Used Bytes"
|
|
, "bytes"
|
|
, PLUGIN_PROC_NAME
|
|
, "ipc"
|
|
, NETDATA_CHART_PRIO_SYSTEM_IPC_SHARED_MEM_SIZE
|
|
, update_every
|
|
, RRDSET_TYPE_STACKED
|
|
);
|
|
|
|
rd_shm_bytes = rrddim_add(st_shm_bytes, "bytes", NULL, 1, 1, RRD_ALGORITHM_ABSOLUTE);
|
|
}
|
|
else
|
|
rrdset_next(st_shm_bytes);
|
|
|
|
rrddim_set_by_pointer(st_shm_bytes, rd_shm_bytes, shm.bytes);
|
|
|
|
rrdset_done(st_shm_bytes);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|