├── .github ├── CODEOWNERS └── workflows │ └── build.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .tool-versions ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── docs ├── example-datadog_backlog_size.png ├── example-datadog_queue_time.png └── examples.md ├── lib ├── puma │ └── plugin │ │ ├── telemetry.rb │ │ └── telemetry │ │ ├── config.rb │ │ ├── data.rb │ │ ├── targets │ │ ├── datadog_statsd_target.rb │ │ └── io_target.rb │ │ └── version.rb └── rack │ └── request_queue_time_middleware.rb ├── puma-plugin-telemetry.gemspec └── spec ├── fixtures ├── config.rb ├── default.rb ├── dogstatsd.rb ├── puma_telemetry_subset.rb └── sockets.rb ├── integration └── plugin_spec.rb ├── puma └── plugin │ ├── telemetry │ └── config_spec.rb │ └── telemetry_spec.rb ├── rack └── request_queue_time_middleware_spec.rb ├── spec_helper.rb └── support └── server.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.6.10 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/bin/setup -------------------------------------------------------------------------------- /docs/example-datadog_backlog_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/docs/example-datadog_backlog_size.png -------------------------------------------------------------------------------- /docs/example-datadog_queue_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/docs/example-datadog_queue_time.png -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/docs/examples.md -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry.rb -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry/config.rb -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry/data.rb -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry/targets/datadog_statsd_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry/targets/datadog_statsd_target.rb -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry/targets/io_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry/targets/io_target.rb -------------------------------------------------------------------------------- /lib/puma/plugin/telemetry/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/puma/plugin/telemetry/version.rb -------------------------------------------------------------------------------- /lib/rack/request_queue_time_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/lib/rack/request_queue_time_middleware.rb -------------------------------------------------------------------------------- /puma-plugin-telemetry.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/puma-plugin-telemetry.gemspec -------------------------------------------------------------------------------- /spec/fixtures/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/fixtures/config.rb -------------------------------------------------------------------------------- /spec/fixtures/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/fixtures/default.rb -------------------------------------------------------------------------------- /spec/fixtures/dogstatsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/fixtures/dogstatsd.rb -------------------------------------------------------------------------------- /spec/fixtures/puma_telemetry_subset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/fixtures/puma_telemetry_subset.rb -------------------------------------------------------------------------------- /spec/fixtures/sockets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/fixtures/sockets.rb -------------------------------------------------------------------------------- /spec/integration/plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/integration/plugin_spec.rb -------------------------------------------------------------------------------- /spec/puma/plugin/telemetry/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/puma/plugin/telemetry/config_spec.rb -------------------------------------------------------------------------------- /spec/puma/plugin/telemetry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/puma/plugin/telemetry_spec.rb -------------------------------------------------------------------------------- /spec/rack/request_queue_time_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/rack/request_queue_time_middleware_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babbel/puma-plugin-telemetry/HEAD/spec/support/server.rb --------------------------------------------------------------------------------