|
|
|
|
@ -0,0 +1,23 @@
|
|
|
|
|
# Signpost / Xmpp
|
|
|
|
|
|
|
|
|
|
Using Signpost to send you messages for Debugging, as Warning, status of Deploy or Critical Errors from
|
|
|
|
|
Services or Server.
|
|
|
|
|
|
|
|
|
|
## Messages
|
|
|
|
|
|
|
|
|
|
´´´
|
|
|
|
|
🚨 <hostname> / <message>
|
|
|
|
|
✅ <hostname> / <message>
|
|
|
|
|
ℹ️ <hostname> / <message>
|
|
|
|
|
´´´
|
|
|
|
|
|
|
|
|
|
## Sending
|
|
|
|
|
|
|
|
|
|
### Curl
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl -X POST https://<domain>/api/flow/v1/<uuid>
|
|
|
|
|
-H 'Content-Type: application/json'
|
|
|
|
|
-H 'Authorization: Bearer <token>'
|
|
|
|
|
-d '{"message":"<text>"}'
|
|
|
|
|
```
|