I have a,
event_data.AccessMask : 0x1
in kibana.
i want the value 0x1 to be stashed in a condition.
however the field has a dot, (".") which I believe is frustrating me from getting the output that I need.
I tried the de_dot {} which up to now i don't get how to use this with fields that has (".")
this doesn't work,
if [event_data.AccessMask] == "0x1" {
...so on
}
this either,
if "0x1" in [event_data.AccessMask]{
....u fail with this...
}
my set up as follows,
windows client running with winlogbeat configured output to logstash.
logstash is configured to filter selected events then drop, (oh i know that i can select event id's from winlogbeat also, but that's not the point here).
then to elasticsearch.
I have scoured every places on how I can achieve what I want to no avail,
de_dot {} doesn't give me a detailed "how a dumb guy can use the de_dot plugin in every scenario" cases.
can anyone help me with this?,
just started with ELK stack and groking almost cracked my nut, and now I signed up here due to the fact that my work anytime soon will be required for accurate results. well, atleast.
thanks..