Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this release, filters cannot be edited or deleted using the GUI. To modify or delete a filter, access the /varconf/filtersEventGUIFilters.json file file, which stores the saved filters.

The JSON file has the following structure (note that the "groups" field has no impact on the filters in the current release):

Code Block
titlefiltersEventGUIFilters.json
{
   "filters" : [
      {
         "fields" : {
            "priority" : 1,
            "node" : "iregex:check"
         },
         "name" : "Filter2",
         "groups" : [
            "network"
         ]
      },
      {
         "fields" : {
            "node" : "iregex:check",
            "priority" : "1"
         },
         "groups" : [
            "network"
         ],
         "name" : "Filter1"
      },
      {
         "groups" : [
            "network"
         ],
         "name" : "Filter3",
         "fields" : {
            "node" : "iregex:check-thor",
            "priority" : "3"
         }
      },
      {
         "fields" : {
            "node" : "iregex:check-thor-fulla",
            "priority" : "4"
         },
         "name" : "Filter4",
         "groups" : [
            "network"
         ]
      }
   ]
}

...