Hi,
Can somebody help me out here?
So i am trying to use grok filter on a particular log file and I am having some trouble.
I used http://grokdebug.herokuapp.com/ to make a pattern, but I am having trouble with it
so I have the following log entry
10:47:57,434 INFO [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' access:14 - |rio|provisionWSG|https://129.4.7.96:543/mobile20/v1/provision/navo
I am having trouble extracting details from the following:
|rio|provisionWSG|https://129.4.7.96:543/mobile20/v1/provision/navo
I am not able to separate the entire string and turn them into fields
I tried
{
"USERNAME": [
[
"rio"
]
],
"NOTSPACE": [
[
"|provisionWSG|https://129.4.7.96:543/mobile20/v1/provision/navo"
]
]
}
please help!