File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
src/jvmMain/kotlin/spp/protocol Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,7 @@ import spp.protocol.artifact.log.LogCountSummary
1818import spp.protocol.artifact.trace.TraceResult
1919import spp.protocol.developer.SelfInfo
2020import spp.protocol.general.Service
21- import spp.protocol.instrument.LiveInstrument
22- import spp.protocol.instrument.LiveInstrumentBatch
23- import spp.protocol.instrument.LiveInstrumentType
24- import spp.protocol.instrument.LiveSourceLocation
21+ import spp.protocol.instrument.*
2522import spp.protocol.instrument.breakpoint.LiveBreakpoint
2623import spp.protocol.instrument.breakpoint.event.LiveBreakpointHit
2724import spp.protocol.instrument.log.LiveLog
Original file line number Diff line number Diff line change 11package spp.protocol.service.logging
22
3- import spp.protocol.artifact.log.LogCountSummary
43import io.vertx.codegen.annotations.ProxyGen
54import io.vertx.codegen.annotations.VertxGen
65import io.vertx.core.AsyncResult
76import io.vertx.core.Handler
7+ import io.vertx.core.json.JsonArray
8+ import kotlinx.datetime.Instant
9+ import spp.protocol.artifact.log.LogCountSummary
10+ import spp.protocol.instrument.DurationStep
811
912/* *
1013 * todo: description.
@@ -16,5 +19,14 @@ import io.vertx.core.Handler
1619@VertxGen
1720interface LogCountIndicatorService {
1821
22+ fun getPatternOccurrences (
23+ logPatterns : List <String >,
24+ serviceName : String? ,
25+ start : Instant ,
26+ stop : Instant ,
27+ step : DurationStep ,
28+ handler : Handler <AsyncResult <List <JsonArray >>>
29+ )
30+
1931 fun getLogCountSummary (handler : Handler <AsyncResult <LogCountSummary >>)
2032}
You can’t perform that action at this time.
0 commit comments