Uses of Class
jline.streaming.StreamingOptions
Packages that use StreamingOptions
Package
Description
LINE Discrete Event Simulator (LDES) solver using SSJ library.
This package provides an implementation of SolverSSA.
-
Uses of StreamingOptions in jline.solvers.ldes
Methods in jline.solvers.ldes with parameters of type StreamingOptionsModifier and TypeMethodDescriptionSolverLDES.stream(StatefulNode node, int numEvents, StreamingOptions streamingOptions) Generates a sample path with streaming metrics pushed via OTLP.SolverLDES.stream(StatefulNode node, StreamingOptions streamingOptions) Generates a sample path with streaming metrics pushed via OTLP.SolverLDES.streamAggr(StatefulNode node, int numEvents, StreamingOptions streamingOptions) Generates an aggregated sample path with streaming metrics pushed via OTLP.SolverLDES.streamAggr(StatefulNode node, StreamingOptions streamingOptions) Generates an aggregated sample path with streaming metrics pushed via OTLP. -
Uses of StreamingOptions in jline.solvers.ssa
Methods in jline.solvers.ssa with parameters of type StreamingOptionsModifier and TypeMethodDescriptionSolverSSA.stream(Node node, Integer numEvents, StreamingOptions streamingOptions) Sample node state with real-time streaming to OTLP receiver.SolverSSA.stream(Node node, StreamingOptions streamingOptions) Sample node state with real-time streaming to OTLP receiver.SolverSSA.streamAggr(Node node, Integer numEvents, StreamingOptions streamingOptions) Sample aggregated node state with real-time streaming to OTLP receiver.SolverSSA.streamAggr(Node node, StreamingOptions streamingOptions) Sample aggregated node state with real-time streaming to OTLP receiver. -
Uses of StreamingOptions in jline.streaming
Methods in jline.streaming that return StreamingOptionsModifier and TypeMethodDescriptionSet the OTLP receiver endpoint.StreamingOptions.failOnConnectionError(boolean fail) Set whether to fail on connection error or fall back to dry-run mode.Collector.getOptions()Get the streaming options.StreamingOptions.includeArrivalRate(boolean include) Enable or disable arrival rate metrics.StreamingOptions.includeQueueLength(boolean include) Enable or disable queue length metrics.StreamingOptions.includeResponseTime(boolean include) Enable or disable response time metrics.StreamingOptions.includeThroughput(boolean include) Enable or disable throughput metrics.StreamingOptions.includeUtilization(boolean include) Enable or disable utilization metrics.StreamingOptions.mode(StreamingOptions.StreamMode mode) Set the streaming mode.StreamingOptions.sampleFrequency(int frequency) Set the sample frequency for SAMPLED mode.StreamingOptions.serviceName(String name) Set the service name for identification in line-est.StreamingOptions.timeWindowSeconds(double seconds) Set the time window duration for TIME_WINDOW mode.StreamingOptions.transport(StreamingOptions.TransportType transport) Set the transport type.Constructors in jline.streaming with parameters of type StreamingOptionsModifierConstructorDescriptionCollector(StreamingOptions options, NetworkStruct sn) Create a new streaming metrics collector.