Stop data collection
To stop data collection, perform the following actions:
-
Open a necessary entity in the end view.
-
Go to the Parameters section.
-
Click on the State dropdown and select any state.
-
In the opened window "Manually set state" set parameters of the manual state.
-
Make sure the Stop data collection toggle is turned on.
-
Press the
button.
After performing these steps, the entity will be transitioned to the selected steps and will stop receiving data from agent and REST API until the manual state is reset.
When you stop data collection, the graphs will display the value 0
, and the background will be highlighted with the color of the state for the duration of the stop.

REST API
You can stop data collection with the Set Entity’s Manual State request. You can also use specialized requests for objects and links. Request body must contain the unmanaged
field. If the value of this field is true
, the data collection will be stopped until the manual state is reset; if it is false
, the entity will change its state, but continue to collect the data.
You need entity’s ID for this request.
login=<...>
password=<...>
saymon_hostname=<...>
entity_id=<...>
url=https://$saymon_hostname/node/api/entities/$entity_id/manual-state
curl -X PUT $url -u $login:$password \
-H "Content-Type: application/json" \
-d @- <<EOF
{
"unmanaged": true,
"stateId": 3,
"clear": false,
"reason": "Stop data collection"
}
EOF