http
最后更新于:2022-04-02 03:01:37
[TOC]
## 实例
```
```
触发
```
curl -X POST -d 'json={"foo":"bar"}' http://localhost:9880/app.log
```
默认情况下,时间戳会在到达时分配给每个记录。
您可以使用time参数覆盖时间戳
```
curl -X POST -d 'json={"foo":"bar"}' \
http://localhost:9880/test.tag?time=1518756037.3137116
```
js 触发
```
// Post a record using XMLHttpRequest
var form = new FormData();
form.set('json', JSON.stringify({"foo": "bar"}));
var req = new XMLHttpRequest();
req.open('POST', 'http://localhost:9880/debug.log');
req.send(form);
```
';