README.md in sidekiq-statsd-0.1.0 vs README.md in sidekiq-statsd-0.1.1

- old
+ new

@@ -29,23 +29,27 @@ Sidekiq::Statsd to your server middleware: ```ruby Sidekiq.configure_server do |config| config.server_middleware do |chain| - chain.add Sidekiq::Statsd, env: "production", prefix: "worker", host: "localhost", port: 8125 + chain.add Sidekiq::Statsd::ServerMiddleware, env: "production", prefix: "worker", host: "localhost", port: 8125 end end + +# @param [Hash] options The options to initialize the StatsD client. +# @option options [String] :env ("production") The env to segment the metric key (e.g. env.prefix.worker_name.success|failure). +# @option options [String] :prefix ("worker") The prefix to segment the metric key (e.g. env.prefix.worker_name.success|failure). +# @option options [String] :host ("localhost") The StatsD host. +# @option options [String] :port ("8125") The StatsD port. ``` -## Usage - ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am "Add some feature"`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request ## License -MIT Licensed. See LICENSE.txt for details. \ No newline at end of file +MIT Licensed. See LICENSE.txt for details.