Hi guys,
using an Ansible's plugin I'm trying to send data to Logstash.
Eveything seems ok but grok is not able to parse message
field; I mean, I'm not able to configure it to work correctly
this is the content of my document:
{
"_index": "jenkins-build-2020.04.20",
"_type": "_doc",
"_id": "3TnUlnEBnHvd3wub4nHB",
"_version": 1,
"_score": null,
"_source": {
"source_host": "https://jenkins.net.com/",
"host": "xxxxx",
"source": "jenkins",
"@version": 1,
"message": [
"Started by user Mario Rossi",
"Running as Mario Rossi",
"Running in Durability level: MAX_SURVIVABILITY"
I'm trying to extract user and I tried a lot of combination on grok but everytime I face a _grokparsefailure
. is there anyone that can help me?