static int execute_str_local(const char *command, AGENT_RESULT *result, const char* dir, int timeout)
#include "zbxsysinfo_common.h"
#include "zabbix_stats.h"
# define VFS_TEST_FILE "/etc/passwd"
# define VFS_TEST_REGEXP "root"
# define VFS_TEST_DIR "/var/log"
# define VFS_TEST_FILE "c:\\windows\\win.ini"
# define VFS_TEST_REGEXP "fonts"
# define VFS_TEST_DIR "c:\\windows"
static int only_active(AGENT_REQUEST *request, AGENT_RESULT *result);
static int system_run(AGENT_REQUEST *request, AGENT_RESULT *result);
static int system_run_no_remote(AGENT_REQUEST *request, AGENT_RESULT *result);
static zbx_metric_t parameters_common_local[] =
{"system.run", CF_HAVEPARAMS, system_run_no_remote, "echo test"},
zbx_metric_t *get_parameters_common_local(void)
return ¶meters_common_local[0];
static zbx_metric_t parameters_common[] =
{"system.localtime", CF_HAVEPARAMS, system_localtime, "utc"},
{"system.run", CF_HAVEPARAMS, system_run, "echo test"},
{"vfs.file.size", CF_HAVEPARAMS, vfs_file_size, VFS_TEST_FILE},
{"vfs.file.time", CF_HAVEPARAMS, vfs_file_time, VFS_TEST_FILE ",modify"},
{"vfs.file.exists", CF_HAVEPARAMS, vfs_file_exists, VFS_TEST_FILE},
{"vfs.file.contents", CF_HAVEPARAMS, vfs_file_contents, VFS_TEST_FILE},