guides:reference:system_events:events_signalling
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:reference:system_events:events_signalling [2020/04/02 09:27] – jbosch | guides:reference:system_events:events_signalling [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{indexmenu_n> | ||
+ | |||
+ | ===== System Events signalling ===== | ||
+ | |||
+ | System Event Signal messages need setting-up for the environment and mostly requires the definition of the remote targets and priority. | ||
+ | |||
+ | The System Events configuration file is '' | ||
+ | |||
+ | This configuration file consists of two parts, the top section defines the events and what effect they have. The second part defines the event signal types. This article explains the second section. | ||
+ | |||
+ | The file is formatted in the Perl syntax and contains the definition of the two hashes making up the aforementioned sections. The '' | ||
+ | |||
+ | The configuration of the System Events signalling is very similar to the configuration of the Compliance signalling which uses the file '' | ||
+ | |||
+ | The system-event messages are determined by the system monitors and generally use formats similar to these examples: | ||
+ | < | ||
+ | CLEAR: Replication status - Primary db ' | ||
+ | SWITCH: Database connection - Secondary db ' | ||
+ | CLEAR: System debug mode is inactive | ||
+ | </ | ||
+ | |||
+ | Apart from the descriptive message the Event has some additional attributes which will be included in the signal if the format supports it. | ||
+ | |||
+ | |||
+ | ===== Traps ===== | ||
+ | |||
+ | An SNMP (v2) trap has the following parameters that can be configured: | ||
+ | |||
+ | * **enterprise: | ||
+ | * **specific: | ||
+ | * **varoid:** the trap's varoid | ||
+ | * **community** the trap community string | ||
+ | * **tmsg:** the system-event will create its own trap-message. Include your own message to override it. The system-event message will still be included in the trap using higher oid. | ||
+ | * **nmsaddr: | ||
+ | |||
+ | The relevant entries in the '' | ||
+ | |||
+ | < | ||
+ | # Available values: | ||
+ | # - trap | ||
+ | # - enterprise | ||
+ | # - specific | ||
+ | # - varoid | ||
+ | # - community | ||
+ | # - tmsg # optional trap-message override. use undef to use default system event messages | ||
+ | # - messages (array) | ||
+ | # - nmsaddr (array) | ||
+ | |||
+ | our $system_signals = { | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | " | ||
+ | " | ||
+ | ], | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ], | ||
+ | }, | ||
+ | # | ||
+ | # ... other signal-type definitions | ||
+ | # | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | The trap will also include additional attributes associated with the event: | ||
+ | * class | ||
+ | * state | ||
+ | * name | ||
+ | * msg_type | ||
+ | * severity | ||
+ | * user_level | ||
+ | * signal_type | ||
+ | * signal_int | ||
+ | The values for these attributes include the name in the "< | ||
+ | |||
+ | |||
+ | ===== Syslog ===== | ||
+ | |||
+ | The system-event call sends a syslog message to one or more remote syslog receivers using a configurable syslog facility and priority. | ||
+ | |||
+ | All syslog messages are assigned a ' | ||
+ | < | ||
+ | Valid ' | ||
+ | kern user mail daemon auth syslog lpr news uucp cron authpriv ftp | ||
+ | local0 local1 local2 local3 local4 local5 local6 local7 | ||
+ | |||
+ | Valid ' | ||
+ | emerg alert crit err warning notice info debug | ||
+ | </ | ||
+ | |||
+ | The format of the syslog message: | ||
+ | < | ||
+ | < | ||
+ | |||
+ | Example: | ||
+ | Mar 26 10:33:03 172.17.10.29 [devel6b] [replication_status|warning] [err]: WARNING: Replication status - Primary db ' | ||
+ | </ | ||
+ | |||
+ | The relevant entries in the '' | ||
+ | |||
+ | < | ||
+ | # - syslog | ||
+ | # - facility | ||
+ | # # one of: kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|authpriv|ftp| | ||
+ | # # local0|local1|local2|local3|local4|local5|local6|local7 | ||
+ | # - priority | ||
+ | # # one of: emerg|alert|crit|err|warning|notice|info|debug | ||
+ | # - priority_map | ||
+ | # - nmsaddr (array) | ||
+ | |||
+ | our $system_signals = { | ||
+ | ' | ||
+ | ' | ||
+ | # translate the event severity to the desired priority | ||
+ | ' | ||
+ | # ' | ||
+ | # ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | # ' | ||
+ | # ' | ||
+ | }, | ||
+ | # the default priority | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ], | ||
+ | }, | ||
+ | # | ||
+ | # ... the other signal-types | ||
+ | # | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | The ' | ||
+ | |||
+ | |||
+ | ===== Email ===== | ||
+ | |||
+ | The System-event can send an email message to one or more email-addresses. | ||
+ | |||
+ | The relevant entries in the '' | ||
+ | |||
+ | < | ||
+ | |||
+ | # - subject | ||
+ | # - mail_to | ||
+ | # # may also be space or comma separated string of mail addr | ||
+ | # - mail_from | ||
+ | # - messages (array) | ||
+ | # | ||
+ | |||
+ | our $system_signals = { | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ], | ||
+ | ' | ||
+ | # optinal lines included in the email trailer | ||
+ | ' | ||
+ | " | ||
+ | " | ||
+ | ], | ||
+ | }, | ||
+ | # | ||
+ | # ... other signal-types | ||
+ | # | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | The '' | ||
+ | |||
+ | The '' | ||
+ | |||
+ | The '' | ||
+ | |||
+ | < | ||
+ | subject format: | ||
+ | < | ||
+ | |||
+ | example subject: | ||
+ | NetYCE system event [devel6] [replication_status|warning] WARNING: Replication status - ' | ||
+ | </ | ||
+ | |||
+ | The mail body will also include additional attributes associated with the event: | ||
+ | * class | ||
+ | * state | ||
+ | * name | ||
+ | * msg | ||
+ | * msg_type | ||
+ | * severity | ||
+ | * user_level | ||
+ | * signal_type | ||
+ | * signal_int | ||
+ | The values for these attributes include the name in the "< | ||
+ | |||
+ | The mail body uses the format: | ||
+ | |||
+ | < | ||
+ | This is an automatically generated notification | ||
+ | message, please do not reply | ||
+ | ---------------------------------------- | ||
+ | |||
+ | < | ||
+ | :: | ||
+ | :: ... list of event attributes | ||
+ | :: | ||
+ | |||
+ | ---------------------------------------- | ||
+ | |||
+ | :: | ||
+ | :: ... optional trailing messages | ||
+ | :: | ||
+ | ---------------------------------------- | ||
+ | |||
+ | Issued by < | ||
+ | </ | ||
+ | |||
+ | Example: | ||
+ | < | ||
+ | This is an automatically generated notification | ||
+ | message, please do not reply. | ||
+ | ---------------------------------------- | ||
+ | |||
+ | NetYCE system event [devel6] [debug_status|active] NOTICE: System debug mode is enabled by 'Eric Yspeert' | ||
+ | class: debug_state | ||
+ | state: active | ||
+ | name: debug_status | ||
+ | msg: NOTICE: System debug mode is enabled by 'Eric Yspeert' | ||
+ | msg_type: 2 | ||
+ | severity: 1 | ||
+ | user_level: 3 | ||
+ | signal_type: | ||
+ | signal_int: 1800 | ||
+ | ---------------------------------------- | ||
+ | |||
+ | additional messages line one | ||
+ | additional messages line two | ||
+ | ---------------------------------------- | ||
+ | |||
+ | Issued by devel6.netyce.org at 2020-03-26 11:43:35 | ||
+ | </ | ||
+ | |||
+ | The resulting mail is sent as plain text to each of the addresses in the mail_to list. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== Rest-Api ===== | ||
+ | |||
+ | The Rest-api call is a POST request in JSON format to a single remote host at a specific url. The REST call has the following parameters that can be set: | ||
+ | * host: The host ip or fqdn to post to. Has to include the transfer protocol (" | ||
+ | * url: The URL path of the Rest-api to post to. Must have a leading ''/'' | ||
+ | * webtoken: Optional bearer AUTH's webtoken | ||
+ | * username and password: optional; basic authentication username and password | ||
+ | |||
+ | The relevant entries in the '' | ||
+ | |||
+ | < | ||
+ | # - rest-api | ||
+ | # - host # host web address eg: ' | ||
+ | # - url # Rest-api url part of address: '/ | ||
+ | # - username | ||
+ | # - password | ||
+ | # - webtoken | ||
+ | # - parameters | ||
+ | # | ||
+ | |||
+ | our $system_signals = { | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | # optional struct of data | ||
+ | ' | ||
+ | }, | ||
+ | # | ||
+ | # ... other signal-types | ||
+ | # | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | The optional '' | ||
+ | |||
+ | The submitted JSON structure will have various attributes. The attribute '' | ||
+ | |||
+ | The format of this message: | ||
+ | < | ||
+ | [< | ||
+ | </ | ||
+ | |||
+ | The JSON will also include additional attributes associated with the event: | ||
+ | * class | ||
+ | * state | ||
+ | * name | ||
+ | * msg | ||
+ | * msg_type | ||
+ | * severity | ||
+ | * user_level | ||
+ | * signal_type | ||
+ | * signal_int | ||
+ | |||
+ | The '' | ||
+ | |||
+ | |||
+ | |||