Ad Widget

Collapse

data.sql

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • geowal
    Junior Member
    • Jun 2006
    • 2

    #1

    data.sql

    Halo,

    i installed, zabbix-1.1 because i wan´t use the new items like net.if.in[if <,mode>], but they aren´t in the database for zabbix-1.1.

    Where can i find the data.sql which fit to zabbix-1.1????

    Greetings
    Georg
  • erisan500
    Senior Member
    Zabbix Certified Specialist
    • Aug 2005
    • 285

    #2
    /path-where-you-untarred-zabbix/create/data/data.sql

    Greetings
    EriSan
    Zabbix Certified Specialist

    Comment

    • geowal
      Junior Member
      • Jun 2006
      • 2

      #3
      That data.sql has the old items included, not the new ones, I need.

      INSERT INTO items VALUES (10072,0,'','',161,10001,'Incoming traffic on interface lo (1min)','netloadin1[lo]',5,7,365,0,NULL,NULL,NULL,0,0,'','Bps',0,0,NULL
      ,'',0,'','',0,'',0,'',0,0);'netloadin1[lo]'

      Comment

      • erisan500
        Senior Member
        Zabbix Certified Specialist
        • Aug 2005
        • 285

        #4
        The new items are in the help_items table:

        Code:
        [size=1]insert into help_items values(0,'net.if.in[if &lt;,mode&gt;]','Network interfice input statistic. Integer value. If mode is missing &lt;b&gt;bytes&lt;/b&gt; is used.');
         
        insert into help_items values(0,'net.if.out[if &lt;,mode&gt;]','Network interfice output statistic. Integer value. If mode is missing &lt;b&gt;bytes&lt;/b&gt; is used.'
        [/size]
        So if you want to use them just modify your templates and all host will be updated.

        Greetings
        EriSan
        Zabbix Certified Specialist

        Comment

        Working...