Monitores de servidor
GET https://estatus.info/api/server-monitors/
curl --request GET \
--url 'https://estatus.info/api/server-monitors/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://estatus.info/api/server-monitors/' \
--header 'Authorization: Bearer {api_key}' \
| Parámetros | Detalles | Descripción |
|---|---|---|
| page | Opcional Entero (Integer) | El número de página del que deseas resultados. Por defecto es 1 |
| results_per_page | Opcional Entero (Integer) | El número de resultados por página. Los valores permitidos son: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Por defecto %s |
{
"data": [
{
"id": 1,
"project_id": 0,
"name": "Sample",
"target": "123.123.123.123",
"settings": {
"server_check_interval_seconds": 60
},
"cpu_usage": 0.7,
"ram_usage": 30.65,
"disk_usage": 16.49,
"cpu_load_1": 0,
"cpu_load_5": 0,
"cpu_load_15": 0,
"is_enabled": true,
"total_logs": 100,
"last_log_datetime": "2024-01-14 02:45:05",
"datetime": "2025-11-02 07:00:18",
"last_datetime": null
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://estatus.info/api/server-monitors?&page=1",
"last": "https://estatus.info/api/server-monitors?&page=1",
"next": null,
"prev": null,
"self": "https://estatus.info/api/server-monitors?&page=1"
}
}
GET https://estatus.info/api/server-monitors/{server_monitor_id}
curl --request GET \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"project_id": 0,
"name": "Sample",
"target": "123.123.123.123",
"settings": {
"server_check_interval_seconds": 60
},
"cpu_usage": 0.7,
"ram_usage": 30.65,
"disk_usage": 16.49,
"cpu_load_1": 0,
"cpu_load_5": 0,
"cpu_load_15": 0,
"is_enabled": true,
"total_logs": 100,
"last_log_datetime": "2024-01-14 02:45:05",
"datetime": "2025-11-02 07:00:18",
"last_datetime": null
}
}
POST https://estatus.info/api/server-monitors
| Parámetros | Detalles | Descripción |
|---|---|---|
| name | Requerido Cadena (string) | - |
| target | Requerido Cadena (string) | - |
| project_id | Opcional Entero (Integer) | - |
| notifications | Opcional Arreglo (array) | IDs de los canales de notificaciones |
| server_check_interval_seconds | Opcional Entero (Integer) | Valores permitidos: 60, 300, 600, 900, 1800 (segundos) |
| alert_metric[key] | Opcional Cadena (string) | Valores permitidos: cpu_usage, disk_usage, ram_usage |
| alert_rule[key] | Opcional Cadena (string) | Valores permitidos: is_higher, is_lower |
| alert_value[key] | Opcional Cadena (string) | Valores permitidos: 1-99 |
| alert_trigger[key] | Opcional Cadena (string) | Valores permitidos: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 |
| is_enabled | Opcional Booleano (Boolean) | - |
curl --request POST \
--url 'https://estatus.info/api/server-monitors' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'target=example.com' \
--url 'https://estatus.info/api/server-monitors' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'target=example.com' \
{
"data": {
"id": 1
}
}
POST https://estatus.info/api/server-monitors/{server_monitor_id}
| Parámetros | Detalles | Descripción |
|---|---|---|
| name | Requerido Cadena (string) | - |
| target | Requerido Cadena (string) | - |
| project_id | Opcional Entero (Integer) | - |
| notifications | Opcional Arreglo (array) | IDs de los canales de notificaciones |
| server_check_interval_seconds | Opcional Entero (Integer) | Valores permitidos: 60, 300, 600, 900, 1800 (segundos) |
| alert_metric[key] | Opcional Cadena (string) | Valores permitidos: cpu_usage, disk_usage, ram_usage |
| alert_rule[key] | Opcional Cadena (string) | Valores permitidos: is_higher, is_lower |
| alert_value[key] | Opcional Cadena (string) | Valores permitidos: 1-99 |
| alert_trigger[key] | Opcional Cadena (string) | Valores permitidos: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 |
| is_enabled | Opcional Booleano (Boolean) | - |
curl --request POST \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
{
"data": {
"id": 1
}
}
DELETE https://estatus.info/api/server-monitors/{server_monitor_id}
curl --request DELETE \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://estatus.info/api/server-monitors/{server_monitor_id}' \
--header 'Authorization: Bearer {api_key}' \