├── .circleci └── config.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── example ├── .env ├── Gemfile ├── client.rb ├── jobs.rb ├── reporter.rb └── server.rb ├── honeykiq.gemspec ├── lib ├── honeykiq.rb └── honeykiq │ ├── beeline_span.rb │ ├── client_middleware.rb │ ├── libhoney_span.rb │ ├── periodic_reporter.rb │ ├── server_middleware.rb │ └── version.rb └── spec ├── honeykiq ├── client_middleware_spec.rb ├── periodic_reporter_spec.rb └── server_middleware_spec.rb ├── honeykiq_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/Rakefile -------------------------------------------------------------------------------- /example/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/.env -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/client.rb -------------------------------------------------------------------------------- /example/jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/jobs.rb -------------------------------------------------------------------------------- /example/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/reporter.rb -------------------------------------------------------------------------------- /example/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/example/server.rb -------------------------------------------------------------------------------- /honeykiq.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/honeykiq.gemspec -------------------------------------------------------------------------------- /lib/honeykiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq.rb -------------------------------------------------------------------------------- /lib/honeykiq/beeline_span.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq/beeline_span.rb -------------------------------------------------------------------------------- /lib/honeykiq/client_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq/client_middleware.rb -------------------------------------------------------------------------------- /lib/honeykiq/libhoney_span.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq/libhoney_span.rb -------------------------------------------------------------------------------- /lib/honeykiq/periodic_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq/periodic_reporter.rb -------------------------------------------------------------------------------- /lib/honeykiq/server_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/lib/honeykiq/server_middleware.rb -------------------------------------------------------------------------------- /lib/honeykiq/version.rb: -------------------------------------------------------------------------------- 1 | module Honeykiq 2 | VERSION = "1.6.0".freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/honeykiq/client_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/spec/honeykiq/client_middleware_spec.rb -------------------------------------------------------------------------------- /spec/honeykiq/periodic_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/spec/honeykiq/periodic_reporter_spec.rb -------------------------------------------------------------------------------- /spec/honeykiq/server_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/spec/honeykiq/server_middleware_spec.rb -------------------------------------------------------------------------------- /spec/honeykiq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/spec/honeykiq_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carwow/honeykiq/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------