redmineedit
This is a community-maintained plugin! It does not ship with Logstash by default, but it is easy to install by running bin/logstash-plugin install logstash-output-redmine.
The redmine output is used to create a ticket via the API redmine.
It send a POST request in a JSON format and use TOKEN authentication
— Exemple of use --
output {
redmine {
url => "http://redmineserver.tld"
token => 'token'
project_id => 200
tracker_id => 1
status_id => 3
priority_id => 2
subject => "Error ... detected"
}
}
Synopsisedit
This plugin supports the following configuration options:
Required configuration options:
redmine {
priority_id => ...
project_id => ...
status_id => ...
token => ...
tracker_id => ...
url => ...
}Available configuration options:
| Setting | Input type | Required | Default value |
|---|---|---|---|
No |
| ||
No |
| ||
No |
| ||
No |
| ||
No |
| ||
No |
| ||
Yes | |||
Yes | |||
No |
| ||
Yes | |||
No |
| ||
Yes | |||
Yes | |||
Yes | |||
No |
|
Detailsedit
assigned_to_idedit
- Value type is number
-
Default value is
nil
redmine issue assigned_to not required for post_issue
codecedit
- Value type is codec
-
Default value is
"plain"
The codec used for output data. Output codecs are a convenient method for encoding your data before it leaves the output, without needing a separate filter in your Logstash pipeline.
descriptionedit
- Value type is string
-
Default value is
"%{message}"
redmine issue description required
parent_issue_idedit
- Value type is number
-
Default value is
nil
redmine issue parent_issue_id not required for post_issue
priority_idedit
- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue priority_id required
project_idedit
- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue projet_id required
status_idedit
- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue status_id required
tokenedit
- This is a required setting.
- Value type is string
- There is no default value for this setting.
redmine token user used for authentication
tracker_idedit
- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue tracker_id required