elastic-apm 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ci/Jenkinsfile +141 -121
- data/.ci/docker/jruby/11-jdk/Dockerfile +40 -0
- data/.ci/docker/jruby/12-jdk/Dockerfile +40 -0
- data/.ci/docker/jruby/13-jdk/Dockerfile +40 -0
- data/.ci/docker/jruby/7-jdk/Dockerfile +40 -0
- data/.ci/docker/jruby/8-jdk/Dockerfile +40 -0
- data/.ci/docker/jruby/README.md +31 -0
- data/.ci/docker/jruby/run.sh +73 -0
- data/.ci/docker/jruby/test.sh +13 -0
- data/.gitignore +3 -1
- data/.rubocop.yml +11 -2
- data/CHANGELOG.asciidoc +16 -0
- data/CONTRIBUTING.md +6 -4
- data/Gemfile +14 -9
- data/Rakefile +10 -5
- data/docker-compose.yml +5 -0
- data/docs/api.asciidoc +14 -2
- data/docs/configuration.asciidoc +5 -11
- data/docs/graphql.asciidoc +23 -0
- data/docs/index.asciidoc +4 -0
- data/docs/supported-technologies.asciidoc +51 -1
- data/docs/upgrading.asciidoc +45 -0
- data/lib/elastic_apm.rb +12 -0
- data/lib/elastic_apm/config.rb +7 -1
- data/lib/elastic_apm/graphql.rb +74 -0
- data/lib/elastic_apm/grpc.rb +82 -0
- data/lib/elastic_apm/resque.rb +12 -0
- data/lib/elastic_apm/span/context/destination.rb +20 -4
- data/lib/elastic_apm/spies/resque.rb +43 -0
- data/lib/elastic_apm/sql.rb +4 -4
- data/lib/elastic_apm/stacktrace_builder.rb +6 -1
- data/lib/elastic_apm/trace_context.rb +34 -11
- data/lib/elastic_apm/transport/serializers/span_serializer.rb +3 -1
- data/lib/elastic_apm/version.rb +1 -1
- metadata +16 -3
- data/CHANGELOG.md +0 -1
data/lib/elastic_apm/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elastic-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mikkel Malmberg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -51,6 +51,14 @@ files:
|
|
51
51
|
- ".ci/.jenkins_master_framework.yml"
|
52
52
|
- ".ci/.jenkins_ruby.yml"
|
53
53
|
- ".ci/Jenkinsfile"
|
54
|
+
- ".ci/docker/jruby/11-jdk/Dockerfile"
|
55
|
+
- ".ci/docker/jruby/12-jdk/Dockerfile"
|
56
|
+
- ".ci/docker/jruby/13-jdk/Dockerfile"
|
57
|
+
- ".ci/docker/jruby/7-jdk/Dockerfile"
|
58
|
+
- ".ci/docker/jruby/8-jdk/Dockerfile"
|
59
|
+
- ".ci/docker/jruby/README.md"
|
60
|
+
- ".ci/docker/jruby/run.sh"
|
61
|
+
- ".ci/docker/jruby/test.sh"
|
54
62
|
- ".ci/downstreamTests.groovy"
|
55
63
|
- ".ci/jobs/apm-agent-ruby-downstream.yml"
|
56
64
|
- ".ci/jobs/apm-agent-ruby-linting-mbp.yml"
|
@@ -68,7 +76,6 @@ files:
|
|
68
76
|
- ".rspec"
|
69
77
|
- ".rubocop.yml"
|
70
78
|
- CHANGELOG.asciidoc
|
71
|
-
- CHANGELOG.md
|
72
79
|
- CODE_OF_CONDUCT.md
|
73
80
|
- CONTRIBUTING.md
|
74
81
|
- Dockerfile
|
@@ -100,6 +107,7 @@ files:
|
|
100
107
|
- docs/debugging.asciidoc
|
101
108
|
- docs/getting-started-rack.asciidoc
|
102
109
|
- docs/getting-started-rails.asciidoc
|
110
|
+
- docs/graphql.asciidoc
|
103
111
|
- docs/index.asciidoc
|
104
112
|
- docs/introduction.asciidoc
|
105
113
|
- docs/log-correlation.asciidoc
|
@@ -108,6 +116,7 @@ files:
|
|
108
116
|
- docs/release-notes.asciidoc
|
109
117
|
- docs/set-up.asciidoc
|
110
118
|
- docs/supported-technologies.asciidoc
|
119
|
+
- docs/upgrading.asciidoc
|
111
120
|
- elastic-apm.gemspec
|
112
121
|
- lib/elastic-apm.rb
|
113
122
|
- lib/elastic_apm.rb
|
@@ -134,6 +143,8 @@ files:
|
|
134
143
|
- lib/elastic_apm/error/log.rb
|
135
144
|
- lib/elastic_apm/error_builder.rb
|
136
145
|
- lib/elastic_apm/grape.rb
|
146
|
+
- lib/elastic_apm/graphql.rb
|
147
|
+
- lib/elastic_apm/grpc.rb
|
137
148
|
- lib/elastic_apm/instrumenter.rb
|
138
149
|
- lib/elastic_apm/internal_error.rb
|
139
150
|
- lib/elastic_apm/logging.rb
|
@@ -164,6 +175,7 @@ files:
|
|
164
175
|
- lib/elastic_apm/opentracing.rb
|
165
176
|
- lib/elastic_apm/rails.rb
|
166
177
|
- lib/elastic_apm/railtie.rb
|
178
|
+
- lib/elastic_apm/resque.rb
|
167
179
|
- lib/elastic_apm/sinatra.rb
|
168
180
|
- lib/elastic_apm/span.rb
|
169
181
|
- lib/elastic_apm/span/context.rb
|
@@ -182,6 +194,7 @@ files:
|
|
182
194
|
- lib/elastic_apm/spies/net_http.rb
|
183
195
|
- lib/elastic_apm/spies/rake.rb
|
184
196
|
- lib/elastic_apm/spies/redis.rb
|
197
|
+
- lib/elastic_apm/spies/resque.rb
|
185
198
|
- lib/elastic_apm/spies/sequel.rb
|
186
199
|
- lib/elastic_apm/spies/shoryuken.rb
|
187
200
|
- lib/elastic_apm/spies/sidekiq.rb
|
data/CHANGELOG.md
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
Release notes are now available in our documentation at ([elastic.co](https://www.elastic.co/guide/en/apm/agent/ruby/current/release-notes.html))
|