⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
netdata
/
collectors
/
proc.plugin
/
View File Name :
proc_uptime.c
// SPDX-License-Identifier: GPL-3.0-or-later #include "plugin_proc.h" int do_proc_uptime(int update_every, usec_t dt) { (void)dt; static char *uptime_filename = NULL; if(!uptime_filename) { char filename[FILENAME_MAX + 1]; snprintfz(filename, FILENAME_MAX, "%s%s", netdata_configured_host_prefix, "/proc/uptime"); uptime_filename = config_get("plugin:proc:/proc/uptime", "filename to monitor", filename); } static RRDSET *st = NULL; static RRDDIM *rd = NULL; if(unlikely(!st)) { st = rrdset_create_localhost( "system" , "uptime" , NULL , "uptime" , NULL , "System Uptime" , "seconds" , PLUGIN_PROC_NAME , "/proc/uptime" , NETDATA_CHART_PRIO_SYSTEM_UPTIME , update_every , RRDSET_TYPE_LINE ); rd = rrddim_add(st, "uptime", NULL, 1, 1000, RRD_ALGORITHM_ABSOLUTE); } rrddim_set_by_pointer(st, rd, uptime_msec(uptime_filename)); rrdset_done(st); return 0; }