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

Preprocessing parameters in the XML files should be stored as array of strings instead of LF-delimited string

XMLWordPrintable

    • Icon: Change Request Change Request
    • Resolution: Fixed
    • Icon: Trivial Trivial
    • 5.2.0rc1, 5.2 (plan)
    • 4.0.25, 5.0.4, 5.2.0beta2
    • API (A)
    • Sprint 69 (Oct 2020)
    • 1

      Now, preprocessing parameters stored in XML files as LF-delimited string. This format is very inconvenient to work with.

      An example:

      <preprocessing>
         <step>
            <type>REGEX</type>
            <params>server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)
      \1</params>
         </step>
      </preprocessing>

      I propose to store it as array of strings:

      <preprocessing>
         <step>
            <type>REGEX</type>
            <parameters>
               <parameter>server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)</parameter>
               <parameter>\1</parameter>
            </parameters>
         </step>
      </preprocessing>

            sasha Alexander Vladishev
            sasha Alexander Vladishev
            Team B
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: