
以下に同様のログがあります。
ダミーを作成しindex
、mapping
以下のように作成しましたdev-tools
PUT new
{
"mappings": {
"properties": {
"@timestamp": {
"type": "date",
"format": "yyyy-MM-dd HH:mm:ss.SSS"
}
}
}
}
データはindexed
以下の通りです。
PUT /new/_doc/1
{
"@timestamp": "2021-11-05 08:12:14.534",
"level": "INFO",
"id": "1",
"text": "website is accessed",
"status": "clicked"
}
PUT /new/_doc/2
{
"@timestamp": "2021-10-14 09:11:14.534",
"level": "INFO",
"id": "3",
"text": "website is accessed",
"status": "clicked"
}
PUT /new/_doc/3
{
"@timestamp": "2021-09-09 02:08:20.534",
"level": "INFO",
"id": "4",
"text": "website is accessed",
"status": "clicked"
}
request
以下のクエリを使用して合計数を取得できます。
GET new/_search
{
"aggs": {},
"size": 0,
"fields": [],
"query": {
"bool": {
"must": [],
"filter": [
{
"bool": {
"should": [
{
"match_phrase": {
"text": "website is accessed"
}
}
],
"minimum_should_match": 1
}
},
{
"range": {
"@timestamp": {
"gte": "2021-10-01",
"lte": "2021-10-30"
}
}
}
],
"should": [],
"must_not": []
}
}
}
以下のように取得しますresponse
。
{
"took" : 0,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : null,
"hits" : [ ]
}
}
ご覧のとおり、特定の値を取得するhardcode
必要があります。つまり、同じ情報を月ごとに取得するには、 curlリクエストで以下のように変更する必要があります。date
month
sept
date time range
"range": {
"@timestamp": {
"gte": "2021-09-01",
"lte": "2021-09-30"
}
}
以下は ですcurl call request
。
curl -u elastic:xxx -XGET "http://10.10.10.10:9200/new/_search?pretty" -H 'Content-Type: application/json' -d'
{
"aggs": {},
"size": 0,
"fields": [],
"query": {
"bool": {
"must": [],
"filter": [
{
"bool": {
"should": [
{
"match_phrase": {
"text": "website is accessed"
}
}
],
"minimum_should_match": 1
}
},
{
"range": {
"@timestamp": {
"gte": "2021-10-01",
"lte": "2021-10-30"
}
}
}
],
"should": [],
"must_not": []
}
}
}'
特定の の情報を取得する curl リクエストに を動的に (つまり、リクエスト自体を実際にハードコーディングせずに)year
渡すにはどうすればよいですか?month
month
year
アップデート -
先月(11月)や過去2か月(10月)などの結果を取得するには、以下を使用します。
先月 - Nov
-
"gte": "now-M",
"lt": "now/M"
2ヶ月 -Oct
"gte": "now-2M/M",
"lte": "now-2M/M"
year
しかし、望ましい結果を提供してmonth
取得する方法はあるのでしょうか?
ありがとう、
答え1
使用できます日付計算完全に定義された日付:
"range": {
"@timestamp": {
"gte": "2021-10-01",
"lte": "2021-10-01||+1M/d"
}
}