Skip to content
Florian Forster edited this page Nov 26, 2023 · 1 revision

Name:

RegEx match

Type:

match

Status:

supported

FirstVersion:

4.6

Copyright:

2008 Sebastian Harl
2008 Florian octo Forster

License:

GPLv2

Manpage:

collectd.conf(5)

See also:

List of Matches

Description

The RegEx match uses regular expressions to match values using their identifier. The identifier consists of the five parts that are used to identify each value-list: Host, plugin, plugin instance, type, and type instance. You can configure one regular expression for each part – the RegEx match matches if all regular expressions match.

Synopsis

 LoadPlugin "match_regex"
 <Chain "PreCache">
   <Rule "ignore_non_fqdn">
     <Match "regex">
       Host "^[^\\.]*$"
       Invert false
     </Match>
     Target "stop"
   </Rule>
 </Chain>

The above example matches all values, where the host field does not contain at least one dot, and ignore them. This can be useful on server instances to filter out values from hosts that do not report their name as fully qualified domain name (FQDN).

Dependencies

  • none

History

The RegEx match has been available since Version-4.6.

Clone this wiki locally