All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finagle.stats.package.scala Maven / Gradle / Ivy

There is a newer version: 21.2.0
Show newest version
package com.twitter.finagle

import com.twitter.finagle.tunable.StandardTunableMap
import com.twitter.util.tunable.{Tunable, TunableMap}

package object stats {

  /**
   * The [[TunableMap]] used within Finagle (currently only needed for finagle-stats).
   */
  private[stats] val Tunables: TunableMap = StandardTunableMap("finagle")

  /**
   * Comma-separated list of *-wildcard expressions to allowlist debug metrics (not exported by
   * default).
   *
   * Example:
   *
   * {{{
   *   foo/bar*,*baz/qux,*aux*
   * }}}
   */
  private[stats] val Verbose: Tunable[String] =
    Tunables(TunableMap.Key[String]("com.twitter.finagle.stats.verbose"))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy