Packages

c

com.spotify.scio

ScioResult

abstract class ScioResult extends AnyRef

Represent a Scio pipeline result.

Source
ScioResult.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScioResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def getMetrics: Metrics

    Get metrics of the finished pipeline.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. lazy val allCounters: Map[MetricName, MetricValue[Long]]

    Retrieve aggregated values of all counters from the pipeline.

  5. lazy val allCountersAtSteps: Map[MetricName, Map[String, MetricValue[Long]]]

    Retrieve per step values of all counters from the pipeline.

  6. lazy val allDistributions: Map[MetricName, MetricValue[DistributionResult]]

    Retrieve aggregated values of all distributions from the pipeline.

  7. lazy val allDistributionsAtSteps: Map[MetricName, Map[String, MetricValue[DistributionResult]]]

    Retrieve per step values of all distributions from the pipeline.

  8. lazy val allGauges: Map[MetricName, MetricValue[GaugeResult]]

    Retrieve latest values of all gauges from the pipeline.

  9. lazy val allGaugesAtSteps: Map[MetricName, Map[String, MetricValue[GaugeResult]]]

    Retrieve aggregated values of all gauges from the pipeline.

  10. def as[T <: RunnerResult](implicit arg0: ClassTag[T]): T

    Get a Beam runner specific result.

  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. def counter(c: Counter): MetricValue[Long]

    Retrieve aggregated value of a single counter from the pipeline.

  14. def counterAtSteps(c: Counter): Map[String, MetricValue[Long]]

    Retrieve per step values of a single counter from the pipeline.

  15. def distribution(d: Distribution): MetricValue[DistributionResult]

    Retrieve aggregated value of a single distribution from the pipeline.

  16. def distributionAtSteps(d: Distribution): Map[String, MetricValue[DistributionResult]]

    Retrieve per step values of a single distribution from the pipeline.

  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. def gauge(g: Gauge): MetricValue[GaugeResult]

    Retrieve latest value of a single gauge from the pipeline.

  21. def gaugeAtSteps(g: Gauge): Map[String, MetricValue[GaugeResult]]

    Retrieve per step values of a single gauge from the pipeline.

  22. def getBeamMetrics: BeamMetrics
    Attributes
    protected
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. val internal: PipelineResult
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def isTest: Boolean

    Whether this is the result of a test.

  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def saveMetrics(filename: String): Unit

    Save metrics of the finished pipeline to a file.

  32. def state: State

    Pipeline's current state.

  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def tap[T](tap: ClosedTap[T]): Tap[T]
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped