mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
parent
f6723e7ca9
commit
c9846fc9c3
2 changed files with 16 additions and 16 deletions
30
docs/static/maintainer-guide.asciidoc
vendored
30
docs/static/maintainer-guide.asciidoc
vendored
|
@ -110,27 +110,27 @@ Please see following annotated example and see a concrete example in https://raw
|
||||||
|
|
||||||
[source,markdown]
|
[source,markdown]
|
||||||
----
|
----
|
||||||
## 1.0.x // <1> <2>
|
## 1.0.x // <1>
|
||||||
- change description // <3>
|
- change description // <2>
|
||||||
- tag: change description // <3> <4>
|
- tag: change description // <3>
|
||||||
- tag1,tag2: change description // <3> <5>
|
- tag1,tag2: change description // <4>
|
||||||
- tag: Multi-line description // <3> <6>
|
- tag: Multi-line description // <5>
|
||||||
must be indented and can use
|
must be indented and can use
|
||||||
additional markdown syntax
|
additional markdown syntax
|
||||||
// <7>
|
// <6>
|
||||||
## 1.0.0 // <8>
|
## 1.0.0 // <7>
|
||||||
[...]
|
[...]
|
||||||
|
|
||||||
----
|
----
|
||||||
<1> Latest version is the first line of CHANGELOG.md
|
<1> Latest version is the first line of CHANGELOG.md.
|
||||||
<2> Each version identifier should be a level-2 header using `##`
|
Each version identifier should be a level-2 header using `##`
|
||||||
<3> One change description is described as a list item using a dash `-` aligned under the version identifier
|
<2> One change description is described as a list item using a dash `-` aligned under the version identifier
|
||||||
<4> One change can be tagged by a word and suffixed by `:`. +
|
<3> One change can be tagged by a word and suffixed by `:`. +
|
||||||
Common tags are `bugfix`, `feature`, `doc`, `test` or `internal`.
|
Common tags are `bugfix`, `feature`, `doc`, `test` or `internal`.
|
||||||
<5> One change can have multiple tags separated by a comma and suffixed by `:`
|
<4> One change can have multiple tags separated by a comma and suffixed by `:`
|
||||||
<6> A multi-line change description must be properly indented
|
<5> A multi-line change description must be properly indented
|
||||||
<7> Please take care to *separate versions with an empty line*
|
<6> Please take care to *separate versions with an empty line*
|
||||||
<8> Previous version identifier
|
<7> Previous version identifier
|
||||||
|
|
||||||
[float]
|
[float]
|
||||||
==== Continuous Integration
|
==== Continuous Integration
|
||||||
|
|
2
docs/static/transforming-data.asciidoc
vendored
2
docs/static/transforming-data.asciidoc
vendored
|
@ -535,7 +535,7 @@ filter {
|
||||||
# using add_field here to add & rename values to the event root
|
# using add_field here to add & rename values to the event root
|
||||||
add_field => { server_name => "%{[server][0][description]}" }
|
add_field => { server_name => "%{[server][0][description]}" }
|
||||||
add_field => { user_firstname => "%{[user][0][firstname]}" } <5>
|
add_field => { user_firstname => "%{[user][0][firstname]}" } <5>
|
||||||
add_field => { user_lastname => "%{[user][0][lastname]}" } <5>
|
add_field => { user_lastname => "%{[user][0][lastname]}" }
|
||||||
remove_field => ["server", "user"]
|
remove_field => ["server", "user"]
|
||||||
jdbc_user => "logstash"
|
jdbc_user => "logstash"
|
||||||
jdbc_password => "example"
|
jdbc_password => "example"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue