Ad Widget

Collapse

List of modification - my wish list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pgin
    Junior Member
    • Sep 2014
    • 13

    #1

    List of modification - my wish list

    Adding GIS (geographic) map using google map api. We have google map enterprise license and location of our equipements. Would be useful to seen them as well as their state on the map.

    I have tried a patch called extra2 from Bresilian guys. It made my setup crashed, I guess it was designed for an older version of Zabbix. Fortunately, I had a backup.
    Also, I know that some peoples have created something which seems interresting. Unfortunately, all the discussion is in russian. I am not able to figure out for which versions it was designed.

    We are currently running Zabbix 2.4.3 on Ubuntu 14.04. In the future, we will run on Centos 7 or RedHat. We have to choose between Pandora FMS and Zabbix, it is not obvious. In both cases, we will have to directly access the database.
    Last edited by pgin; 18-03-2015, 14:05. Reason: Too many unrelated items in a single post.
  • aib
    Senior Member
    • Jan 2014
    • 1615

    #2
    Originally posted by pgin
    2. Adding GIS (geographic) map using google map api. We have google map enterprise license and location of our equipements. Would be useful to seen them as well as their state on the map.
    Check this link
    GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.

    and full thread

    MAP project started four month ago and now it has a lot of sweet features.

    3. Items : Been able to sample data at a slower interval than 1 day, like a week by example.
    I assume you know that you can use longer Update interval:
    86400 sec = 1 day
    604800 sec = 1 week
    2592000 sec = 1 month
    Sincerely yours,
    Aleksey

    Comment

    • pgin
      Junior Member
      • Sep 2014
      • 13

      #3
      3. update interval

      In templates->items, the update interval cannot be bigger than 86400 sec.

      I am using Zabbix 2.4.3 on Ubuntu 14.04.

      Regards,

      Pierre

      Comment

      • aib
        Senior Member
        • Jan 2014
        • 1615

        #4
        You right, I didn't use intervals longer than 86400 before.
        If I enter anything higher than 86400, I get an error message
        Code:
        ##Incorrect value "99999" for "Update interval (in sec)" field: 
        must be between 0 and 86400.
        It's checking in items.php
        Code:
                'delay' => array(T_ZBX_INT, O_OPT, null,   BETWEEN(0, [B]SEC_PER_DAY[/B]),
                        '(isset({add}) || isset({update})) && isset({type}) && {type}!='.ITEM_TYPE_TRAPPER.' && {type}!='.ITEM_TYPE_SNMPTRAP,
                        _('Update interval (in sec)')),
        The value SEC_PER_DAY default defined in
        Code:
        include/defines.inc.php:define('SEC_PER_DAY',   86400);
        And I don't know what happens if you change it.

        One more thing - when you use Trapper, the Update interval is not checking and you can send data to Zabbix server as rarely(seldom/infrequently) as you need.
        Last edited by aib; 11-03-2015, 17:06.
        Sincerely yours,
        Aleksey

        Comment

        Working...