Skip to content

Poll Init

Defines how polling is to take place.

Model

attribute description
process_id*
string
An ID of the started process
min_interval*
unsigned integer
The interval in seconds used for polling from beginning until min_interval_threshold is reached
max_interval*
unsigned integer
The interval in seconds used for polling after max_interval_threshold is reached
min_interval_threshold*
unsigned integer
Indicates after how many seconds from the beginning of polling the interval should start increasing
max_interval_threshold*
unsigned integer
Indicates after how many seconds from the beginning of polling the interval should stop increasing

Example

{
  "process_id": "abc123",
  "min_interval": 1,
  "max_interval": 10,
  "min_interval_threshold": 5,
  "max_interval_threshold": 15
}