Activity Feed
- Posted Average of Time Bucket Over Time on Dashboards & Visualizations. 06-23-2020 01:58 PM
- Got Karma for Pie Chart - shows no results found when result is 0. 06-05-2020 12:50 AM
- Posted Can you help me create a visualization that shows a minute by minute view of buckets? on Dashboards & Visualizations. 04-02-2019 11:57 AM
- Tagged Can you help me create a visualization that shows a minute by minute view of buckets? on Dashboards & Visualizations. 04-02-2019 11:57 AM
- Tagged Can you help me create a visualization that shows a minute by minute view of buckets? on Dashboards & Visualizations. 04-02-2019 11:57 AM
- Tagged Can you help me create a visualization that shows a minute by minute view of buckets? on Dashboards & Visualizations. 04-02-2019 11:57 AM
- Tagged Can you help me create a visualization that shows a minute by minute view of buckets? on Dashboards & Visualizations. 04-02-2019 11:57 AM
- Posted Pie Chart - shows no results found when result is 0 on Dashboards & Visualizations. 02-19-2019 09:28 AM
- Tagged Pie Chart - shows no results found when result is 0 on Dashboards & Visualizations. 02-19-2019 09:28 AM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
1 |
06-23-2020
01:58 PM
I want to create a dashboard that shows 2 things. First, it will search over the last 60 minutes for total errors. sourcetype=blabla error And, it will look for average errors for the same time period over the past month. For example, if the search is ran at 14:29, it will show the average errors for 13:30-14:29 for each day over the last month, preferably just weekdays. So, it will show a stats table with two results. Total errors for the last 60 minutes, and average errors over that time period for the last month. Thanks
... View more
Labels
- Labels:
-
table
04-02-2019
11:57 AM
I'm wanting to create a visualization that shows the average amount of errors during each minute of the day over a period of time. I can do it for each hour of the day:
index=ind sourcetype=sotp "error"
| bin _time span=1h
| eval date_hour=strftime(_time, "%H")
| stats count AS hits first(date_hour) AS date_hour BY _time
| stats median(hits) BY date_hour
I can also do it for minute of the hour, but not minute of the day. It would be nice to have more granularity.
Thanks
... View more
03-01-2019
10:26 PM
@davidlapello, what do you want to show when all hosts have 0 count? A pie slice can not be rendered with 0 value. So you will need to clarify the intent in case all values are zero.
Do you have a lookup or inventory of all hosts that can be pulled in case index does not have host data?
... View more