Sha256: e4763c459b44c4c3fbb4b60eed31fc0a198051c6344140d2d3303beb4ae0d850

Contents?: true

Size: 758 Bytes

Versions: 5

Compression:

Stored size: 758 Bytes

Contents

import com.twitter.conversions.time._
import com.twitter.logging.config._
import com.twitter.ostrich.admin.config._
import com.twitter.birdname.config._

// test mode.
new BirdNameServiceConfig {
	
  // Add your own config here
  
  // Where your service will be exposed.
  thriftPort = 9999

  // Ostrich http admin port.  Curl this for stats, etc
  admin.httpPort = 9900

  // End user configuration
  
  // Expert-only: Ostrich stats and logger configuration.
  admin.statsNodes = new StatsConfig {
    reporters = new JsonStatsLoggerConfig {
      loggerName = "stats"
      serviceName = "birdname"
    } :: new TimeSeriesCollectorConfig
  }

  loggers =
    new LoggerConfig {
      level = Level.INFO
      handlers = new ConsoleHandlerConfig
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
scala-bootstrapper-0.9.1 lib/template/config/test.scala.erb
scala-bootstrapper-0.9.0 lib/template/config/test.scala.erb
scala-bootstrapper-0.8.1 lib/template/config/test.scala.erb
scala-bootstrapper-0.8.0 lib/template/config/test.scala.erb
scala-bootstrapper-0.7.2 lib/template/config/test.scala.erb