Trait

kamon.metric

MetricsModule

Related Doc: package metric

Permalink

trait MetricsModule extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MetricsModule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def buildDefaultCollectionContext: CollectionContext

    Permalink
  2. abstract def entity[T <: EntityRecorder](recorderFactory: EntityRecorderFactory[T], entity: Entity): T

    Permalink
  3. abstract def find(entity: Entity): Option[EntityRecorder]

    Permalink
  4. abstract def instrumentFactory(category: String): InstrumentFactory

    Permalink
  5. abstract def registerCounter(name: String, tags: Map[String, String] = Map.empty, unitOfMeasurement: Option[UnitOfMeasurement] = None, dynamicRange: Option[DynamicRange] = None): Counter

    Permalink
  6. abstract def registerGauge(name: String, valueCollector: CurrentValueCollector, tags: Map[String, String] = Map.empty, unitOfMeasurement: Option[UnitOfMeasurement] = None, dynamicRange: Option[DynamicRange] = None, refreshInterval: Option[FiniteDuration] = None): Gauge

    Permalink
  7. abstract def registerHistogram(name: String, tags: Map[String, String] = Map.empty, unitOfMeasurement: Option[UnitOfMeasurement] = None, dynamicRange: Option[DynamicRange] = None): Histogram

    Permalink
  8. abstract def registerMinMaxCounter(name: String, tags: Map[String, String] = Map.empty, unitOfMeasurement: Option[UnitOfMeasurement] = None, dynamicRange: Option[DynamicRange] = None, refreshInterval: Option[FiniteDuration] = None): MinMaxCounter

    Permalink
  9. abstract def removeCounter(name: String, tags: Map[String, String]): Boolean

    Permalink
  10. abstract def removeEntity(entity: Entity): Boolean

    Permalink
  11. abstract def removeGauge(name: String, tags: Map[String, String]): Boolean

    Permalink
  12. abstract def removeHistogram(name: String, tags: Map[String, String]): Boolean

    Permalink
  13. abstract def removeMinMaxCounter(name: String, tags: Map[String, String]): Boolean

    Permalink
  14. abstract def settings: MetricsSettings

    Permalink
  15. abstract def shouldTrack(entity: Entity): Boolean

    Permalink
  16. abstract def subscribe(filter: SubscriptionFilter, subscriber: ActorRef, permanently: Boolean): Unit

    Permalink
  17. abstract def unsubscribe(subscriber: ActorRef): Unit

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def counter(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement): Counter

    Permalink
  7. def counter(name: String, tags: Map[String, String]): Counter

    Permalink
  8. def counter(name: String, unitOfMeasurement: UnitOfMeasurement): Counter

    Permalink
  9. def counter(name: String): Counter

    Permalink
  10. def entity[T <: EntityRecorder](recorderFactory: EntityRecorderFactory[T], name: String, tags: Map[String, String]): T

    Permalink
  11. def entity[T <: EntityRecorder](recorderFactory: EntityRecorderFactory[T], name: String): T

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def find(name: String, category: String, tags: Map[String, String]): Option[EntityRecorder]

    Permalink
  16. def find(name: String, category: String): Option[EntityRecorder]

    Permalink
  17. def gauge(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  18. def gauge(name: String, tags: Map[String, String], dynamicRange: DynamicRange)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  19. def gauge(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  20. def gauge(name: String, tags: Map[String, String])(valueCollector: CurrentValueCollector): Gauge

    Permalink
  21. def gauge(name: String, unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  22. def gauge(name: String, dynamicRange: DynamicRange, refreshInterval: FiniteDuration)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  23. def gauge(name: String, refreshInterval: FiniteDuration)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  24. def gauge(name: String, dynamicRange: DynamicRange)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  25. def gauge(name: String, unitOfMeasurement: UnitOfMeasurement)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  26. def gauge(name: String)(valueCollector: CurrentValueCollector): Gauge

    Permalink
  27. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  28. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  29. def histogram(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange): Histogram

    Permalink
  30. def histogram(name: String, tags: Map[String, String], dynamicRange: DynamicRange): Histogram

    Permalink
  31. def histogram(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement): Histogram

    Permalink
  32. def histogram(name: String, tags: Map[String, String]): Histogram

    Permalink
  33. def histogram(name: String, unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange): Histogram

    Permalink
  34. def histogram(name: String, dynamicRange: DynamicRange): Histogram

    Permalink
  35. def histogram(name: String, unitOfMeasurement: UnitOfMeasurement): Histogram

    Permalink
  36. def histogram(name: String): Histogram

    Permalink
  37. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  38. def minMaxCounter(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange): MinMaxCounter

    Permalink
  39. def minMaxCounter(name: String, tags: Map[String, String], dynamicRange: DynamicRange): MinMaxCounter

    Permalink
  40. def minMaxCounter(name: String, tags: Map[String, String], unitOfMeasurement: UnitOfMeasurement): MinMaxCounter

    Permalink
  41. def minMaxCounter(name: String, tags: Map[String, String]): MinMaxCounter

    Permalink
  42. def minMaxCounter(name: String, unitOfMeasurement: UnitOfMeasurement, dynamicRange: DynamicRange): MinMaxCounter

    Permalink
  43. def minMaxCounter(name: String, dynamicRange: DynamicRange, refreshInterval: FiniteDuration): MinMaxCounter

    Permalink
  44. def minMaxCounter(name: String, refreshInterval: FiniteDuration): MinMaxCounter

    Permalink
  45. def minMaxCounter(name: String, dynamicRange: DynamicRange): MinMaxCounter

    Permalink
  46. def minMaxCounter(name: String, unitOfMeasurement: UnitOfMeasurement): MinMaxCounter

    Permalink
  47. def minMaxCounter(name: String): MinMaxCounter

    Permalink
  48. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  49. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  50. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  51. def removeCounter(name: String): Boolean

    Permalink
  52. def removeEntity(name: String, category: String, tags: Map[String, String]): Boolean

    Permalink
  53. def removeEntity(name: String, category: String): Boolean

    Permalink
  54. def removeGauge(name: String): Boolean

    Permalink
  55. def removeHistogram(name: String): Boolean

    Permalink
  56. def removeMinMaxCounter(name: String): Boolean

    Permalink
  57. def shouldTrack(entityName: String, category: String): Boolean

    Permalink
  58. def subscribe(category: String, selection: String, subscriber: ActorRef): Unit

    Permalink
  59. def subscribe(category: String, selection: String, subscriber: ActorRef, permanently: Boolean): Unit

    Permalink
  60. def subscribe(filter: SubscriptionFilter, subscriber: ActorRef): Unit

    Permalink
  61. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  62. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  63. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped