HI fellow splunkers,
I am trying to count a distinct number of applications from our logs. Query is:
Index=something app!="null" | dedup app | stats count by app
i am looking to use the single value and trendline to show the number of "apps" and whether there has been a decrease or increase.
HI
you should try:
index=foo app=*
| timechart span=1d dc(app) as count_of_apps
then select Single value as visualisation.
r. Ismo
HI
you should try:
index=foo app=*
| timechart span=1d dc(app) as count_of_apps
then select Single value as visualisation.
r. Ismo