-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathtotal.toml
23 lines (23 loc) · 1.51 KB
/
total.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query = "* | json | total(num_things) as _lotal"
input = """
{"level": "info", "message": "A thing happened", "num_things": 1.5}
{"level": "info", "message": "A thing happened", "num_things": 1103}
{"level": "info", "message": "A thing happened", "num_things": 1105}
{"level": "info", "message": "A thing happened", "num_things": "not_a_number"}
{"level": "info", "message": "A thing happened"}
{"level": "info", "message": "A thing happened", "num_things": 1105}
{"level": "info", "message": "A thing happened", "num_things": 1105}
{"level": "info", "message": "A thing happened", "num_things": 1105}
{"level": "info", "message": "A thing happened", "num_things": 1105.5}
"""
output = """
[_lotal=1.50] [level=info] [message=A thing happened] [num_things=1.50]
[_lotal=1104.50] [level=info] [message=A thing happened] [num_things=1103]
[_lotal=2209.50] [level=info] [message=A thing happened] [num_things=1105]
[_lotal=2209.50] [level=info] [message=A thing happened] [num_things=not_a_number]
[_lotal=2209.50] [level=info] [message=A thing happened]
[_lotal=3314.50] [level=info] [message=A thing happened] [num_things=1105]
[_lotal=4419.50] [level=info] [message=A thing happened] [num_things=1105]
[_lotal=5524.50] [level=info] [message=A thing happened] [num_things=1105]
[_lotal=6630] [level=info] [message=A thing happened] [num_things=1105.50]
"""