A Graze API GET request that returns the details of all Tempus Moolets in Moogsoft Enterprise.
Back to Graze API EndPoint Reference.
Endpoint getTempus
takes the following request argument:
Endpoint getTempus
takes no other arguments because this endpoint returns data on all Tempus Moolets in Moogsoft Enterprise.
Endpoint getTempus
returns the following response:
Successful requests return an array of JSON objects containing the following:
Type | Description |
---|---|
JSON Object | Names and configurations of all Tempus Moolets in Moogsoft Enterprise. |
The following examples demonstrate typical use of endpoint getTempus
:
Example cURL request to return the details of all Tempus Moolets:
curl -G -u graze:graze -k "https://localhost/graze/v1/getTempus"
Example response returning the details of Tempus algorithm "Time Based (Tempus)":
[
{
"detection_algorithm": "Louvain",
"minimum_arrival_similarity": 0.6667,
"run_on_startup": true,
"arrival_spread": 15,
"execution_interval": 120,
"description": "A Tempus Situation",
"alert_threshold": 4,
"pre_partition": null,
"partition_by": null,
"window_size": 1200,
"edge_weight": false,
"significance_threshold": 1,
"name": "Time Based (Tempus)",
"entropy_threshold": 0.0,
"threshold_type": "global",
"process_output_of": "Alert Workflows",
"significance_test": "Poisson1",
"bucket_size": 5
}
]