DefaultInfluxDbMetricsRetriever.java
13.8 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/*
* Copyright 2016-present Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.influxdbmetrics;
import com.google.common.collect.BiMap;
import com.google.common.collect.EnumHashBiMap;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import org.apache.commons.lang.StringUtils;
import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Deactivate;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.ReferenceCardinality;
import org.apache.felix.scr.annotations.Service;
import org.influxdb.InfluxDB;
import org.influxdb.InfluxDBFactory;
import org.influxdb.dto.Query;
import org.influxdb.dto.QueryResult;
import org.onosproject.cluster.NodeId;
import org.onosproject.core.CoreService;
import org.slf4j.Logger;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import static org.slf4j.LoggerFactory.getLogger;
/**
* A Metric retriever implementation for querying metrics from influxDB server.
*/
@Component(immediate = true)
@Service
public class DefaultInfluxDbMetricsRetriever implements InfluxDbMetricsRetriever {
private final Logger log = getLogger(getClass());
private static final String DEFAULT_PROTOCOL = "http";
private static final String DEFAULT_POLICY = "default";
private static final String COLON_SEPARATOR = ":";
private static final String SLASH_SEPARATOR = "//";
private static final String BRACKET_START = "[";
private static final String BRACKET_END = "]";
private static final String METRIC_DELIMITER = ".";
private static final int NUB_OF_DELIMITER = 3;
private static final BiMap<TimeUnit, String> TIME_UNIT_MAP =
EnumHashBiMap.create(TimeUnit.class);
static {
// key is TimeUnit enumeration type
// value is influx database time unit keyword
TIME_UNIT_MAP.put(TimeUnit.DAYS, "d");
TIME_UNIT_MAP.put(TimeUnit.HOURS, "h");
TIME_UNIT_MAP.put(TimeUnit.MINUTES, "m");
TIME_UNIT_MAP.put(TimeUnit.SECONDS, "s");
}
@Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
protected CoreService coreService;
protected String database;
InfluxDB influxDB;
@Activate
public void activate() {
coreService.registerApplication("org.onosproject.influxdbmetrics");
log.info("Started");
}
@Deactivate
public void deactivate() {
log.info("Stopped");
}
@Override
public void config(String address, int port, String database, String username, String password) {
StringBuilder url = new StringBuilder();
url.append(DEFAULT_PROTOCOL);
url.append(COLON_SEPARATOR + SLASH_SEPARATOR);
url.append(address);
url.append(COLON_SEPARATOR);
url.append(port);
this.influxDB = InfluxDBFactory.connect(url.toString(), username, password);
this.database = database;
}
@Override
public Map<NodeId, Map<String, List<InfluxMetric>>> allMetrics(int period,
TimeUnit unit) {
Map<NodeId, Set<String>> nameMap = allMetricNames();
Map<NodeId, Map<String, List<InfluxMetric>>> metricsMap = Maps.newHashMap();
nameMap.forEach((nodeId, metricNames) ->
metricsMap.putIfAbsent(nodeId, metricsByNodeId(nodeId, period, unit))
);
return metricsMap;
}
@Override
public Map<String, List<InfluxMetric>> metricsByNodeId(NodeId nodeId, int period,
TimeUnit unit) {
Map<NodeId, Set<String>> nameMap = allMetricNames();
Map<String, List<InfluxMetric>> map = Maps.newHashMap();
nameMap.get(nodeId).forEach(metricName -> {
List<InfluxMetric> value = metric(nodeId, metricName, period, unit);
if (value != null) {
map.putIfAbsent(metricName, value);
}
});
return map;
}
@Override
public Map<NodeId, List<InfluxMetric>> metricsByName(String metricName, int period,
TimeUnit unit) {
Map<NodeId, List<InfluxMetric>> map = Maps.newHashMap();
List<InfluxMetric> metrics = Lists.newArrayList();
String queryPrefix = new StringBuilder()
.append("SELECT m1_rate FROM")
.append(database)
.append(METRIC_DELIMITER)
.append(quote(DEFAULT_POLICY))
.append(METRIC_DELIMITER)
.toString();
String querySuffix = new StringBuilder()
.append(" WHERE time > now() - ")
.append(period)
.append(unitString(unit))
.toString();
allMetricNames().keySet().forEach(nodeId -> {
String queryString = new StringBuilder()
.append(queryPrefix)
.append(quote(nodeId + METRIC_DELIMITER + metricName))
.append(querySuffix)
.toString();
Query query = new Query(queryString, database);
List<QueryResult.Result> results = influxDB.query(query).getResults();
if (results != null && results.get(0) != null
&& results.get(0).getSeries() != null) {
results.get(0).getSeries().get(0).getValues().forEach(value ->
metrics.add(new DefaultInfluxMetric.Builder()
.time((String) value.get(0))
.oneMinRate((Double) value.get(1))
.build()));
map.putIfAbsent(nodeId, metrics);
}
});
return map;
}
@Override
public List<InfluxMetric> metric(NodeId nodeId, String metricName,
int period, TimeUnit unit) {
List<InfluxMetric> metrics = Lists.newArrayList();
String queryString = new StringBuilder()
.append("SELECT m1_rate FROM ")
.append(database)
.append(METRIC_DELIMITER)
.append(quote(DEFAULT_POLICY))
.append(METRIC_DELIMITER)
.append(quote(nodeId + METRIC_DELIMITER + metricName))
.append(" WHERE time > now() - ")
.append(period)
.append(unitString(unit))
.toString();
Query query = new Query(queryString, database);
List<QueryResult.Result> results = influxDB.query(query).getResults();
if (results != null && results.get(0) != null
&& results.get(0).getSeries() != null) {
results.get(0).getSeries().get(0).getValues().forEach(value ->
metrics.add(new DefaultInfluxMetric.Builder()
.time((String) value.get(0))
.oneMinRate((Double) value.get(1))
.build()));
return metrics;
}
return null;
}
@Override
public Map<NodeId, Map<String, InfluxMetric>> allMetrics() {
Map<NodeId, Set<String>> nameMap = allMetricNames();
Map<NodeId, Map<String, InfluxMetric>> metricsMap = Maps.newHashMap();
nameMap.forEach((nodeId, metricNames) ->
metricsMap.putIfAbsent(nodeId, metricsByNodeId(nodeId))
);
return metricsMap;
}
@Override
public Map<String, InfluxMetric> metricsByNodeId(NodeId nodeId) {
Map<NodeId, Set<String>> nameMap = allMetricNames();
Map<String, InfluxMetric> map = Maps.newHashMap();
nameMap.get(nodeId).forEach(metricName -> {
InfluxMetric value = metric(nodeId, metricName);
if (value != null) {
map.putIfAbsent(metricName, value);
}
});
return map;
}
@Override
public Map<NodeId, InfluxMetric> metricsByName(String metricName) {
Map<NodeId, InfluxMetric> map = Maps.newHashMap();
String queryPrefix = new StringBuilder()
.append("SELECT m1_rate FROM")
.append(database)
.append(METRIC_DELIMITER)
.append(quote(DEFAULT_POLICY))
.append(METRIC_DELIMITER)
.toString();
String querySuffix = new StringBuilder()
.append(" LIMIT 1")
.toString();
allMetricNames().keySet().forEach(nodeId -> {
String queryString = new StringBuilder()
.append(queryPrefix)
.append(quote(nodeId + METRIC_DELIMITER + metricName))
.append(querySuffix)
.toString();
Query query = new Query(queryString, database);
List<QueryResult.Result> results = influxDB.query(query).getResults();
if (results != null && results.get(0) != null
&& results.get(0).getSeries() != null) {
InfluxMetric metric = new DefaultInfluxMetric.Builder()
.time((String) results.get(0).getSeries().get(0).getValues().get(0).get(0))
.oneMinRate((Double) results.get(0).getSeries().get(0)
.getValues().get(0).get(1)).build();
map.putIfAbsent(nodeId, metric);
}
});
return map;
}
@Override
public InfluxMetric metric(NodeId nodeId, String metricName) {
String queryString = new StringBuilder()
.append("SELECT m1_rate FROM ")
.append(database)
.append(METRIC_DELIMITER)
.append(quote(DEFAULT_POLICY))
.append(METRIC_DELIMITER)
.append(quote(nodeId + METRIC_DELIMITER + metricName))
.append(" LIMIT 1")
.toString();
Query query = new Query(queryString, database);
List<QueryResult.Result> results = influxDB.query(query).getResults();
if (results != null && results.get(0) != null
&& results.get(0).getSeries() != null) {
return new DefaultInfluxMetric.Builder()
.time((String) results.get(0).getSeries().get(0).getValues().get(0).get(0))
.oneMinRate((Double) results.get(0).getSeries().get(0)
.getValues().get(0).get(1)).build();
}
return null;
}
private String unitString(TimeUnit unit) {
return TIME_UNIT_MAP.get(unit) == null ? "h" : TIME_UNIT_MAP.get(unit);
}
private String quote(String str) {
return "\"" + str + "\"";
}
/**
* Returns all metric names that bound with node identification.
*
* @return all metric names
*/
protected Map<NodeId, Set<String>> allMetricNames() {
Map<NodeId, Set<String>> metricNameMap = Maps.newHashMap();
Query query = new Query("SHOW MEASUREMENTS", database);
List<QueryResult.Result> results = influxDB.query(query).getResults();
List<List<Object>> rawMetricNames = results.get(0).getSeries().get(0).getValues();
rawMetricNames.forEach(rawMetricName -> {
String nodeIdStr = getNodeId(strip(rawMetricName.toString()));
if (nodeIdStr != null) {
NodeId nodeId = NodeId.nodeId(nodeIdStr);
String metricName = getMetricName(strip(rawMetricName.toString()));
if (!metricNameMap.containsKey(nodeId)) {
metricNameMap.putIfAbsent(nodeId, Sets.newHashSet());
}
if (metricName != null) {
metricNameMap.get(nodeId).add(metricName);
}
}
});
return metricNameMap;
}
/**
* Strips special bracket from the full name.
*
* @param fullName full name
* @return bracket stripped string
*/
private String strip(String fullName) {
return StringUtils.strip(StringUtils.strip(fullName, BRACKET_START), BRACKET_END);
}
/**
* Returns metric name from full name.
* The elements in full name is split by using '.';
* We assume that the metric name always comes after the last three '.'
*
* @param fullName full name
* @return metric name
*/
private String getMetricName(String fullName) {
int index = StringUtils.lastOrdinalIndexOf(fullName,
METRIC_DELIMITER, NUB_OF_DELIMITER);
if (index != -1) {
return StringUtils.substring(fullName, index + 1);
} else {
log.warn("Database {} contains malformed metric name.", database);
return null;
}
}
/**
* Returns node id from full name.
* The elements in full name is split by using '.';
* We assume that the node id always comes before the last three '.'
*
* @param fullName full name
* @return node id
*/
private String getNodeId(String fullName) {
int index = StringUtils.lastOrdinalIndexOf(fullName,
METRIC_DELIMITER, NUB_OF_DELIMITER);
if (index != -1) {
return StringUtils.substring(fullName, 0, index);
} else {
log.warn("Database {} contains malformed node id.", database);
return null;
}
}
}