Sha256: 73544d5122d6e5d098efef404814091432ae973296fdd2760774c1616255a79a

Contents?: true

Size: 1.31 KB

Versions: 132

Compression:

Stored size: 1.31 KB

Contents

#!/usr/bin/env ruby
require 'rubygems'
require 'rack'
require 'rack/handler/mongrel'
require 'optparse'

port = 3000
options = { }
appname = nil
OptionParser.new do |opts|
  opts.banner = "Usage: #{File.basename($0)} [options] [app_name]"
  opts.on("-p", "--port=port", Integer, "default: #{port}") { | port | }
  opts.on("--[no-]logging", "turn off request logging" ) { | l | options[:logging] = l }
  opts.on("--license=license_key", "override license key" ) { | l | options[:license_key] = l }
  opts.on("--install", "install a newrelic.yml template" ) { | l | options[:install] = true }
  opts.separator ""
  opts.separator "app_name is the name of the application where the metrics will be stored"
  opts.separator ""
  # The rackup file references this var
  appname = opts.parse!(ARGV.clone).first
end

options[:app_name] = appname if appname

ru_file = File.expand_path(File.join(File.dirname(__FILE__), "..", "lib", "new_relic", "rack", "mongrel_rpm.ru"))
rackup_code = File.read ru_file
builder = Rack::Builder.new { eval rackup_code, binding, ru_file }

options = { :Host => '127.0.0.1', :Port => port }
Rack::Handler::Mongrel.run(builder.to_app, options) do | server |
  NewRelic::Agent.logger.info "Started Mongrel listening for '#{NewRelic::Control.instance.app_names.join(" and ")}' data at #{server.host}:#{server.port}" 
end

Version data entries

132 entries across 132 versions & 4 rubygems

Version Path
newrelic_rpm-3.6.3.106 bin/mongrel_rpm
newrelic_rpm-3.6.3.105.beta bin/mongrel_rpm
newrelic_rpm-3.6.3.104 bin/mongrel_rpm
newrelic_rpm-3.6.3.103.beta bin/mongrel_rpm
newrelic_rpm-3.6.2.96 bin/mongrel_rpm
newrelic_rpm-3.6.2.90.beta bin/mongrel_rpm
newrelic_rpm-3.6.1.88 bin/mongrel_rpm
newrelic_rpm-3.6.1.87 bin/mongrel_rpm
newrelic_rpm-3.6.1.86.beta bin/mongrel_rpm
newrelic_rpm-3.6.1.85.beta bin/mongrel_rpm
newrelic_rpm-3.6.0.83 bin/mongrel_rpm
newrelic_rpm-3.6.0.78 bin/mongrel_rpm
wd_newrelic_rpm-3.5.8 bin/mongrel_rpm
sundawg_newrelic_rpm-3.5.8.2 bin/mongrel_rpm
sundawg_newrelic_rpm-3.5.8.1 bin/mongrel_rpm
newrelic_rpm-3.6.0.74.beta bin/mongrel_rpm
newrelic_rpm-3.5.8.72 bin/mongrel_rpm
newrelic_rpm-3.5.8.70 bin/mongrel_rpm
newrelic_rpm-3.5.8.64.beta bin/mongrel_rpm
newrelic_rpm-3.5.7.59 bin/mongrel_rpm