I want to parse field with spacial format (like Json) with using elasticsearch without logstash , is that possible with using elasticsearch analyze?
If it's possible,where can i start?
Or there is another way?
example :
before parse
{ 'timestamp' : 2020-12-9,
'message' : {'a':3,'b':4}
}
after :
{'timestampe' :2020-12-9,
message :{'a':3,'b':4}
'a' : 3,
'b' : 4,}
thank you!