cc-metric-collector/receivers/httpReceiver.md

43 lines
1.1 KiB
Markdown
Raw Normal View History

## `http` receiver
The `http` receiver can be used receive metrics through HTTP POST requests.
### Configuration structure
```json
{
"<name>": {
"type": "http",
"address" : "",
"port" : "8080",
2023-09-20 17:33:08 +02:00
"path" : "/write",
"idle_timeout": "120s",
"username": "myUser",
"password": "myPW"
}
}
```
- `type`: makes the receiver a `http` receiver
- `address`: Listen address
- `port`: Listen port
- `path`: URL path for the write endpoint
2023-09-20 17:33:08 +02:00
- `idle_timeout`: Maximum amount of time to wait for the next request when keep-alives are enabled should be larger than the measurement interval to keep the connection open
- `username`: username for basic authentication
- `password`: password for basic authentication
The HTTP endpoint listens to `http://<address>:<port>/<path>`
2023-09-18 17:03:18 +02:00
### Debugging
- Install [curl](https://curl.se/)
- Use curl to send message to `http` receiver
```bash
2023-09-20 17:33:08 +02:00
curl http://localhost:8080/write \
--user "myUser:myPW" \
--data \
2023-09-18 17:03:18 +02:00
"myMetric,hostname=myHost,type=hwthread,type-id=0,unit=Hz value=400000i 1694777161164284635
myMetric,hostname=myHost,type=hwthread,type-id=1,unit=Hz value=400001i 1694777161164284635"
```