elastic-apm 3.5.0 → 3.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -77,7 +77,9 @@ module ElasticAPM
77
77
  name: keyword_field(destination.name),
78
78
  resource: keyword_field(destination.resource),
79
79
  type: keyword_field(destination.type)
80
- }
80
+ },
81
+ address: keyword_field(destination.address),
82
+ port: destination.port
81
83
  }
82
84
  end
83
85
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ElasticAPM
4
- VERSION = '3.5.0'
4
+ VERSION = '3.6.0'
5
5
  end
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.5.0
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-02-12 00:00:00.000000000 Z
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))