|
@@ -199,6 +199,61 @@ public class TsdbUtils extends InfluxDbUtils {
|
|
|
return results;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询,返回Map集合
|
|
|
+ *
|
|
|
+ * @param query 完整的查询语句
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<Map<String, Object>> fetchRealTimeRecords(String query) {
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
|
|
|
+ List<Map<String, Object>> results = new ArrayList<>();
|
|
|
+ QueryResult queryResult = influxDB.query(new Query(query, database));
|
|
|
+ if(queryResult.getResults().get(0).getSeries() != null){
|
|
|
+ queryResult.getResults().forEach(result -> {
|
|
|
+ result.getSeries().forEach(serial -> {
|
|
|
+ List<String> columns = serial.getColumns();
|
|
|
+ String deviceuuid = serial.getName();
|
|
|
+ int fieldSize = columns.size();
|
|
|
+ serial.getValues().forEach(value -> {
|
|
|
+ Map<String, Object> obj = new HashMap<String,Object>();
|
|
|
+ obj.put("deviceuuid", deviceuuid);
|
|
|
+ for (int i = 0; i < fieldSize; i++) {
|
|
|
+ if(columns.get(i).equals("time")){
|
|
|
+ if(!value.get(i).equals("1970-01-01T00:00:00Z")){
|
|
|
+ Date time = null;
|
|
|
+ try {
|
|
|
+ time = simpleDateFormat1.parse(value.get(i).toString());
|
|
|
+ } catch (ParseException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ //String dateStr = simpleDateFormat.format(time);
|
|
|
+ obj.put(columns.get(i), time.getTime());
|
|
|
+ }
|
|
|
+
|
|
|
+ } else if(columns.get(i).equals("timestamp")){
|
|
|
+ Date time = null;
|
|
|
+ try {
|
|
|
+ time = simpleDateFormat1.parse(value.get(i).toString());
|
|
|
+ } catch (ParseException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ //String dateStr = simpleDateFormat.format(time);
|
|
|
+ obj.put(columns.get(i), time.getTime());
|
|
|
+ }else{
|
|
|
+ obj.put(columns.get(i), value.get(i));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ results.add(obj);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ return results;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询
|
|
|
*
|