forked from taowenwei/mongodb-grafana-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeserie-query.json
56 lines (56 loc) · 1.18 KB
/
timeserie-query.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"collection": "movies",
"aggregations": [
{
"$match": {
"released": {
"$gte": $from,
"$lte": $to
},
"genres": { "$elemMatch": { "$eq": "Comedy" } }
}
},
{
"$group": {
"_id": {
"year": { "$year": "$released" },
"month": { "$month": "$released" }
},
"__value": { "$sum": 1 }
}
},
{
"$addFields": {
"__name": { "$literal": "movies in month" },
"__timestamp": {
"$dateFromString": {
"dateString": {
"$concat": [
{ "$toString": "$_id.year" },
"-",
{
"$toString": {
"$cond": {
"if": { "$lte": ["$_id.month", 9] },
"then": "0",
"else": ""
}
}
},
{ "$toString": "$_id.month" },
"-01"
]
},
"format": "%Y-%m-%d"
}
}
}
},
{
"$sort": { "__timestamp": 1 }
},
{
"$project": { "_id": 0 }
}
]
}