Uploaded image for project: 'ZABBIX FEATURE REQUESTS'
  1. ZABBIX FEATURE REQUESTS
  2. ZBXNEXT-4258

Option to limit for Global notifications

XMLWordPrintable

    • Icon: Change Request Change Request
    • Resolution: Unresolved
    • Icon: Trivial Trivial
    • None
    • 3.4.4
    • Frontend (F)
    • None

      Currently, more than 15 triggers are not displayed. The upper limit is hard-coded.
      I believe that we should create an option to set this limit. (like defines.inc.php or USER PROFILE:Messaging)

      If you change a fixed PHP/JS source, notice that more than triggers are displayed.

      /usr/share/zabbix/js/class.cmessages.js
      
      < pipeLength: 100, // how many messages to show
      —
      > pipeLength: 15, // how many messages to show
      
      /usr/share/zabbix/jsrpc.php
      
      < 'triggerLimit' => 100
      —
      > 'triggerLimit' => 15
      
      < if (count($usedTriggers) < 100) {
      —
      > if (count($usedTriggers) < 15) {
      

      There was no problem with 100 displays.

            vmurzins Valdis Murzins
            JKKim Kim Jongkwon
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: