Using Graylog 5.0, I am sending the log from an application via UDP and all the logs sent are arriving in graylog, but not all of them are being “interpreted”.
The json I am sending:
{
"version": "1.1",
"host": "test",
"short_message": "Test 00001",
"level": 1
}
As shown in graylog:
At first I thought it could be the language, but I tested it with two other languages and the problem continued to occur.
To simulate the error I created a function that opens a udp connection and sends it to graylog and I called this function 5 times in a row.
I need the message to only get the “short_message” and not the entire json.