HTTP API to send events to Wrble
If you just want to get data into Wrble from somewhere custom or different, we provide a basic HTTP API that you can call.
Send a POST to:
https://ingest.wrble.com/v1/bulk/LOGKEY
(replace “LOGKEY” with your Wrble log key)
With a newline-separated body like this:
this is log line one |
Or you can add “/json” to the URL like this:
https://ingest.wrble.com/v1/bulk/LOGKEY/json
and send a body with a JSON array of messages:
[ |
Limits
Up to 1000 logging/events can be sent in each batch.