As an update, I have discovered something.
Here is an example of the kpi I am trying to read in Python with the dots:
xxx.yyy.zzz.aaa
I've found if I dont include it in the search and just search by sourcetype and then in the fields list in the query, I put something like xxx_yyy*
I will get some results. (note, using underscore seems to be the only way to get fields with dots in them using python)
...so you'd think I could do : | fields xxx_yyy_zzz_aaa right?
Nope.
The first time another underscore is included, it doesnt return the field.
This isn't the best solution but its something I may be able to work with. Anyone know why when the second underscore is included, it would return the kv pair?
... View more