POST
/
Metrics Receiver
curl --request POST \
  --url https://receiver.metrics-man.com/ \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "application_id": 123,
  "timestamp": 123,
  "creator": "<string>",
  "metric_id": "<string>",
  "tags": {}
}'
submitted

Body

Authorization
string
required
API access key generated for you application.
application_id
number
required
The unique ID of your application.
timestamp
number
Unix timestamp of creation of your metric. You can specify the granularity from seconds to nanoseconds. Just make sure it is as realtime as possible. If not specified, it will be auto filled.
creator
string
required
Name/ID of client/person who creating this metrics.
metric_id
string
required
The unique ID of your metric. You can pre-register this from console for easy querying.
tags
object
Key-value pair of string tags to assign to this metric.

Response

Response will be a plain string stating the status of request. Response Status Codes and their probable meanings.
Response: submitted
Status: Your metric has been successfully recorded.
submitted