File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/main/kotlin/spp/cli/commands/developer Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Commands:
54
54
add Add live instruments/views
55
55
get Get live instruments/views
56
56
remove Remove live instruments/views
57
- subscribe Subscribe to live instrument/view streams
57
+ subscribe Subscribe to live instrument/view events
58
58
version Display version information
59
59
```
60
60
Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
3
3
cliGroup =com.sourceplusplus
4
- projectVersion =0.4.2
4
+ projectVersion =0.4.3
5
5
6
6
vertxVersion =4.2.4
7
7
graalVersion = 21.3.0
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ package spp.cli.commands.developer
19
19
20
20
import com.github.ajalt.clikt.core.CliktCommand
21
21
22
- class Subscribe : CliktCommand (help = " Subscribe to live instrument/view streams " ) {
22
+ class Subscribe : CliktCommand (help = " Subscribe to live instrument/view events " ) {
23
23
override fun run () = Unit
24
24
}
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class SubscribeView : CliktCommand(
130
130
if (value == null ) value = metric.getNumber(" value" ).toString()
131
131
132
132
val metricType = metric.getJsonObject(" meta" ).getString(" metricsName" )
133
- println (" $eventTime ${metric.getString(" entityId " )} ($metricType ): $value " )
133
+ println (" $eventTime ${metric.getString(" entityName " )} ($metricType ): $value " )
134
134
}
135
135
}
136
136
You can’t perform that action at this time.
0 commit comments