Skip to content

Commit bf2182a

Browse files
wallrikjsvd
wallrik
andauthored
Minor typos in docs examples (#176)
Co-authored-by: João Duarte <[email protected]>
1 parent 6455588 commit bf2182a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.4.3
2+
- Minor typos in docs examples [#176](https://github.com/logstash-plugins/logstash-filter-grok/pull/176)
3+
14
## 4.4.2
25
- Clarify the definition of matches that depend on previous captures [#169](https://github.com/logstash-plugins/logstash-filter-grok/pull/169)
36

docs/index.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ To perform matches on multiple fields just use multiple entries in the `match` h
289289
grok {
290290
match => {
291291
"speed" => "Speed: %{NUMBER:speed}"
292-
"duration => "Duration: %{NUMBER:duration}"
292+
"duration" => "Duration: %{NUMBER:duration}"
293293
}
294294
}
295295
}
@@ -306,7 +306,7 @@ However, if one pattern depends on a field created by a previous pattern, separa
306306
}
307307
grok {
308308
match => {
309-
"rest => "a number %{NUMBER"number}, and a word %{WORD:word}"
309+
"rest" => "a number %{NUMBER:number}, and a word %{WORD:word}"
310310
}
311311
}
312312
}

logstash-filter-grok.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-filter-grok'
3-
s.version = '4.4.2'
3+
s.version = '4.4.3'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "Parses unstructured event data into fields"
66
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"

0 commit comments

Comments
 (0)