makeresults
Description
Creates empty events with a timestamp.
Syntax
makeresults [count=<int>] [shownumbers=<boolean>]
Optional Arguments
Parameter | Syntax | Default | Description |
---|---|---|---|
count | count=<int> | 1 | The number of events to generate. |
shownumbers | shownumbers=<boolean> | false | If true , the created events will include a number field indicating the event index, while if false , the field will not be included. |
Query Examples
Example 1
Creates one new event with a timestamp.
...
| makeresults
Example 2
Creates three new events with timestamps.
...
| makeresults count=3
Example 3
Creates two new events with timestamps, including the number
field, where one event will have the value 1
, and the other will have the value 2
.
...
| makeresults count=2 shownumbers=true