Status

The status endpoint can be used to get information about workflow status and to prepare ENTRADA for shutdown.

GET /api/v2/status/

Use this endpoint to see the current “enabled” status and the status of the following components - PCAP processing - Compaction - Maintenance

If the value of all 3 components is false, then it is safe to stop the ENTRADA process.

{
    "enabled": true,
    "execution": false,
    "compaction": false,
    "maintenance": false
}

PUT /api/v2/status/stop

Use this endpoint to change the current “enabled” status to false.
The scheduled ENTRADA components will not perform any work when they are executed by the scheduler and the status == false.

PUT /api/v2/status/start

Use this endpoint to change the current “enabled” status to true.
The scheduled ENTRADA components will function as normal.