Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.19
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
munin /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
apache_accesses
5.17
KB
-rwxr-xr-x
apache_processes
6.52
KB
-rwxr-xr-x
apache_volume
5.12
KB
-rwxr-xr-x
cpu
7.3
KB
-rwxr-xr-x
df
4.26
KB
-rwxr-xr-x
df_inode
4.31
KB
-rwxr-xr-x
diskstats
34.62
KB
-rwxr-xr-x
entropy
988
B
-rwxr-xr-x
exim_mailqueue
3.12
KB
-rwxr-xr-x
exim_mailstats
5.51
KB
-rwxr-xr-x
forks
1.01
KB
-rwxr-xr-x
fw_packets
1.75
KB
-rwxr-xr-x
http_loadtime
3.22
KB
-rwxr-xr-x
if_err_eth0
3.07
KB
-rwxr-xr-x
if_err_eth1
3.07
KB
-rwxr-xr-x
if_eth0
5.78
KB
-rwxr-xr-x
if_eth1
5.78
KB
-rwxr-xr-x
interrupts
1.99
KB
-rwxr-xr-x
irqstats
4.2
KB
-rwxr-xr-x
load
2.69
KB
-rwxr-xr-x
memory
11.16
KB
-rwxr-xr-x
munin_stats
3.78
KB
-rwxr-xr-x
mysql_bytes
1.77
KB
-rwxr-xr-x
mysql_innodb
5.52
KB
-rwxr-xr-x
mysql_queries
2.59
KB
-rwxr-xr-x
mysql_slowqueries
1.5
KB
-rwxr-xr-x
mysql_threads
1.58
KB
-rwxr-xr-x
netstat
3.3
KB
-rwxr-xr-x
nfs4_client
1.24
KB
-rwxr-xr-x
open_files
1.2
KB
-rwxr-xr-x
open_inodes
1.06
KB
-rwxr-xr-x
proc_pri
1.56
KB
-rwxr-xr-x
processes
15.26
KB
-rwxr-xr-x
swap
1.24
KB
-rwxr-xr-x
threads
1.4
KB
-rwxr-xr-x
uptime
859
B
-rwxr-xr-x
users
2.46
KB
-rwxr-xr-x
vmstat
1.13
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : interrupts
#!/usr/bin/sh # -*- sh -*- : << =cut =head1 NAME interrupts - Plugin to monitor the number of interrupts and context switches on a system. =head1 CONFIGURATION No configuration =head1 AUTHOR Idea and base from Ragnar Wisløff. =head1 LICENSE GPLv2 =head1 MAGIC MARKERS #%# family=auto #%# capabilities=autoconf =cut . "$MUNIN_LIBDIR/plugins/plugin.sh" if [ "$1" = "autoconf" ]; then if [ -r /proc/stat ]; then echo yes exit 0 else echo no exit 0 fi fi # If run with the "config"-parameter, give out information on how the # graphs should look. if [ "$1" = "config" ]; then # The title of the graph echo 'graph_title Interrupts and context switches' # Arguments to "rrdtool graph". In this case, tell it that the # lower limit of the graph is '0', and that 1k=1000 (not 1024) echo 'graph_args --base 1000 -l 0' # The Y-axis label # shellcheck disable=SC2016 echo 'graph_vlabel interrupts & ctx switches / ${graph_period}' # Graph category echo 'graph_category system' # Graph information echo 'graph_info This graph shows the number of interrupts and context switches on the system. These are typically high on a busy system.' echo 'intr.info Interrupts are events that alter sequence of instructions executed by a processor. They can come from either hardware (exceptions, NMI, IRQ) or software.' echo 'ctx.info A context switch occurs when a multitasking operatings system suspends the currently running process, and starts executing another.' # The fields. "label" is used in the legend. "label" is the only # required subfield. echo 'intr.label interrupts' echo 'ctx.label context switches' # Specify type echo 'intr.type DERIVE' echo 'ctx.type DERIVE' echo 'intr.min 0' echo 'ctx.min 0' print_warning intr print_critical intr print_warning ctx print_critical ctx # Last, if run with the "config"-parameter, quit here (don't # display any data) exit 0 fi # The real work awk '$1 == "intr" { print "intr.value " $2 } $1 == "ctxt" { print "ctx.value " $2 }' /proc/stat
Close