Add monitoring condition for the logs containing "already banned".
This commit is contained in:
parent
4ca2676d47
commit
6b2a5bdf07
|
@ -158,7 +158,7 @@ scrape_configs:
|
|||
labels:
|
||||
job: fail2ban
|
||||
hostname: <%= @HOSTNAME %>
|
||||
level: notice
|
||||
level: info
|
||||
__path__: /var/log/fail2ban.log
|
||||
|
||||
pipeline_stages:
|
||||
|
@ -168,7 +168,6 @@ scrape_configs:
|
|||
- regex:
|
||||
expression: '^(?P<timestamp>[0-9]+\-[0-9]+\-[0-9]+ [0-9]+:[0-9]+:[0-9]+),[0-9]+ [^:]+: (?P<level>[^ ]+)[^\[]+(?P<message>.+)$'
|
||||
|
||||
|
||||
- timestamp:
|
||||
source: timestamp
|
||||
format: 2006-01-02 15:04:05
|
||||
|
@ -184,6 +183,20 @@ scrape_configs:
|
|||
- output:
|
||||
source: message
|
||||
|
||||
- match:
|
||||
selector: '{job="fail2ban"} |~ "already banned"'
|
||||
stages:
|
||||
- regex:
|
||||
expression: '^(?P<timestamp>[0-9]+\-[0-9]+\-[0-9]+ [0-9]+:[0-9]+:[0-9]+),[0-9]+ [^:]+: (?P<level>[^ ]+)[^\[]+(?P<message>.+)$'
|
||||
|
||||
- timestamp:
|
||||
source: timestamp
|
||||
format: 2006-01-02 15:04:05
|
||||
location: Asia/Tokyo
|
||||
|
||||
- output:
|
||||
source: message
|
||||
|
||||
- job_name: promtail
|
||||
static_configs:
|
||||
- targets:
|
||||
|
|
Loading…
Reference in New Issue