logstash-output-jira 3.0.0 → 3.0.1

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
  SHA1:
3
- metadata.gz: 04d316b2fbee2312fa8daff0d71b5e69002a7083
4
- data.tar.gz: 171eba4bc96e0b6af1b1113a11ad98f7b7bd3d7e
3
+ metadata.gz: 8c0e7c45719a36787003f5a0e5a29462c996ddb1
4
+ data.tar.gz: 9b0acff84d55071794b5df180ed49203f33a68da
5
5
  SHA512:
6
- metadata.gz: dfa0bb51ff57f22863acd9c290ec2c17ea53f7a5d76151b85a518ecc3a2a418f7d773f7a4d74963fea0fff4001c78b61cb5554c2cbfcb53164a2314220decaeb
7
- data.tar.gz: 9ca4248bb76e86301086063925a66112d0ca366419c10f2a60313563a14b43fd490d00d1ea811255363fb9b95a7dfb131377dfb1f5e86d4ce47d36730db37e19
6
+ metadata.gz: 67ba886638ffad691ca67e4b314b800ff476fe9f7bfdcbe0c73a6347e54bbae85c1515c857beb3018acf883febfaeb02d4e9af47f9595219018de799c1b0094e
7
+ data.tar.gz: 2b827f695d694c943530f708cc9b1bf2a9a054c67db75e4db98334cda5ab72cb0ec81094ea8f646f8f18615e3be40fc43d497b46a1a6fc6c13eb0881fadeef4c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.0.1
2
+ - Docs: Fix doc generation issue by adding example formatting
3
+
1
4
  ## 3.0.0
2
5
  - update plugin to the new api
3
6
  - update travis.yml
@@ -10,6 +10,8 @@ require "logstash/namespace"
10
10
  #
11
11
  # Example JSON-encoded event:
12
12
  #
13
+ # [source,yaml]
14
+ # -----------------------------------------------------------------------------
13
15
  # {
14
16
  # "message": "Hello JIRA!",
15
17
  # "@version": "1",
@@ -25,9 +27,12 @@ require "logstash/namespace"
25
27
  # "syslog_facility": "user-level",
26
28
  # "syslog_severity": "error"
27
29
  # }
30
+ # -----------------------------------------------------------------------------
28
31
  #
29
32
  # Example JIRA issue created the event above:
30
33
  #
34
+ # [source,shell]
35
+ # -----------------------------------------------------------------------------
31
36
  # Type: Task
32
37
  # Priority: 2 - Major
33
38
  # Status: TO DO
@@ -48,6 +53,7 @@ require "logstash/namespace"
48
53
  # syslog_facility_code: 1
49
54
  # syslog_facility: user-level
50
55
  # syslog_severity: error
56
+ # -----------------------------------------------------------------------------
51
57
  #
52
58
  # To use this output you'll need to ensure that your JIRA instance allows REST calls.
53
59
  #
@@ -58,12 +64,12 @@ require "logstash/namespace"
58
64
  # Origin <https://groups.google.com/forum/#!msg/logstash-users/exgrB4iQ-mw/R34apku5nXsJ>
59
65
  # and <https://botbot.me/freenode/logstash/msg/4169496/>
60
66
  # via <https://gist.github.com/electrical/4660061e8fff11cdcf37#file-jira-rb>.
61
-
67
+ #
62
68
  class LogStash::Outputs::Jira < LogStash::Outputs::Base
63
69
  config_name "jira"
64
70
 
65
71
  # The hostname to send logs to. This should target your JIRA server
66
- # and has to have the REST interface enabled
72
+ # and has to have the REST interface enabled.
67
73
  config :host, :validate => :string
68
74
 
69
75
  config :username, :validate => :string, :required => true
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-jira'
3
- s.version = '3.0.0'
3
+ s.version = '3.0.1'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Create jira tickets based on 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-jira
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-20 00:00:00.000000000 Z
11
+ date: 2017-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement