This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dump1090.chart.py
138 lines (115 loc) · 4.89 KB
/
dump1090.chart.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env python
"""
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# @Title : dump1090.chart
# @Description : NetData plugin for dump1090
# @Author : Evgeny Varnavskiy
# @Email : varnavruz@gmail.com
# @Copyright : Evgeny Varnavskiy
# @License : MIT
# @Maintainer : Evgeny Varnavskiy
# @Date : 2019/05/06
# @Version : 0.2
# @Notes : With default NetData installation put this file under
# : /usr/libexec/netdata/python.d/ and the config file under
# : /etc/netdata/python.d/
"""
import json
from bases.FrameworkServices.UrlService import UrlService # pylint: disable=E0401, E0611
UPDATE_EVERY = 20
PRIORITY = 60000
RETRIES = 10
ORDER = [
'messages',
'signals',
'strong_signals',
'samples'
]
CHARTS = {
'signals': {
'options': [None, 'Signals last 1m', 'dB', 'signals', 'signals', 'line'],
'lines': [
['signal', 'power', 'absolute', 1, 10],
['noise', 'noise', 'absolute', 1, 10],
['peak_signal', 'peak_signal', 'absolute', 1, 10],
]},
'strong_signals': {
'options': [None, 'Strong signals last 1m', 'N', 'signals', 'signals', 'line'],
'lines': [
['strong_signals', 'strong_signals', 'absolute']
]},
'messages': {
'options': [None, 'Messages last 1m', 'N', 'messages', 'messages', 'area'],
'lines': [
['messages', 'messages', 'absolute']
]},
'samples': {
'options': [None, 'Samples last 1m', 'N', 'samples', 'samples', 'area'],
'lines': [
['samples_processed', 'Processed', 'absolute'],
['samples_dropped', 'Dropped', 'absolute'],
['modeac', 'Mode A/C', 'absolute'],
['modes', 'Mode S', 'absolute'],
]}
}
class Service(UrlService):
def __init__(self, configuration=None, name=None):
UrlService.__init__(self, configuration=configuration, name=name)
self.order = ORDER
self.definitions = CHARTS
self.url = self.configuration.get('url', 'http://localhost:8080/data/stats.json')
def _get_data(self):
"""
Format data received from http request
:return: dict
"""
raw_data = self._get_raw_data()
data = dict()
if not raw_data:
return None
stats = json.loads(raw_data)
# We multiple float values by 10 there and set delimeter to 10 in charts definition
# It's the only way to get float values in Netdata for now
data["signal"] = parse('last1min', 'local', 'signal', stats)*10
data["noise"] = parse('last1min', 'local', 'noise', stats)*10
data["peak_signal"] = parse('last1min', 'local', 'peak_signal', stats)*10
data["strong_signals"] = parse('last1min', 'local', 'strong_signals', stats)
data["messages"] = parse('last1min', 'messages', None, stats)
data["samples_processed"] = parse('last1min', 'local', 'samples_processed', stats)
data["samples_dropped"] = parse('last1min', 'local', 'samples_dropped', stats)
data["modeac"] = parse('last1min', 'local', 'modeac', stats)
data["modes"] = parse('last1min', 'local', 'modes', stats)
return data or None
def parse(l1, l2, l3, stats):
"""Parse JSON stats from dump1090
Args:
l1 (str): Level 1 name of JSON tree
l2 (str): Level 2 name of JSON tree
l3 (str): Level 3 name of JSON tree
stats (str): JSON to parse
Returns:
int: Value of given stat
"""
raw = int()
if l2 in stats[l1]:
if l3 is None:
raw = stats[l1][l2]
elif l3 in stats[l1][l2]:
raw = stats[l1][l2][l3]
# The current netdata API supports only integers, so multiply your float number by
# 100 or 1000 and set the divider of the dimension to the same number.
return raw or None