blob: cdcd5633a71771399895e619732c4f85d9eac8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
********
lookup()
********
Purpose
=======
lookup(table_name_literal_string, key)
Lookup tables are a powerful construct to obtain *class* information based
on message content. It works on top of a data-file which maps key (to be looked
up) to value (the result of lookup).
The idea is to use a message properties (or derivatives of it) as an index
into a table which then returns another value. For example, $fromhost-ip
could be used as an index, with the table value representing the type of
server or the department or remote office it is located in.
**Read more about it here** :doc:`Lookup Tables<../../configuration/lookup_tables>`
Example
=======
In the following example the hostname is looked up in the given table and
the corresponding value is returned.
.. code-block:: none
lookup_table(name="host_bu" file="/var/lib/host_billing_unit_mapping.json")
set $.bu = lookup("host_bu", $hostname);
|