elastic-apm 3.5.0 → 3.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +4 -4
  2. data/.ci/Jenkinsfile +286 -183
  3. data/.ci/docker/jruby/11-jdk/Dockerfile +40 -0
  4. data/.ci/docker/jruby/12-jdk/Dockerfile +40 -0
  5. data/.ci/docker/jruby/13-jdk/Dockerfile +40 -0
  6. data/.ci/docker/jruby/7-jdk/Dockerfile +40 -0
  7. data/.ci/docker/jruby/8-jdk/Dockerfile +40 -0
  8. data/.ci/docker/jruby/README.md +31 -0
  9. data/.ci/docker/jruby/run.sh +73 -0
  10. data/.ci/docker/jruby/test.sh +13 -0
  11. data/.ci/jobs/defaults.yml +1 -1
  12. data/.ci/packer_cache.sh +12 -10
  13. data/.gitignore +3 -1
  14. data/.rspec +0 -1
  15. data/.rubocop.yml +13 -1
  16. data/CHANGELOG.asciidoc +92 -0
  17. data/CONTRIBUTING.md +6 -4
  18. data/Gemfile +35 -9
  19. data/Rakefile +37 -5
  20. data/bin/run-tests +4 -1
  21. data/docker-compose.yml +7 -0
  22. data/docs/api.asciidoc +14 -2
  23. data/docs/configuration.asciidoc +122 -27
  24. data/docs/debugging.asciidoc +14 -0
  25. data/docs/getting-started-rails.asciidoc +2 -0
  26. data/docs/graphql.asciidoc +23 -0
  27. data/docs/images/dynamic-config.svg +1 -0
  28. data/docs/index.asciidoc +6 -1
  29. data/docs/introduction.asciidoc +2 -1
  30. data/docs/performance-tuning.asciidoc +106 -0
  31. data/docs/set-up.asciidoc +5 -2
  32. data/docs/supported-technologies.asciidoc +68 -1
  33. data/docs/upgrading.asciidoc +45 -0
  34. data/elastic-apm.gemspec +17 -0
  35. data/lib/elastic-apm.rb +17 -0
  36. data/lib/elastic_apm.rb +29 -0
  37. data/lib/elastic_apm/agent.rb +48 -2
  38. data/lib/elastic_apm/central_config.rb +27 -8
  39. data/lib/elastic_apm/central_config/cache_control.rb +17 -0
  40. data/lib/elastic_apm/child_durations.rb +17 -0
  41. data/lib/elastic_apm/config.rb +59 -3
  42. data/lib/elastic_apm/config/bytes.rb +17 -0
  43. data/lib/elastic_apm/config/duration.rb +17 -0
  44. data/lib/elastic_apm/config/options.rb +18 -1
  45. data/lib/elastic_apm/config/regexp_list.rb +17 -0
  46. data/lib/elastic_apm/config/wildcard_pattern_list.rb +28 -1
  47. data/lib/elastic_apm/context.rb +17 -0
  48. data/lib/elastic_apm/context/request.rb +17 -0
  49. data/lib/elastic_apm/context/request/socket.rb +17 -0
  50. data/lib/elastic_apm/context/request/url.rb +17 -0
  51. data/lib/elastic_apm/context/response.rb +17 -0
  52. data/lib/elastic_apm/context/user.rb +17 -0
  53. data/lib/elastic_apm/context_builder.rb +18 -1
  54. data/lib/elastic_apm/deprecations.rb +17 -0
  55. data/lib/elastic_apm/error.rb +17 -0
  56. data/lib/elastic_apm/error/exception.rb +17 -0
  57. data/lib/elastic_apm/error/log.rb +17 -0
  58. data/lib/elastic_apm/error_builder.rb +17 -0
  59. data/lib/elastic_apm/grape.rb +17 -0
  60. data/lib/elastic_apm/graphql.rb +91 -0
  61. data/lib/elastic_apm/grpc.rb +99 -0
  62. data/lib/elastic_apm/instrumenter.rb +29 -4
  63. data/lib/elastic_apm/internal_error.rb +17 -0
  64. data/lib/elastic_apm/logging.rb +17 -0
  65. data/lib/elastic_apm/metadata.rb +17 -0
  66. data/lib/elastic_apm/metadata/process_info.rb +17 -0
  67. data/lib/elastic_apm/metadata/service_info.rb +22 -2
  68. data/lib/elastic_apm/metadata/system_info.rb +22 -3
  69. data/lib/elastic_apm/metadata/system_info/container_info.rb +45 -4
  70. data/lib/elastic_apm/metrics.rb +33 -1
  71. data/lib/elastic_apm/metrics/breakdown_set.rb +17 -0
  72. data/lib/elastic_apm/metrics/cpu_mem_set.rb +17 -0
  73. data/lib/elastic_apm/metrics/metric.rb +17 -0
  74. data/lib/elastic_apm/metrics/set.rb +17 -0
  75. data/lib/elastic_apm/metrics/span_scoped_set.rb +17 -0
  76. data/lib/elastic_apm/metrics/transaction_set.rb +17 -0
  77. data/lib/elastic_apm/metrics/vm_set.rb +17 -0
  78. data/lib/elastic_apm/metricset.rb +17 -0
  79. data/lib/elastic_apm/middleware.rb +25 -2
  80. data/lib/elastic_apm/naively_hashable.rb +17 -0
  81. data/lib/elastic_apm/normalizers.rb +17 -0
  82. data/lib/elastic_apm/normalizers/grape.rb +17 -0
  83. data/lib/elastic_apm/normalizers/grape/endpoint_run.rb +18 -1
  84. data/lib/elastic_apm/normalizers/rails.rb +17 -0
  85. data/lib/elastic_apm/normalizers/rails/action_controller.rb +17 -0
  86. data/lib/elastic_apm/normalizers/rails/action_mailer.rb +17 -0
  87. data/lib/elastic_apm/normalizers/rails/action_view.rb +17 -0
  88. data/lib/elastic_apm/normalizers/rails/active_record.rb +17 -0
  89. data/lib/elastic_apm/opentracing.rb +64 -23
  90. data/lib/elastic_apm/rails.rb +17 -0
  91. data/lib/elastic_apm/railtie.rb +17 -0
  92. data/lib/elastic_apm/resque.rb +29 -0
  93. data/lib/elastic_apm/sinatra.rb +17 -0
  94. data/lib/elastic_apm/span.rb +20 -2
  95. data/lib/elastic_apm/span/context.rb +17 -0
  96. data/lib/elastic_apm/span/context/db.rb +17 -0
  97. data/lib/elastic_apm/span/context/destination.rb +37 -4
  98. data/lib/elastic_apm/span/context/http.rb +17 -0
  99. data/lib/elastic_apm/span_helpers.rb +17 -0
  100. data/lib/elastic_apm/spies.rb +33 -14
  101. data/lib/elastic_apm/spies/action_dispatch.rb +17 -0
  102. data/lib/elastic_apm/spies/delayed_job.rb +17 -0
  103. data/lib/elastic_apm/spies/dynamo_db.rb +58 -0
  104. data/lib/elastic_apm/spies/elasticsearch.rb +37 -2
  105. data/lib/elastic_apm/spies/faraday.rb +17 -0
  106. data/lib/elastic_apm/spies/http.rb +17 -0
  107. data/lib/elastic_apm/spies/json.rb +17 -0
  108. data/lib/elastic_apm/spies/mongo.rb +18 -1
  109. data/lib/elastic_apm/spies/net_http.rb +23 -2
  110. data/lib/elastic_apm/spies/rake.rb +17 -0
  111. data/lib/elastic_apm/spies/redis.rb +17 -0
  112. data/lib/elastic_apm/spies/resque.rb +53 -0
  113. data/lib/elastic_apm/spies/sequel.rb +18 -1
  114. data/lib/elastic_apm/spies/shoryuken.rb +17 -0
  115. data/lib/elastic_apm/spies/sidekiq.rb +17 -0
  116. data/lib/elastic_apm/spies/sinatra.rb +17 -0
  117. data/lib/elastic_apm/spies/sneakers.rb +17 -0
  118. data/lib/elastic_apm/spies/sucker_punch.rb +54 -0
  119. data/lib/elastic_apm/spies/tilt.rb +17 -0
  120. data/lib/elastic_apm/sql.rb +21 -4
  121. data/lib/elastic_apm/sql/signature.rb +17 -0
  122. data/lib/elastic_apm/sql/tokenizer.rb +17 -0
  123. data/lib/elastic_apm/sql/tokens.rb +17 -0
  124. data/lib/elastic_apm/sql_summarizer.rb +17 -0
  125. data/lib/elastic_apm/stacktrace.rb +17 -0
  126. data/lib/elastic_apm/stacktrace/frame.rb +17 -0
  127. data/lib/elastic_apm/stacktrace_builder.rb +23 -1
  128. data/lib/elastic_apm/subscriber.rb +17 -0
  129. data/lib/elastic_apm/trace_context.rb +51 -11
  130. data/lib/elastic_apm/trace_context/traceparent.rb +17 -0
  131. data/lib/elastic_apm/trace_context/tracestate.rb +17 -0
  132. data/lib/elastic_apm/transaction.rb +33 -5
  133. data/lib/elastic_apm/transport/base.rb +39 -23
  134. data/lib/elastic_apm/transport/connection.rb +17 -0
  135. data/lib/elastic_apm/transport/connection/http.rb +17 -0
  136. data/lib/elastic_apm/transport/connection/proxy_pipe.rb +22 -0
  137. data/lib/elastic_apm/transport/filters.rb +17 -0
  138. data/lib/elastic_apm/transport/filters/hash_sanitizer.rb +77 -0
  139. data/lib/elastic_apm/transport/filters/secrets_filter.rb +29 -56
  140. data/lib/elastic_apm/transport/headers.rb +17 -0
  141. data/lib/elastic_apm/transport/serializers.rb +17 -0
  142. data/lib/elastic_apm/transport/serializers/context_serializer.rb +17 -0
  143. data/lib/elastic_apm/transport/serializers/error_serializer.rb +17 -0
  144. data/lib/elastic_apm/transport/serializers/metadata_serializer.rb +44 -20
  145. data/lib/elastic_apm/transport/serializers/metricset_serializer.rb +17 -0
  146. data/lib/elastic_apm/transport/serializers/span_serializer.rb +20 -1
  147. data/lib/elastic_apm/transport/serializers/transaction_serializer.rb +17 -0
  148. data/lib/elastic_apm/transport/user_agent.rb +17 -0
  149. data/lib/elastic_apm/transport/worker.rb +21 -0
  150. data/lib/elastic_apm/util.rb +17 -0
  151. data/lib/elastic_apm/util/inflector.rb +17 -0
  152. data/lib/elastic_apm/util/lru_cache.rb +17 -0
  153. data/lib/elastic_apm/util/throttle.rb +17 -0
  154. data/lib/elastic_apm/version.rb +18 -1
  155. metadata +26 -12
  156. data/.ci/downstreamTests.groovy +0 -185
  157. data/.ci/prepare-git-context.sh +0 -27
  158. data/CHANGELOG.md +0 -1
  159. data/codecov.yml +0 -32
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  require 'elastic_apm/transport/connection/proxy_pipe'
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -31,6 +48,11 @@ module ElasticAPM
31
48
 
32
49
  return unless compress
33
50
  enable_compression!
51
+ ObjectSpace.define_finalizer(self, self.class.finalize(@io))
52
+ end
53
+
54
+ def self.finalize(io)
55
+ proc { io.close }
34
56
  end
35
57
 
36
58
  attr_reader :io
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  require 'elastic_apm/transport/filters/secrets_filter'
@@ -0,0 +1,77 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ module ElasticAPM
21
+ module Transport
22
+ module Filters
23
+ class HashSanitizer
24
+ FILTERED = '[FILTERED]'
25
+
26
+ KEY_FILTERS = [
27
+ /passw(or)?d/i,
28
+ /auth/i,
29
+ /^pw$/,
30
+ /secret/i,
31
+ /token/i,
32
+ /api[-._]?key/i,
33
+ /session[-._]?id/i,
34
+ /(set[-_])?cookie/i
35
+ ].freeze
36
+
37
+ VALUE_FILTERS = [
38
+ # (probably) credit card number
39
+ /^\d{4}[- ]?\d{4}[- ]?\d{4}[- ]?\d{4}$/
40
+ ].freeze
41
+
42
+ attr_accessor :key_filters
43
+
44
+ def initialize
45
+ @key_filters = KEY_FILTERS
46
+ end
47
+
48
+ def strip_from!(obj, key_filters = KEY_FILTERS)
49
+ return unless obj&.is_a?(Hash)
50
+
51
+ obj.each do |k, v|
52
+ if filter_key?(k)
53
+ next obj[k] = FILTERED
54
+ end
55
+
56
+ case v
57
+ when Hash
58
+ strip_from!(v)
59
+ when String
60
+ if filter_value?(v)
61
+ obj[k] = FILTERED
62
+ end
63
+ end
64
+ end
65
+ end
66
+
67
+ def filter_key?(key)
68
+ @key_filters.any? { |regex| regex.match(key) }
69
+ end
70
+
71
+ def filter_value?(value)
72
+ VALUE_FILTERS.any? { |regex| regex.match(value) }
73
+ end
74
+ end
75
+ end
76
+ end
77
+ end
@@ -1,74 +1,47 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
20
+ require 'elastic_apm/transport/filters/hash_sanitizer'
21
+
3
22
  module ElasticAPM
4
23
  module Transport
5
24
  module Filters
6
25
  # @api private
7
26
  class SecretsFilter
8
- FILTERED = '[FILTERED]'
9
-
10
- KEY_FILTERS = [
11
- /passw(or)?d/i,
12
- /auth/i,
13
- /^pw$/,
14
- /secret/i,
15
- /token/i,
16
- /api[-._]?key/i,
17
- /session[-._]?id/i,
18
- /(set[-_])?cookie/i
19
- ].freeze
20
-
21
- VALUE_FILTERS = [
22
- # (probably) credit card number
23
- /^\d{4}[- ]?\d{4}[- ]?\d{4}[- ]?\d{4}$/
24
- ].freeze
25
-
26
27
  def initialize(config)
27
28
  @config = config
28
- @key_filters =
29
- KEY_FILTERS +
30
- config.custom_key_filters +
31
- config.sanitize_field_names
29
+ @sanitizer = HashSanitizer.new
30
+ @sanitizer.key_filters += config.custom_key_filters +
31
+ config.sanitize_field_names
32
32
  end
33
33
 
34
34
  def call(payload)
35
- strip_from! payload.dig(:transaction, :context, :request, :headers)
36
- strip_from! payload.dig(:transaction, :context, :request, :env)
37
- strip_from! payload.dig(:transaction, :context, :request, :cookies)
38
- strip_from! payload.dig(:transaction, :context, :response, :headers)
39
- strip_from! payload.dig(:error, :context, :request, :headers)
40
- strip_from! payload.dig(:error, :context, :response, :headers)
41
- strip_from! payload.dig(:transaction, :context, :request, :body)
35
+ @sanitizer.strip_from! payload.dig(:transaction, :context, :request, :headers)
36
+ @sanitizer.strip_from! payload.dig(:transaction, :context, :request, :env)
37
+ @sanitizer.strip_from! payload.dig(:transaction, :context, :request, :cookies)
38
+ @sanitizer.strip_from! payload.dig(:transaction, :context, :response, :headers)
39
+ @sanitizer.strip_from! payload.dig(:error, :context, :request, :headers)
40
+ @sanitizer.strip_from! payload.dig(:error, :context, :response, :headers)
41
+ @sanitizer.strip_from! payload.dig(:transaction, :context, :request, :body)
42
42
 
43
43
  payload
44
44
  end
45
-
46
- def strip_from!(obj)
47
- return unless obj&.is_a?(Hash)
48
-
49
- obj.each do |k, v|
50
- if filter_key?(k)
51
- next obj[k] = FILTERED
52
- end
53
-
54
- case v
55
- when Hash
56
- strip_from!(v)
57
- when String
58
- if filter_value?(v)
59
- obj[k] = FILTERED
60
- end
61
- end
62
- end
63
- end
64
-
65
- def filter_key?(key)
66
- @key_filters.any? { |regex| regex.match(key) }
67
- end
68
-
69
- def filter_value?(value)
70
- VALUE_FILTERS.any? { |regex| regex.match(value) }
71
- end
72
45
  end
73
46
  end
74
47
  end
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM
@@ -19,27 +36,34 @@ module ElasticAPM
19
36
  private
20
37
 
21
38
  def build_service(service)
22
- {
23
- name: keyword_field(service.name),
24
- environment: keyword_field(service.environment),
25
- version: keyword_field(service.version),
26
- agent: {
27
- name: keyword_field(service.agent.name),
28
- version: keyword_field(service.agent.version)
29
- },
30
- framework: {
31
- name: keyword_field(service.framework.name),
32
- version: keyword_field(service.framework.version)
33
- },
34
- language: {
35
- name: keyword_field(service.language.name),
36
- version: keyword_field(service.language.version)
37
- },
38
- runtime: {
39
- name: keyword_field(service.runtime.name),
40
- version: keyword_field(service.runtime.version)
39
+ base =
40
+ {
41
+ name: keyword_field(service.name),
42
+ environment: keyword_field(service.environment),
43
+ version: keyword_field(service.version),
44
+ agent: {
45
+ name: keyword_field(service.agent.name),
46
+ version: keyword_field(service.agent.version)
47
+ },
48
+ framework: {
49
+ name: keyword_field(service.framework.name),
50
+ version: keyword_field(service.framework.version)
51
+ },
52
+ language: {
53
+ name: keyword_field(service.language.name),
54
+ version: keyword_field(service.language.version)
55
+ },
56
+ runtime: {
57
+ name: keyword_field(service.runtime.name),
58
+ version: keyword_field(service.runtime.version)
59
+ }
41
60
  }
42
- }
61
+
62
+ if node_name = service.node_name
63
+ base[:node] = { name: keyword_field(node_name) }
64
+ end
65
+
66
+ base
43
67
  end
44
68
 
45
69
  def build_process(process)
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # frozen_string_literal: true
2
19
 
3
20
  module ElasticAPM