Been experimenting with ML toolkit and having some weird issues. I can get nice predictions by teaching the data but when trying to visulize and show the data on a table I get some issues. The data and the prediction don't seem to align by time even thou the time field is same.
I was able to correct this by using chart instead of timechart
@plapila wrote:
@ITWhisperer wrote:What was the SPL you used to produce this?
index=fav AND ACTION="Modem boot" | bin _time span=1d | timechart count by ACTION | apply Modemboot
index=fav AND ACTION="Modem boot"
| bin _time span=1d | chart count(ACTION) as "Modem boot" by _time span=1d cont=true | apply Modemboot
What was the SPL you used to produce this?
@ITWhisperer wrote:What was the SPL you used to produce this?
index=fav AND ACTION="Modem boot" | bin _time span=1d | timechart count by ACTION | apply Modemboot
I was able to correct this by using chart instead of timechart
@plapila wrote:
@ITWhisperer wrote:What was the SPL you used to produce this?
index=fav AND ACTION="Modem boot" | bin _time span=1d | timechart count by ACTION | apply Modemboot
index=fav AND ACTION="Modem boot"
| bin _time span=1d | chart count(ACTION) as "Modem boot" by _time span=1d cont=true | apply Modemboot