logstash-output-riemann 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95c40e9ef363c6c2069f434eeda8154a1a3a1ad597b523d8fb277ff1b23b81d1
4
- data.tar.gz: 9a17b73c3d56799ca8f913feb429833135437f5db81aad48f177ccf00ded3b2e
3
+ metadata.gz: 85caaf3052157cbfd5d02c408e0527af63114d130545dddd04c8e0d69ebe576b
4
+ data.tar.gz: 37ad79c4b0ccc29bf1f29d9261db0719eb06090fa80d123efb2dd9beb38935f8
5
5
  SHA512:
6
- metadata.gz: ea4ae4cef4d213096d6d529ae7332d0b7b390817c4a027a5c6aa2c23778a7fe41e982fa904ccdac254067e960e0e3ea7389bed268a933f7b6b7e8d9976771aa4
7
- data.tar.gz: 508821cbc3f67143c03947025ffc24b72ae7ac2da75f9085ac80751b6d7b2024a5d31219e45ff0984009c40b17e0787bf2e46ff76023dc150993e1f391b406fc
6
+ metadata.gz: 5374862b1d760372a45784b881a180324e5a920a95ff1b797b970e2d181c16942dbcbaf37b32cb4fb8c122911126f05eabbd24b6ad87c5b2126a434996187925
7
+ data.tar.gz: 5c0873f32eb125e97e52bb6003777a96723e68da32ecff5327f2f502afb18fb8762cd2e9db80812e60a82965c3bc62518dee62511156a459c226c43a9c68fc5f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.0.5
2
+ - Fix formatting in doc for conversion to --asciidoctor [#21](https://github.com/logstash-plugins/logstash-output-riemann/pull/21)
3
+
1
4
  ## 3.0.4
2
5
  - Docs: Set the default_codec doc attribute.
3
6
 
data/docs/index.asciidoc CHANGED
@@ -32,7 +32,9 @@ outputs
32
32
  You can learn about Riemann here:
33
33
 
34
34
  * http://riemann.io/
35
+
35
36
  You can see the author talk about it here:
37
+
36
38
  * http://vimeo.com/38377415
37
39
 
38
40
 
@@ -86,7 +88,9 @@ All nested logstash fields will be mapped to riemann fields containing all paren
86
88
  separated by dots and the deepest value.
87
89
 
88
90
  As an example, the logstash event:
91
+
89
92
  [source,ruby]
93
+ -----
90
94
  {
91
95
  "@timestamp":"2013-12-10T14:36:26.151+0000",
92
96
  "@version": 1,
@@ -96,14 +100,19 @@ As an example, the logstash event:
96
100
  "key": "value"
97
101
  }
98
102
  }
103
+ -----
104
+
99
105
  Is mapped to this riemann event:
106
+
100
107
  [source,ruby]
108
+ -----
101
109
  {
102
110
  :time 1386686186,
103
111
  :host host.domain.com,
104
112
  :message log message,
105
113
  :nested_field.key value
106
114
  }
115
+ -----
107
116
 
108
117
  It can be used in conjunction with or independent of the riemann_event option.
109
118
  When used with the riemann_event any duplicate keys receive their value from
@@ -150,12 +159,14 @@ Any other field set here will be passed to Riemann as an event attribute.
150
159
 
151
160
  Example:
152
161
  [source,ruby]
162
+ -----
153
163
  riemann {
154
164
  riemann_event => {
155
165
  "metric" => "%{metric}"
156
166
  "service" => "%{service}"
157
167
  }
158
168
  }
169
+ -----
159
170
 
160
171
  `metric` and `ttl` values will be coerced to a floating point value.
161
172
  Values which cannot be coerced will zero (0.0).
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-riemann'
3
- s.version = '3.0.4'
3
+ s.version = '3.0.5'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Sends metrics to Riemann"
6
6
  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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-riemann
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-06 00:00:00.000000000 Z
11
+ date: 2019-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  version: '0'
113
113
  requirements: []
114
114
  rubyforge_project:
115
- rubygems_version: 2.6.11
115
+ rubygems_version: 2.6.13
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: Sends metrics to Riemann