Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
j.hoerdt
sensor2graph
Commits
40224458
Commit
40224458
authored
Nov 23, 2021
by
neop
Browse files
try to understand schema
parent
4d74205e
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/sensor2graph/Main.java
View file @
40224458
...
...
@@ -116,6 +116,7 @@ public class Main {
System
.
out
.
println
(
"table "
+
fluxTable
);
for
(
var
record
:
fluxTable
.
getRecords
())
{
System
.
out
.
println
(
String
.
format
(
"%s %s: %s %s"
,
record
.
getTime
(),
record
.
getMeasurement
(),
record
.
getField
(),
record
.
getValue
()));
record
.
getValues
().
forEach
((
key
,
value
)
->
System
.
out
.
println
(
key
+
":"
+
value
));
}
}
System
.
out
.
println
(
"finished influx query"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment