- Logstash Reference: other versions:
- Logstash Introduction
- Getting Started with Logstash
- Breaking Changes
- Upgrading Logstash
- Configuring Logstash
- Performance Troubleshooting Guide
- Working with plugins
- Input plugins
- beats
- couchdb_changes
- drupal_dblog
- elasticsearch
- exec
- eventlog
- file
- ganglia
- gelf
- generator
- graphite
- github
- heartbeat
- heroku
- http
- http_poller
- irc
- imap
- jdbc
- jmx
- kafka
- log4j
- lumberjack
- meetup
- pipe
- puppet_facter
- relp
- rss
- rackspace
- rabbitmq
- redis
- salesforce
- snmptrap
- stdin
- sqlite
- s3
- sqs
- stomp
- syslog
- tcp
- unix
- udp
- varnishlog
- wmi
- websocket
- xmpp
- zenoss
- zeromq
- Output plugins
- boundary
- circonus
- csv
- cloudwatch
- datadog
- datadog_metrics
- elasticsearch
- elasticsearch_java
- exec
- file
- google_bigquery
- google_cloud_storage
- ganglia
- gelf
- graphtastic
- graphite
- hipchat
- http
- irc
- influxdb
- juggernaut
- jira
- kafka
- lumberjack
- librato
- loggly
- mongodb
- metriccatcher
- nagios
- null
- nagios_nsca
- opentsdb
- pagerduty
- pipe
- riemann
- redmine
- rackspace
- rabbitmq
- redis
- riak
- s3
- sqs
- stomp
- statsd
- solr_http
- sns
- syslog
- stdout
- tcp
- udp
- webhdfs
- websocket
- xmpp
- zabbix
- zeromq
- Filter plugins
- aggregate
- alter
- anonymize
- collate
- csv
- cidr
- clone
- cipher
- checksum
- date
- de_dot
- dns
- drop
- elasticsearch
- extractnumbers
- environment
- elapsed
- fingerprint
- geoip
- grok
- i18n
- json
- json_encode
- kv
- mutate
- metrics
- multiline
- metaevent
- prune
- punct
- ruby
- range
- syslog_pri
- sleep
- split
- throttle
- translate
- uuid
- urldecode
- useragent
- xml
- zeromq
- Codec plugins
- Contributing to Logstash
- How to write a Logstash input plugin
- How to write a Logstash input plugin
- How to write a Logstash codec plugin
- How to write a Logstash filter plugin
- Contributing a Patch to a Logstash Plugin
- Logstash Plugins Community Maintainer Guide
- Submitting your plugin to RubyGems.org and the logstash-plugins repository
- Glossary of Terms
- Release Notes
redmine
editredmine
editThis 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" } }
Synopsis
editThis 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 |
|
Details
edit
assigned_to_id
edit- Value type is number
-
Default value is
nil
redmine issue assigned_to not required for post_issue
codec
edit- 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.
description
edit- Value type is string
-
Default value is
"%{message}"
redmine issue description required
parent_issue_id
edit- Value type is number
-
Default value is
nil
redmine issue parent_issue_id not required for post_issue
priority_id
edit- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue priority_id required
project_id
edit- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue projet_id required
status_id
edit- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue status_id required
token
edit- This is a required setting.
- Value type is string
- There is no default value for this setting.
redmine token user used for authentication
tracker_id
edit- This is a required setting.
- Value type is number
- There is no default value for this setting.
redmine issue tracker_id required
url
edit- This is a required setting.
- Value type is string
- There is no default value for this setting.
host of redmine app value format : http://urlofredmine.tld - Not add /issues at end
On this page