- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
kteki1
New Member
03-05-2014
12:52 PM
Hi,
I am using D3 Chart to display the output from the following query:
sourcetype=WinEventLog:Security | timechart span=1h count as total | appendcols [search
sourcetype=WinEventLog:Security | timechart span=1h count by eventtype ] | table _time * total
And I have used report acceleration to get faster results for this query. Currently it takes over five minutes to process and display the query.
Any ideas to speed up the query?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

lguinn2
Legend
03-05-2014
01:10 PM
Avoid appendcols or join.
sourcetype=WinEventLog:Security
| timechart span=1h count by eventtype
| addtotals
Should be at least twice as fast.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

lguinn2
Legend
03-05-2014
01:10 PM
Avoid appendcols or join.
sourcetype=WinEventLog:Security
| timechart span=1h count by eventtype
| addtotals
Should be at least twice as fast.
