- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

DalJeanis
Legend
01-18-2017
11:49 AM
I'm trying to generate some trivial data records (in this example, records with TheRecordNumber from 1 to 400).
Is there a simpler way to do it than this?
| makeresults count=400
| eval TheNum = 1
| accum TheNum as TheRecordNumber
I'm aware of makeresults and gentimes.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

rjthibod
Champion
01-18-2017
12:03 PM
The only thing simpler I can think of is this
| makeresults count=400
| streamstats count as TheRecordNumber
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

rjthibod
Champion
01-18-2017
12:03 PM
The only thing simpler I can think of is this
| makeresults count=400
| streamstats count as TheRecordNumber
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

somesoni2
Revered Legend
01-18-2017
12:06 PM
Don't think there is any other simpler option.
