请求 elk 的 post 参数是这个 json,两个 term,不同的 value,不知道是我写的这个结构体的有问题还是初始化有问题。求解怎么初始化?
{
"_source": {
"excludes": [
"offset",
"*type",
"beat",
"*timestamp"
]
},
"query": {
"bool": {
"filter": [
{
"term": {
"loglvl.keyword": "ERROR"
}
},
{
"term": {
"module": "demo"
}
},
{
"range": {
"logtime": {
"gte": "2017-10-20T09:45:35.015+0800",
"lte": "2017-10-24T09:45:35.015+0800"
}
}
}
]
}
}
}
type RequestValue struct {
Source struct {
Excludes []string `json:"excludes"`
} `json:"_source"`
Query struct {
Bool struct {
Filter []struct {
Term struct {
LoglvlKeyword string `json:"loglvl.keyword,omitempty"`
Module string `json:"module,omitempty"`
} `json:"term,omitempty"`
Range struct {
Logtime struct {
Gte string `json:"gte"`
Lte string `json:"lte"`
} `json:"logtime"`
} `json:"range,omitempty"`
} `json:"filter"`
} `json:"bool"`
} `json:"query"`
}
我这么初始化,想写一个当前时间的 Gte 的 value。
model.RequestValue{
Source: {
Excludes: {"offset", "*type", "beat", "*timestamp"}
},
Query: {
Bool: {
Filter: {
{Term: {LoglvlKeyword: "ERROR"}},
{Term: {Module: "demo"}},
{Range: {Logtime: {Gte: "2017-10-20T09:45:35.015+0800",
Lte: "2017-10-24T09:45:35.015+0800"
},},}
},
},
},
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.