logstash-input-heartbeat 3.1.0 → 3.1.1
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/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +2 -2
- data/logstash-input-heartbeat.gemspec +1 -1
- data/spec/inputs/heartbeat_spec.rb +13 -10
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 817e131d53d50b64abb6f9183d0c1fb032374db499af5fc202c98ab18659647c
|
4
|
+
data.tar.gz: 982ffbba89a6ece2f0d5d2a79f73b2452b7845601147df6a36105b8553d8d2c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 972fd95504786ca81f615440d472e06b98585235c3f9d0098584875b12777761a0d8d9c9d54baafbebf6727d31f53283ab7c43d295f95bdb2f63f4500184bfe4
|
7
|
+
data.tar.gz: 7c69ed49963e15d13d82cd8fe86c307469c4f96138ff9fa3130fd667558c2165ef26440b65b6966179c34db2f4775e1e4f3dbf157fbf13dcd622660b1048e990
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.1.1
|
2
|
+
- Docs: added information on ECS v8 support [#19](https://github.com/logstash-plugins/logstash-input-heartbeat/pull/19)
|
3
|
+
|
1
4
|
## 3.1.0
|
2
5
|
- Added new `sequence` setting to manage the type of sequence generator and added ECS
|
3
6
|
compatibility behavior [#18](https://github.com/logstash-plugins/logstash-input-heartbeat/pull/18)
|
data/docs/index.asciidoc
CHANGED
@@ -41,7 +41,7 @@ The existing `host` field is moved to `[host][name]` when ECS is enabled.
|
|
41
41
|
|
42
42
|
[cols="<l,<l,e,<e"]
|
43
43
|
|============================================================================================================
|
44
|
-
|`disabled` |`v1`
|
44
|
+
|`disabled` |`v1`, `v8` |Availability |Description
|
45
45
|
|
46
46
|
|[host] |[host][name] |Always |Name or address of the host is running the plugin
|
47
47
|
|[clock] |[event][sequence] |When `sequence` setting enables it |Increment counter based on seconds or from local 0 based counter
|
@@ -83,7 +83,7 @@ This is typically used only for testing purposes.
|
|
83
83
|
* Value type is <<string,string>>
|
84
84
|
* Supported values are:
|
85
85
|
** `disabled`: `clock` counter field added at root level
|
86
|
-
** `v1`: ECS compliant `[event][sequence]` counter field added to the event
|
86
|
+
** `v1`,`v8`: ECS compliant `[event][sequence]` counter field added to the event
|
87
87
|
* Default value depends on which version of Logstash is running:
|
88
88
|
** When Logstash provides a `pipeline.ecs_compatibility` setting, its value is used as the default
|
89
89
|
** Otherwise, the default value is `disabled`.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-heartbeat'
|
4
|
-
s.version = '3.1.
|
4
|
+
s.version = '3.1.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Generates heartbeat events for testing"
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
@@ -118,19 +118,22 @@ describe LogStash::Inputs::Heartbeat do
|
|
118
118
|
end # it "should return an event with the current time (as epoch)"
|
119
119
|
end # context "Epoch test"
|
120
120
|
|
121
|
-
shared_examples "
|
122
|
-
|
121
|
+
shared_examples "host name respects ECS setting" do |ecs_compatibility, field_name|
|
122
|
+
context "when ECS compatibility is `#{ecs_compatibility}`" do
|
123
|
+
subject { LogStash::Inputs::Heartbeat.new({"ecs_compatibility" => ecs_compatibility}) }
|
123
124
|
|
124
|
-
|
125
|
-
|
126
|
-
|
125
|
+
before(:each) do
|
126
|
+
subject.register
|
127
|
+
end
|
127
128
|
|
128
|
-
|
129
|
-
|
130
|
-
|
129
|
+
it "populates the host name into `#{field_name}`" do
|
130
|
+
evt = subject.generate_message(sequence)
|
131
|
+
expect(evt.get(field_name)).to eq(Socket.gethostname)
|
132
|
+
end
|
131
133
|
end
|
132
134
|
end
|
133
135
|
|
134
|
-
it_behaves_like "
|
135
|
-
it_behaves_like "
|
136
|
+
it_behaves_like "host name respects ECS setting", :disabled, "host"
|
137
|
+
it_behaves_like "host name respects ECS setting", :v1, "[host][name]"
|
138
|
+
it_behaves_like "host name respects ECS setting", :v8, "[host][name]"
|
136
139
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-heartbeat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,8 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
154
|
- !ruby/object:Gem::Version
|
155
155
|
version: '0'
|
156
156
|
requirements: []
|
157
|
-
|
158
|
-
rubygems_version: 2.6.13
|
157
|
+
rubygems_version: 3.1.6
|
159
158
|
signing_key:
|
160
159
|
specification_version: 4
|
161
160
|
summary: Generates heartbeat events for testing
|