summaryrefslogtreecommitdiffstats
path: root/source/configuration/modules/mmsequence.rst
blob: a35599f2197a7ae2b6ab8d52e321fbfa4885bd36 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Number generator and counter module (mmsequence)
================================================

**Module Name:    mmsequence**

**Author:**\ Pavel Levshin <pavel@levshin.spb.ru>

**Status:**\ Non project-supported module - contact author or rsyslog
mailing list for questions

**This module is deprecated** in v8 and solely provided for backward
compatibility reasons. It was written as a work-around for missing
global variable support in v7. Global variables are available in v8,
and at some point in time this module will entirely be removed.

**Do not use this module for newly crafted config files.**
Use global variables instead.


**Available since**: 7.5.6

**Description**:

This module generates numeric sequences of different kinds. It can be
used to count messages up to a limit and to number them. It can generate
random numbers in a given range.

This module is implemented via the output module interface, so it is
called just as an action. The number generated is stored in a variable.

 

**Action Parameters**:

Note: parameter names are case-insensitive.

-  **mode** "random" or "instance" or "key"

   Specifies mode of the action. In "random" mode, the module generates
   uniformly distributed integer numbers in a range defined by "from"
   and "to".

   In "instance" mode, which is default, the action produces a counter
   in range [from, to). This counter is specific to this action
   instance.

   In "key" mode, the counter can be shared between multiple instances.
   This counter is identified by a name, which is defined with "key"
   parameter.

-  **from** [non-negative integer], default "0"

   Starting value for counters and lower margin for random generator.

-  **to** [positive integer], default "INT\_MAX"

   Upper margin for all sequences. Note that this margin is not
   inclusive. When next value for a counter is equal or greater than
   this parameter, the counter resets to the starting value.

-  **step** [non-negative integer], default "1"

   Increment for counters. If step is "0", it can be used to fetch
   current value without modification. The latter not applies to
   "random" mode. This is useful in "key" mode or to get constant values
   in "instance" mode.

-  **key** [word], default ""

   Name of the global counter which is used in this action.

-  **var** [word], default "$!mmsequence"

   Name of the variable where the number will be stored. Should start
   with "$".

**Sample**:

::

    # load balance
    Ruleset(
        name="logd"
        queue.workerthreads="5"
        ){

        Action(
            type="mmsequence"
            mode="instance"
            from="0"
            to="2"
            var="$.seq"
        )

        if $.seq == "0" then {
            Action(
                type="mmnormalize"
                userawmsg="on"
                rulebase="/etc/rsyslog.d/rules.rb"
            )
        } else {
            Action(
                type="mmnormalize"
                userawmsg="on"
                rulebase="/etc/rsyslog.d/rules.rb"
            )
        }

        # output logic here
    }
        # generate random numbers
        action(
            type="mmsequence"
            mode="random"
            to="100"
            var="$!rndz"
        )
        # count from 0 to 99
        action(
            type="mmsequence"
            mode="instance"
            to="100"
            var="$!cnt1"
        )
        # the same as before but the counter is global
        action(
            type="mmsequence"
            mode="key"
            key="key1"
            to="100"
            var="$!cnt2"
        )
        # count specific messages but place the counter in every message
        if $msg contains "txt" then
            action(
                type="mmsequence"
                mode="key"
                to="100"
                var="$!cnt3"
            )
        else
            action(
                type="mmsequence"
                mode="key"
                to="100"
                step="0"
                var="$!cnt3"
                key=""
            )

**Legacy Configuration Parameters**:

Note: parameter names are case-insensitive.

Not supported.