logstash-output-librato 3.0.6 → 3.0.7

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: a625042e50051710db6ceb2a37a27d0a55d64a5f36619419e1af71ed2537d7e2
4
- data.tar.gz: 80075f408d6e7f485c5f386d1ef10b4bc875049ac9a6a264cd9a71dca88870c3
3
+ metadata.gz: 2c439ea3907973494f5a28f217d28582defcbf7ac04f21417d174a8283f930c6
4
+ data.tar.gz: 8a9214d36e77c28044a8941cf6dfbdc7c68b10c7b7952af58c7e27d51fd1b4d9
5
5
  SHA512:
6
- metadata.gz: d702cfa170a21e58a06b8c290d92bedcac733be95f4feec2de8f0626ddd87f148827d5e300b79dcbd2c4e4801b4da2b7599fc09406b3cfc46211bd3458a27a09
7
- data.tar.gz: 40ac1f5a604164009a39bbbbf5daa2c89d22aa605976208f3d895167270a0b74f752b89f20b7da6f9c77ae815c0014ab07b6d2d99ddffc1d2f1a53dcce060a42
6
+ metadata.gz: 1513e682fa8452d1bd247fe05cc691c154edaae940b9079947fed9b570fe5109fea61cb3a134b7411426c14eb54c3a25cc77dd8a181adeeb4ee0bdcd2486d00b
7
+ data.tar.gz: 1af3bdb4f16b457136ee8d5043f5b49a421ac55123835b1ec022e6ce1e4170807db2465bff5315f7b728942769f513ea31e84bfe4a92aa80829edfa2dbfa5f9a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.0.7
2
+ - Fix formatting in doc for conversion to --asciidoctor [#9](https://github.com/logstash-plugins/logstash-output-librato/pull/9)
3
+
1
4
  ## 3.0.6
2
5
  - Docs: Set the default_codec doc attribute.
3
6
 
data/docs/index.asciidoc CHANGED
@@ -73,17 +73,23 @@ All values will be passed through `event.sprintf`
73
73
 
74
74
  Example:
75
75
  [source,ruby]
76
+ -----
76
77
  {
77
78
  "title" => "Logstash event on %{host}"
78
79
  "name" => "logstash_stream"
79
80
  }
81
+ -----
82
+
80
83
  or
84
+
81
85
  [source,ruby]
86
+ -----
82
87
  {
83
88
  "title" => "Logstash event"
84
89
  "description" => "%{message}"
85
90
  "name" => "logstash_stream"
86
91
  }
92
+ -----
87
93
 
88
94
  [id="plugins-{type}s-{plugin}-api_token"]
89
95
  ===== `api_token`
@@ -115,20 +121,26 @@ Send data to Librato as a counter
115
121
 
116
122
  Example:
117
123
  [source,ruby]
124
+ -----
118
125
  {
119
126
  "value" => "1"
120
127
  "source" => "%{host}"
121
128
  "name" => "messages_received"
122
129
  }
130
+ -----
123
131
 
124
132
  Additionally, you can override the `measure_time` for the event. Must be a unix timestamp:
133
+
125
134
  [source,ruby]
135
+ -----
126
136
  {
127
137
  "value" => "1"
128
138
  "source" => "%{host}"
129
139
  "name" => "messages_received"
130
140
  "measure_time" => "%{my_unixtime_field}"
131
141
  }
142
+ -----
143
+
132
144
  Default is to use the event's timestamp
133
145
 
134
146
  [id="plugins-{type}s-{plugin}-gauge"]
@@ -142,19 +154,26 @@ Send data to Librato as a gauge
142
154
 
143
155
  Example:
144
156
  [source,ruby]
157
+ -----
145
158
  {
146
159
  "value" => "%{bytes_received}"
147
160
  "source" => "%{host}"
148
161
  "name" => "apache_bytes"
149
162
  }
163
+ -----
164
+
150
165
  Additionally, you can override the `measure_time` for the event. Must be a unix timestamp:
166
+
151
167
  [source,ruby]
168
+ -----
152
169
  {
153
170
  "value" => "%{bytes_received}"
154
171
  "source" => "%{host}"
155
172
  "name" => "apache_bytes"
156
173
  "measure_time" => "%{my_unixtime_field}
157
174
  }
175
+ -----
176
+
158
177
  Default is to use the event's timestamp
159
178
 
160
179
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-librato'
3
- s.version = '3.0.6'
3
+ s.version = '3.0.7'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Sends metrics, annotations, and alerts to Librato based on Logstash events"
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-librato
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.6
4
+ version: 3.0.7
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
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.6.11
87
+ rubygems_version: 2.6.13
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Sends metrics, annotations, and alerts to Librato based on Logstash events