Source
zabbix_log(LOG_LEVEL_DEBUG, "End of %s() extended diskstat shared memory: old_max:%d new_max:%d old_size:"
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/* defined in sysinfo lib */
static zbx_collector_data *collector = NULL;
int cpu_collector_started(void)
{
return ((NULL != collector) && (NULL != collector->cpus.queue_counter));
/* not _WINDOWS */
return (NULL != collector);
}
zbx_collector_data *get_collector(void)
{
return collector;
}
int diskdevice_collector_started(void)
{
return ((NULL != collector) && (ZBX_NONEXISTENT_SHMID != collector->diskstat_shmid));
}
static int shm_id;
static int my_diskstat_shmid = ZBX_NONEXISTENT_SHMID;
static zbx_diskdevices_data *diskdevices = NULL;
zbx_diskdevices_data *get_diskdevices(void)
{