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. |
Examples
Example 1
In this example, one test event with a timestamp is created. This call is convenient when a minimal dataset is needed for a further command chain.
...
| makeresults
Example 2
In this example, three events with timestamps are created.
...
| makeresults count=3
Example 3
In this example, two events are created with the field number: when shownumbers=true, they will automatically be assigned values 1 and 2.
...
| makeresults count=2 shownumbers=true