Skip to main content
Version: 5.3

makeresults

Description

Creates empty events with a timestamp.

Syntax

makeresults [count=<int>] [shownumbers=<boolean>]

Optional Arguments

ParameterSyntaxDefaultDescription
countcount=<int>1The number of events to generate.
shownumbersshownumbers=<boolean>falseIf 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