Hi,
Just started to use Zabbix coming from Nagios, is there a way of finding out in the Inventory the OS Version ? Or OS Full version ?
I would like to know which version of Linux is running
Host Group OS
xxx-xxx Linux Linux version 6.5.0-3-amd64
What I would like to see is the version of Linux
cat /etc/os-release | grep VERSION
VERSION_CODENAME=trixie
Would I need to create a new ITEM and how do I assign the NEW ITEM to all machines ?
Also If a server needs a reboot I normally run this script
#!/bin/bash
if [ -f /var/run/reboot-required ]; then
echo 'reboot required'
fi
Thanks if you can help me
Michael
Just started to use Zabbix coming from Nagios, is there a way of finding out in the Inventory the OS Version ? Or OS Full version ?
I would like to know which version of Linux is running
Host Group OS
xxx-xxx Linux Linux version 6.5.0-3-amd64
What I would like to see is the version of Linux
cat /etc/os-release | grep VERSION
VERSION_CODENAME=trixie
Would I need to create a new ITEM and how do I assign the NEW ITEM to all machines ?
Also If a server needs a reboot I normally run this script
#!/bin/bash
if [ -f /var/run/reboot-required ]; then
echo 'reboot required'
fi
Thanks if you can help me
Michael

Comment