Operational
[BETA] Get all signals that match the query parameter criteria.
Enterprise feature
[BETA] This API is in beta state, which means it may change or be removed in the future.
Returns a list of all signals that match the query parameter criteria.
get/api/admin/signals
Query parameters
fromstring
Example:IS:2024-01-01
The starting date of the creation date range in IS:yyyy-MM-dd format
tostring
Example:IS:2024-01-31
The ending date of the creation date range in IS:yyyy-MM-dd format
offsetstring
Example:50
The number of features to skip when returning a page. By default it is set to 0.
limitstring
Example:50
The number of feature environments to return in a page. By default it is set to 50. The maximum is 1000.
Response
#/components/schemas/signalQueryResponseSchema
Example response
{
"signals": [
{
"id": 7,
"payload": {
"cpu": 92,
"memory": 85
},
"createdAt": "2023-12-27T13:37:00+01:00",
"source": "signal-endpoint",
"sourceId": 1337,
"tokenName": "signal-endpoint-token",
"sourceName": "cpu-over-90",
"sourceDescription": "Notifies when CPU usage is over 90%."
}
],
"total": 842
}