There is a working template for monitoring LSA Raid on ESXi 6.7 with Storcli using SSH in zabbix.
Due to the fact that Storcli64 is already used for ESXi 8, the answers of storcli64 are different.
For example,
Storcli response:
and Storcli64 response:
As you can see, nothing much has changed, except that instead of quotation marks in storсli, storсli64 now writes "
But the template is configured to process Storcli with quotation marks.
Can anyone help me on how to quickly reconfigure processing in the template for Storcli64?
Maybe any other simple ideas for monitoring LSI RAID on ESXI 8.0 ?
Due to the fact that Storcli64 is already used for ESXi 8, the answers of storcli64 are different.
For example,
Storcli response:
Code:
opt/lsi/storcli/storcli /c0/bbu show all j
{
"Controllers":[
{
"Command Status" : {
"CLI Version" : "007.2202.0000.0000 Mar 14, 2022",
"Operating system" : "VMkernel 6.5.0",
"Controller" : 0,
"Status" : "Failure",
"Description" : "None",
"Detailed Status" : [
{
"Ctrl" : 0,
"Status" : "Failed",
"Property" : "-",
"ErrMsg" : "use /cx/cv",
"ErrCd" : 255
}
]
}
}
]
}
Code:
/opt/storcli/bin/storcli64 /c0/bbu show all j
<?xml version="1.0"?><output xmlns:esxcli="storcli">
<list type="string">
<string>
{
"Controllers":[
{
"Command Status" : {
"CLI Version" : "007.2807.0000.0000 Dec 22, 2023",
"Operating system" : "VMkernel 8.0.2",
"Controller" : 0,
"Status" : "Failure",
"Description" : "None",
"Detailed Status" : [
{
"Ctrl" : 0,
"Status" : "Failed",
"Property" : "-",
"ErrMsg" : "Battery is absent!",
"ErrCd" : 34
}
]
}
}
]
}
But the template is configured to process Storcli with quotation marks.
Can anyone help me on how to quickly reconfigure processing in the template for Storcli64?
Maybe any other simple ideas for monitoring LSI RAID on ESXI 8.0 ?
Comment