Hi gsmith,
thank you for your reply. yes i have loaded the dashboard as you can see on picture 1 and 2. as you can see on picture 4, there are probably 3 grokparsefailures. I was already able to fix one, namely the _grokparsefailure_sysloginput
I've adjusted my input as follows:
from
Code: Select all
syslog {
type => 'asa'
port => 6514
}
to
Code: Select all
tcp {
type => 'asa'
port => 6514
}
now I have the other two mistakes:
_grokparsefailure and _grokparsefailure_geoip
The cisco asa dashboard filters for the number 113019. When I search for the number and display the raw data, it looks like this:
Code: Select all
{
"_index": "logstash-2021.05.09",
"_type": "asa",
"_id": "AXlP-9Xm7rqESgLwSkw7",
"_score": null,
"_source": {
"message": "<172>%ASA-4-113019: Group = VPN-Clients, Username = username, IP = 79.201.xxx.xxx, Session disconnected. Session Type: SSL, Duration: 0h:13m:32s, Bytes xmt: 22555580, Bytes rcv: 5138697, Reason: User Requested",
"@version": "1",
"@timestamp": "2021-05-09T07:16:14.793Z",
"host": "192.xxx.xxx.x",
"port": 35527,
"type": "asa",
"tags": [
"_grokparsefailure",
"_geoip_lookup_failure"
],
"geoip": [],
"syslog_severity_code": 5,
"syslog_facility_code": 1,
"syslog_facility": "user-level",
"syslog_severity": "notice"
},
"highlight": {
"message": [
"<172>%ASA-4-@start-highlight@113019@end-highlight@: Group = VPN-Clients, Username = username, IP = 79.201.xxx.xxx, Session disconnected. Session Type: SSL, Duration: 0h:13m:32s, Bytes xmt: 22555580, Bytes rcv: 5138697, Reason: User Requested"
]
},
"sort": [
1620544574793,
1620544574793
]
}
thanks for any help
shifty