package common type MonitoringApiLog struct { // 【每条接口调用记录的唯一标识】每条接口调用记录的唯一标识 Id *float64 `json:"id"` // 【请求的业务系统的名字】请求的业务系统的名字(当为开放平台接口时有此值) AppName string `json:"appName"` // 【响应时间】响应时间(单位:ms毫秒) CostTime *float64 `json:"costTime"` // 【请求时间】请求时间 RequestTime string `json:"requestTime"` // 【请求接口地址】请求接口地址 Path string `json:"path"` // 【接口状态】接口状态(\"成功\"或\"失败\") ResponseStatus string `json:"responseStatus"` // 【请求参数】请求参数 RequestContent string `json:"requestContent"` // 【响应内容】响应内容 ResponseContent string `json:"responseContent"` }