Sha256: ce14a5f44eec60b37f2dbb3787f0bf12c326aa505cb96c9210fc273956390cb4

Contents?: true

Size: 750 Bytes

Versions: 2

Compression:

Stored size: 750 Bytes

Contents

import com.twitter.admin.config._
import com.twitter.conversions.time._
import com.twitter.logging.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

2 entries across 2 versions & 1 rubygems

Version Path
scala-bootstrapper-0.6.0 lib/template/config/test.scala.erb
scala-bootstrapper-0.5.0 lib/template/config/test.scala.erb