0
0
Fork 0
mirror of https://github.com/alerta/alerta.git synced 2025-02-06 14:30:04 +00:00
alerta_alerta/alerta/app/templates/index.html
Nick Satterly 9e78f6231a remove /api from routes and return more when creating resources
simplify URL routes by removing /api (note: it can be added back
in the wsgi configuration).

when successfully creating a new resource return 201 status code
and the Location header. also, for alerts and heartbeats return
the item itself. will mean one less query for clients.
2014-09-21 00:43:56 +01:00

53 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Alerta API</title>
</head>
<body>
<h1>Alerta API</h1>
<p>Welcome to the Alerta API for the monitoring and alerting tool.
<h2>Examples</h2>
<p>Some basic examples of using the API are:
<ul>
<li> <a href="/alerts">Alerts</a>
<li> <a href="/environments">Environments</a>
<li> <a href="/services">Services</a>
<li> <a href="/alerts/count">Alert Counts</a>
<li> <a href="/alerts/top10">Alert Top 10</a>
<li> <a href="/heartbeats">Heartbeats</a>
</ul>
<h2>Query parameters</h2>
<p>Query parameters can be used to filter the results by any valid alert attribute.
<table>
<tbody>
<tr><td><tt>environment=PROD</tt></td><td>equality - return alerts whose environment field has the value of PROD</td></tr>
<tr><td><tt>environment!=PROD</tt></td><td>invert - return alerts whose environment does not have the value PROD</td></tr>
<tr><td><tt>service=~frontend.*</tt></td><td>regex - return alerts whose service field starts with frontend</td></tr>
<tr><td><tt>service!=~frontend.*</tt></td><td>invert regex - return alerts whose service field does not start with frontend</td></tr>
</tbody>
</table>
<p>Special query parameters include 'limit', 'sort-by', 'from-date' and 'q' (for a free-form mongo query).
<table>
<tbody>
<tr><td><tt>limit=5</tt></td><td>return the five most recent alerts for the filter</td></tr>
<tr><td><tt>sort-by=resource</tt></td><td>sort the results by alert resource</td></tr>
<tr><td><tt>from-date=2014-01-07T11:11:24.135Z</tt></td><td>return alerts from a certain date and time onwards</td></tr>
<tr><td><tt>q={"$or":[{"service":"Nova"},{"resource":{"$regex":"nova"}}]}</tt></td><td>return Nova service alerts or resource with nova</td></tr>
</tbody>
</table>
<h2>Routes</h2>
<table>
{% for rule in rules %}
<tr>
<td>{{ rule.methods|join(', ') }}</td><td>{{ rule.rule }}</td><td>{{ rule.endpoint }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>