Ad Widget

Collapse

Zabbix Screens issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vrtareg
    Senior Member
    • May 2006
    • 293

    #1

    Zabbix Screens issue

    Hi

    I have installed latest 3.0.2 with a lot of challenge and it is working now.

    Very nice look.

    Only problem that I am facing now is that my screens in full screen mode got additional row with the "All screens/..." stuff in it.

    I am not sure if there is a specific full screen mode that I can use as I am using this screen for the big screens on the wall and would like to hide them all to save space ...

    It is useless on the big screens where browser is working in full screen mode.

    So Zabbix full screen should hide it too - or some kind of super full screen?

    Regards,
    Areg
    Attached Files
  • Kpax
    Member
    • Dec 2013
    • 52

    #2
    ::RE: Zabbix Screens issue::

    Hi Areg,
    same with mine, but its does not have affect on 42" screen
    Also its good to have specially if you manage multiple screens.
    However check this location:
    Code:
    sudo vi /usr/share/zabbix/screenconf.php
    I am using 3.0.2 under Firefox F11 always done the job for me, if need more space.

    regards,
    Kpax

    Comment

    • vrtareg
      Senior Member
      • May 2006
      • 293

      #3
      Hi Kpax

      It was working quite well with all my configured screens in FF F11 mode on big screen with v2.4.7 and with new version in the full screen mode there is a huge area wasted ...

      I will try to do a code digging but it is not best way to do it.

      I will try to raise enhancement request...

      Regards,
      Areg

      Comment

      • vrtareg
        Senior Member
        • May 2006
        • 293

        #4
        I have raised enhancement just in case:

        Comment

        • StarDestroyer
          Junior Member
          • Jun 2014
          • 20

          #5
          I'm pretty sure I'm working on something similar to what you are... I want a monitor set up that jumps through a bunch of status screens. I currently have a Raspberry Pi with chromium installed on it set to run in kiosk mode and load a "Slideshow" ... this works pretty well, though not perfect. In addition to the problems you mentioned (lots of wasted space showing navigation UI) it's also not a very smooth transition between screens. Not the end of the world, but sometime I'm a bit of perfectionist .

          Anyway, I did solve the problem you mentioned by installing the User CSS Chrome app and adding in the following CSS:

          Code:
          .nav {
            display: none;
          }
          
          .header-title {
            display: none;
          }
          
          .object-group {
            display: none;
          }
          
          .filter-btn-container {
            display: none;
          }
          
          .table-forms-container .screen-table td {
            border: 1px solid lightslategray;
          }
          I could probably be more specific with my CSS so it doesn't trigger on other pages, but the only thing I'm over going to load in this instance of Chrome is this status screen.

          This actually left many of the screens a little barren... sometimes making it hard to see at a glance what the page is for (probably also a problem before, but with so much clutter in the header I think I just assumed I hadn't parsed it before the page changed). So I also went and made a PHP file called header.php and put it in the root of my web space:

          PHP Code:
          <?php
          echo "<h2 style='align:center'>".htmlentities($_GET['text'])."</h2>";
          ?>
          Then on many of my screens, I added an extra row on top with a type of URL pointing to /header.php?text=Zabbix+Performance+Graphs and spanning all of my columns.

          Comment

          • vrtareg
            Senior Member
            • May 2006
            • 293

            #6
            Hi StarDestroyer

            I am using CubieTruck 3 with Fedora on it and FF.
            In FF I got Tab Rotator addon installed which is perfectly switching between the tabs with 30sec interval.

            I will check if CSS addon exist for FF to try the same ...

            Regards,
            Areg

            Comment

            • vrtareg
              Senior Member
              • May 2006
              • 293

              #7
              Cool !!!

              Achieved same by using Stylish Addon and a bit modified CSS:

              Code:
              @-moz-document url-prefix('http://zabbix/screens.php')
                .nav {
                  display: none;
                }
              
                .header-title {
                  display: none;
                }
              
                .object-group {
                  display: none;
                }
              
                .filter-btn-container {
                  display: none;
                }
              
                .table-forms-container .screen-table td {
                  border: 1px solid lightslategray;
                }
              
              }

              Comment

              Working...