logstash-output-elasticapm 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: aac689ffea32962c594a0179c663f258838ae87139cb80d6a7b778ae8ccc8312
4
+ data.tar.gz: eb5dfedba0e948693022ed0a7c1f444afcb0da268c3d2f16d4e13bb2bcc0bca0
5
+ SHA512:
6
+ metadata.gz: 82687dbe265c36021705d0fa519599a45b56bc4bfd2fbd0f76dbefcdcfca08c402d81ef2933c6ffef0fa754a4f634e6d8428d97251ca279358d77b3615bc21ed
7
+ data.tar.gz: 658d4382fe177a66c332383f4194a4b087925af938d5f44bc972bdce133d7296ea0d86640999030e58349cc09c4f544c4e329853982919b51036c9ee5c30f0a3
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ ## 0.1.0
2
+
3
+ - Plugin created with the logstash plugin generator
4
+
5
+ ## 0.2.0
6
+
7
+ - Initial integration to Elastic APM Server
data/CONTRIBUTORS ADDED
@@ -0,0 +1,11 @@
1
+ The following is a list of people who have contributed ideas, code, bug
2
+ reports, or in general have helped logstash along its way.
3
+
4
+ Contributors:
5
+
6
+ - Ryan Bartsch - rbartsch@yandex.com
7
+
8
+ Note: If you've sent us patches, bug reports, or otherwise contributed to
9
+ Logstash, and you aren't on the list above and want to be, please let us know
10
+ and we'll make sure you're here. Contributions from folks like you are what make
11
+ open source awesome.
data/DEVELOPER.md ADDED
@@ -0,0 +1,2 @@
1
+ # logstash-output-elasticapm
2
+ Example output plugin. This should help bootstrap your effort to write your own output plugin!
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ logstash_path = ENV['LOGSTASH_PATH'] || '/usr/share/logstash'
5
+
6
+ if Dir.exist?(logstash_path)
7
+ gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
8
+ gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
9
+ end
10
+
data/LICENSE ADDED
@@ -0,0 +1,11 @@
1
+ Licensed under the Apache License, Version 2.0 (the "License");
2
+ you may not use this file except in compliance with the License.
3
+ You may obtain a copy of the License at
4
+
5
+ http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software
8
+ distributed under the License is distributed on an "AS IS" BASIS,
9
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ See the License for the specific language governing permissions and
11
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # Logstash Plugin
2
+
3
+ This is a plugin for [Logstash](https://github.com/elastic/logstash).
4
+
5
+ It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
6
+
7
+ ## Documentation
8
+
9
+ Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
10
+
11
+ - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
12
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
13
+
14
+ ## Need Help?
15
+
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
+
18
+ ## Developing
19
+
20
+ ### 1. Plugin Developement and Testing
21
+
22
+ #### Code
23
+ - To get started, you'll need JRuby with the Bundler gem installed.
24
+
25
+ - Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization. We also provide [example plugins](https://github.com/logstash-plugins?query=example).
26
+
27
+ - Install dependencies
28
+ ```sh
29
+ bundle install
30
+ ```
31
+
32
+ #### Test
33
+
34
+ - Update your dependencies
35
+
36
+ ```sh
37
+ bundle install
38
+ ```
39
+
40
+ - Run tests
41
+
42
+ ```sh
43
+ bundle exec rspec
44
+ ```
45
+
46
+ ### 2. Running your unpublished Plugin in Logstash
47
+
48
+ #### 2.1 Run in a local Logstash clone
49
+
50
+ - Edit Logstash `Gemfile` and add the local plugin path, for example:
51
+ ```ruby
52
+ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
53
+ ```
54
+ - Install plugin
55
+ ```sh
56
+ bin/logstash-plugin install --no-verify
57
+ ```
58
+ - Run Logstash with your plugin
59
+ ```sh
60
+ bin/logstash -e 'filter {awesome {}}'
61
+ ```
62
+ At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
63
+
64
+ #### 2.2 Run in an installed Logstash
65
+
66
+ You can use the same **2.1** method to run your plugin in an installed Logstash by editing its `Gemfile` and pointing the `:path` to your local plugin development directory or you can build the gem and install it using:
67
+
68
+ - Build your plugin gem
69
+ ```sh
70
+ gem build logstash-filter-awesome.gemspec
71
+ ```
72
+ - Install the plugin from the Logstash home
73
+ ```sh
74
+ bin/logstash-plugin install /your/local/plugin/logstash-filter-awesome.gem
75
+ ```
76
+ - Start Logstash and proceed to test the plugin
77
+
78
+ ## Contributing
79
+
80
+ All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.
81
+
82
+ Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.
83
+
84
+ It is more important to the community that you are able to contribute.
85
+
86
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/main/CONTRIBUTING.md) file.
@@ -0,0 +1,56 @@
1
+ # encoding: utf-8
2
+ require "logstash/outputs/base"
3
+ require "logstash/namespace"
4
+ require "rest-client"
5
+ require "json"
6
+ require "jsonpath"
7
+ require "base64"
8
+
9
+ # An elasticapm output that does nothing.
10
+ class LogStash::Outputs::Elasticapm < LogStash::Outputs::Base
11
+ config_name "elasticapm"
12
+
13
+ config :apm_server_uri, :validate => :string, :requried => true
14
+
15
+ config :otlp_type, :validate => :string, :requried => true
16
+
17
+ config :api_key, :validate => :string, :required => true
18
+
19
+ config :base64_encoded_proto_field, :validate => :string, :default => "$..data"
20
+
21
+ public
22
+ def register
23
+ @uri = "#{@apm_server_uri}/v1/#{@otlp_type}"
24
+ end # def register
25
+
26
+ public
27
+ def receive(event)
28
+ begin
29
+ json = event.to_json
30
+ #puts json
31
+ headers = {}
32
+ headers['Content-Type'] = 'application/x-protobuf'
33
+ headers['Authorization'] = "ApiKey #{@api_key}"
34
+ #puts @uri
35
+ #puts headers
36
+ results = JsonPath.new(@base64_encoded_proto_field).on(json)
37
+ #puts results
38
+ results.each do |item|
39
+ #puts item
40
+ requestBody = Base64.decode64(item)
41
+ #puts requestBody
42
+ response = RestClient.post(@uri, requestBody, headers)
43
+ #puts response.code
44
+ #puts response.body
45
+ #puts response.headers
46
+ unless response.code == 200
47
+ puts "Elastic APM request failure: error code: #{response.code}, data=>#{event}"
48
+ @logger.error("Elastic APM request failure: error code: #{response.code}, data=>#{event}")
49
+ end
50
+ end
51
+ rescue Exception => ex
52
+ puts "Exception occurred in posting to Elastic APM Server: '#{ex}', data=>#{event}"
53
+ @logger.error("Exception occurred in posting to Elastic APM Server: '#{ex}', data=>#{event}")
54
+ end
55
+ end # def event
56
+ end # class LogStash::Outputs::Elasticapm
@@ -0,0 +1,26 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'logstash-output-elasticapm'
3
+ s.version = '0.2.0'
4
+ s.licenses = ['Apache-2.0']
5
+ s.summary = 'Logstash output plugin for Elastic APM'
6
+ s.description = 'Logstash output plugin to send traces and metrics to Elastic APM Server'
7
+ s.homepage = 'https://github.com/yesmarket/logstash-output-elasticapm'
8
+ s.authors = ['Ryan Bartsch']
9
+ s.email = 'rbartsch@yandex.com'
10
+ s.require_paths = ['lib']
11
+
12
+ # Files
13
+ s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+ # Tests
15
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
16
+
17
+ # Special flag to let us know this is actually a logstash plugin
18
+ s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
19
+
20
+ # Gem dependencies
21
+ s.add_runtime_dependency "rest-client", "~> 2.1"
22
+ s.add_runtime_dependency "jsonpath", "~> 1.1"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
24
+ s.add_runtime_dependency "logstash-codec-plain"
25
+ s.add_development_dependency "logstash-devutils"
26
+ end
@@ -0,0 +1,59 @@
1
+ # encoding: utf-8
2
+ require "logstash/devutils/rspec/spec_helper"
3
+ require "logstash/outputs/elasticapm"
4
+ require "logstash/codecs/plain"
5
+ require "logstash/event"
6
+
7
+ describe LogStash::Outputs::Elasticapm do
8
+ let(:apm_server_uri) { 'test' }
9
+ let(:otlp_type) { 'traces' }
10
+ let(:api_key) { 'test' }
11
+
12
+ let(:cfg) {
13
+ {
14
+ "apm_server_uri" => apm_server_uri,
15
+ "api_key" => api_key
16
+ }
17
+ }
18
+
19
+ let(:output) { LogStash::Outputs::Elasticapm.new(cfg) }
20
+
21
+ before do
22
+ output.register
23
+ end
24
+
25
+ describe "receive" do
26
+
27
+ it "should process single record" do
28
+ log = {
29
+ :requestId => "789c0eed-aaae-4e52-a5c0-8ff4dfe8678f",
30
+ :timestamp => 1682605997,
31
+ :records => [
32
+ {
33
+ :data => "CuAGCnkKHAoMc2VydmljZS5uYW1lEgwKCmRvdG5ldC1hcGkKGgoPc2VydmljZS52ZXJzaW9uEgcKBTEuMC4wCj0KE3NlcnZpY2UuaW5zdGFuY2UuaWQSJgokODJiZTgyMTUtNjFmYi00YTQzLWExMmQtODc1NTA1YmUyM2NlEuQBCjwKMU9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkVudGl0eUZyYW1ld29ya0NvcmUSBzEuMC4wLjYSowEKELkGuBbSjnhnw8k0ZdT3yRcSCJUrmpVg+qsJIgieEDk0IFmkmioEbWFpbjADOXzGYKE80VkXQfwew6I80VkXShUKCWRiLnN5c3RlbRIICgZzcWxpdGVKEQoHZGIubmFtZRIGCgRtYWluShgKDHBlZXIuc2VydmljZRIICgZ1bmkuZGJKGwoRZGIuc3RhdGVtZW50X3R5cGUSBgoEVGV4dHoAEvsDCjMKKE9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkFzcE5ldENvcmUSBzEuMC4wLjASwwMKELkGuBbSjnhnw8k0ZdT3yRcSCJ4QOTQgWaSaIgAqCFN0dWRlbnRzMAI5IEtqUTzRWRdB6FL/pTzRWRdKIQoNbmV0Lmhvc3QubmFtZRIQCg4xOTIuMTY4Ljk5LjEwNkoUCg1uZXQuaG9zdC5wb3J0EgMYiidKFAoLaHR0cC5tZXRob2QSBQoDR0VUShUKC2h0dHAuc2NoZW1lEgYKBGh0dHBKGgoLaHR0cC50YXJnZXQSCwoJL1N0dWRlbnRzSjEKCGh0dHAudXJsEiUKI2h0dHA6Ly8xOTIuMTY4Ljk5LjEwNjo1MDAyL1N0dWRlbnRzShQKC2h0dHAuZmxhdm9yEgUKAzEuMUqEAQoPaHR0cC51c2VyX2FnZW50EnEKb01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdpbjY0OyB4NjQpIEFwcGxlV2ViS2l0LzUzNy4zNiAoS0hUTUwsIGxpa2UgR2Vja28pIENocm9tZS8xMTIuMC4wLjAgU2FmYXJpLzUzNy4zNkoYCgpodHRwLnJvdXRlEgoKCFN0dWRlbnRzShcKEGh0dHAuc3RhdHVzX2NvZGUSAxjIAXoA"
34
+ }
35
+ ]
36
+ }
37
+ event = LogStash::Event.new(log)
38
+ expect {output.receive(event)}.to_not raise_error
39
+ end
40
+
41
+ it "should process multiple record" do
42
+ log = {
43
+ :requestId => "789c0eed-aaae-4e52-a5c0-8ff4dfe8678f",
44
+ :timestamp => 1682605997,
45
+ :records => [
46
+ {
47
+ :data => "CuAGCnkKHAoMc2VydmljZS5uYW1lEgwKCmRvdG5ldC1hcGkKGgoPc2VydmljZS52ZXJzaW9uEgcKBTEuMC4wCj0KE3NlcnZpY2UuaW5zdGFuY2UuaWQSJgokODJiZTgyMTUtNjFmYi00YTQzLWExMmQtODc1NTA1YmUyM2NlEuQBCjwKMU9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkVudGl0eUZyYW1ld29ya0NvcmUSBzEuMC4wLjYSowEKELkGuBbSjnhnw8k0ZdT3yRcSCJUrmpVg+qsJIgieEDk0IFmkmioEbWFpbjADOXzGYKE80VkXQfwew6I80VkXShUKCWRiLnN5c3RlbRIICgZzcWxpdGVKEQoHZGIubmFtZRIGCgRtYWluShgKDHBlZXIuc2VydmljZRIICgZ1bmkuZGJKGwoRZGIuc3RhdGVtZW50X3R5cGUSBgoEVGV4dHoAEvsDCjMKKE9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkFzcE5ldENvcmUSBzEuMC4wLjASwwMKELkGuBbSjnhnw8k0ZdT3yRcSCJ4QOTQgWaSaIgAqCFN0dWRlbnRzMAI5IEtqUTzRWRdB6FL/pTzRWRdKIQoNbmV0Lmhvc3QubmFtZRIQCg4xOTIuMTY4Ljk5LjEwNkoUCg1uZXQuaG9zdC5wb3J0EgMYiidKFAoLaHR0cC5tZXRob2QSBQoDR0VUShUKC2h0dHAuc2NoZW1lEgYKBGh0dHBKGgoLaHR0cC50YXJnZXQSCwoJL1N0dWRlbnRzSjEKCGh0dHAudXJsEiUKI2h0dHA6Ly8xOTIuMTY4Ljk5LjEwNjo1MDAyL1N0dWRlbnRzShQKC2h0dHAuZmxhdm9yEgUKAzEuMUqEAQoPaHR0cC51c2VyX2FnZW50EnEKb01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdpbjY0OyB4NjQpIEFwcGxlV2ViS2l0LzUzNy4zNiAoS0hUTUwsIGxpa2UgR2Vja28pIENocm9tZS8xMTIuMC4wLjAgU2FmYXJpLzUzNy4zNkoYCgpodHRwLnJvdXRlEgoKCFN0dWRlbnRzShcKEGh0dHAuc3RhdHVzX2NvZGUSAxjIAXoA"
48
+ },
49
+ {
50
+ :data => "CpMHCqsBCiUKEnRlbGVtZXRyeS5zZGsubmFtZRIPCg1vcGVudGVsZW1ldHJ5CiIKFnRlbGVtZXRyeS5zZGsubGFuZ3VhZ2USCAoGZG90bmV0CiQKFXRlbGVtZXRyeS5zZGsudmVyc2lvbhILCgkxLjQuMC44MDIKHAoMc2VydmljZS5uYW1lEgwKCmRvdG5ldC1hcGkKGgoPc2VydmljZS52ZXJzaW9uEgcKBTEuMC4wEuQBCjwKMU9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkVudGl0eUZyYW1ld29ya0NvcmUSBzEuMC4wLjYSowEKEEXtlOExmuP9kGv7q8Wf5uQSCPG114m+whWKIghD50wYWf+6CioEbWFpbjADOdSsA4KMgVsXQWgGQ4KMgVsXShUKCWRiLnN5c3RlbRIICgZzcWxpdGVKEQoHZGIubmFtZRIGCgRtYWluShgKDHBlZXIuc2VydmljZRIICgZ1bmkuZGJKGwoRZGIuc3RhdGVtZW50X3R5cGUSBgoEVGV4dHoAEvsDCjMKKE9wZW5UZWxlbWV0cnkuSW5zdHJ1bWVudGF0aW9uLkFzcE5ldENvcmUSBzEuMC4wLjASwwMKEEXtlOExmuP9kGv7q8Wf5uQSCEPnTBhZ/7oKIgAqCFN0dWRlbnRzMAI5xIiSgYyBWxdB6FddgoyBWxdKIQoNbmV0Lmhvc3QubmFtZRIQCg4xOTIuMTY4Ljk5LjEwNkoUCg1uZXQuaG9zdC5wb3J0EgMYiidKFAoLaHR0cC5tZXRob2QSBQoDR0VUShUKC2h0dHAuc2NoZW1lEgYKBGh0dHBKGgoLaHR0cC50YXJnZXQSCwoJL3N0dWRlbnRzSjEKCGh0dHAudXJsEiUKI2h0dHA6Ly8xOTIuMTY4Ljk5LjEwNjo1MDAyL3N0dWRlbnRzShQKC2h0dHAuZmxhdm9yEgUKAzEuMUqEAQoPaHR0cC51c2VyX2FnZW50EnEKb01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdpbjY0OyB4NjQpIEFwcGxlV2ViS2l0LzUzNy4zNiAoS0hUTUwsIGxpa2UgR2Vja28pIENocm9tZS8xMTIuMC4wLjAgU2FmYXJpLzUzNy4zNkoYCgpodHRwLnJvdXRlEgoKCFN0dWRlbnRzShcKEGh0dHAuc3RhdHVzX2NvZGUSAxjIAXoA"
51
+ }
52
+ ]
53
+ }
54
+ event = LogStash::Event.new(log)
55
+ expect {output.receive(event)}.to_not raise_error
56
+ end
57
+
58
+ end
59
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: logstash-output-elasticapm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Bartsch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-05-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rest-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jsonpath
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: logstash-core-plugin-api
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: logstash-codec-plain
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: logstash-devutils
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Logstash output plugin to send traces and metrics to Elastic APM Server
84
+ email: rbartsch@yandex.com
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - CHANGELOG.md
90
+ - CONTRIBUTORS
91
+ - DEVELOPER.md
92
+ - Gemfile
93
+ - LICENSE
94
+ - README.md
95
+ - lib/logstash/outputs/elasticapm.rb
96
+ - logstash-output-elasticapm.gemspec
97
+ - spec/outputs/elasticapm_spec.rb
98
+ homepage: https://github.com/yesmarket/logstash-output-elasticapm
99
+ licenses:
100
+ - Apache-2.0
101
+ metadata:
102
+ logstash_plugin: 'true'
103
+ logstash_group: output
104
+ post_install_message:
105
+ rdoc_options: []
106
+ require_paths:
107
+ - lib
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubygems_version: 3.1.4
120
+ signing_key:
121
+ specification_version: 4
122
+ summary: Logstash output plugin for Elastic APM
123
+ test_files:
124
+ - spec/outputs/elasticapm_spec.rb