Ad Widget

Collapse

vfs.fs.discovery data not shown in Zabbix Server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hwildeboer
    Junior Member
    • Sep 2014
    • 1

    #1

    vfs.fs.discovery data not shown in Zabbix Server

    Hi,

    I'm rather new to Zabbix and I'm running into this issue.
    Server is 2.2.6-1 running on RHEL6.5.
    The agent I'm running into this issue is version 2.0.12 on Ubuntu 10.04 LTS. The filesystem discovery isn't working on this agent. When debug logging is enableb I can see it is sending the filesystem data. When I run on the Zabbix server zabbix_get

    ./zabbix_get -s xxx.xxx.xxx.xxx -p 10050 -k "vfs.fs.discovery"
    {
    "data":[
    {
    "{#FSNAME}":"\/",
    "{#FSTYPE}":"simfs"},
    {
    "{#FSNAME}":"\/proc",
    "{#FSTYPE}":"proc"},
    {
    "{#FSNAME}":"\/sys",
    "{#FSTYPE}":"sysfs"},
    {
    "{#FSNAME}":"\/dev\/pts",
    "{#FSTYPE}":"devpts"},
    {
    "{#FSNAME}":"\/var\/run",
    "{#FSTYPE}":"tmpfs"},
    {
    "{#FSNAME}":"\/var\/lock",
    "{#FSTYPE}":"tmpfs"}]}

    the correct data is received.
    But it never appears as items for this agent.

    Any help would be appreciated.

    Thanks
  • pjelou
    Junior Member
    • Jan 2014
    • 8

    #2
    This helped me:
    All of the item and trigger prototypes rely on macro {#FSNAME} which is returned by the actual discovery item. This is further filtered by @File systems for discovery REGEXP. This can be found under Administration -> General -> Regular expressions.

    Comment

    Working...