我需要修改一下InfluxDB的HTTP请求日志格式,我找到了记录日志的方法**services/httpd/response_logger.go**里面的**buildLogLine**方法(这个方法是写日志的方法),通过`r *http.Request`参数获取POST请求的BODY,但是一直无法获取成功。。。
我使用过:
```
r.ParseForm() // r.ParseMultipartForm(r.ContentLength)
form := r.Form
postForm := r.PostForm
timeValue := r.FormValue("time")
bytes, _ := ioutil.ReadAll(r.Body)
```
**这样不行!**
我执行的是InfluxDB的插入语句,使用Influx Client和curl发送HTTP请求都试过了,数据库里面成功添加了数据,但是日志里面打印不出来BODY里面的请求数据。
同样的代码,我在**services/httpd/handler.go**的**ServeHTTP**方法(这个方法是InfluxDB接收HTTP请求的方法)中也试过了,都拿不到数据。
**********
求教各位大佬,不知道是我获取参数的方法写错了,还是InfluxDB在上层就把参数从`r *http.Request`中拿掉了?
第 1 条附言 ·
![[%A{071WZ2(4K@0ZIC94JEV.png](https://static.studygolang.com/180426/b630d9fec3354e1cc3bddbd6be1c18f4.png)
发送插入请求数据
应该是r.Body 是流,在r.ParseForm()那一步读出来后就没了,你把bytes, _ := ioutil.ReadAll(r.Body)
写在最前面试试,bytes应该就有内容了
#3
更多评论
<a href="/user/whdwsl" title="@whdwsl">@whdwsl</a> <a href="/user/yuun" title="@yuun">@yuun</a> 大佬们帮忙看一下 :smile:
#1
![image.png](https://static.studygolang.com/180426/e4f0b861de4c1c315be28da22c43b681.png)
发送插入请求数据
#2