logstash-outputs-percy 1.0.0 → 1.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
  SHA256:
3
- metadata.gz: 86e88a59aa8640845990ad4e530ee75d3e9144403a4dd412492419fa853ec1f7
4
- data.tar.gz: 3a6a321473482b7a6e8d7d84c4e9a24f72c89ca16c100b148e0377919641be8b
3
+ metadata.gz: 1fd519e4a7ea8caa1fe6520990b3268f996847e97f99c2ef0a8376e9eb3cd786
4
+ data.tar.gz: 32d9514c28a2ffc8535be536d83d29e547b5ec3b17e97bf2d6be329fc89ce5c8
5
5
  SHA512:
6
- metadata.gz: 10310ae5394101e61941316c7dc1afbf72b18f83e81e8e097b0793b430ed73d9a0cc8861c7ea28d573a5ebca59b1e30d2cf27b5006bfa3b9a682a68c03f9080b
7
- data.tar.gz: 3f81aa02c32fa7fac5f0769c893296d1a6c32f0f031ca693a183961cc7daa673148a03025778f163181cbb9bd9d86ca7df63c8df7872c9e0dbf1a08a2209fb07
6
+ metadata.gz: 14aa8a5814ac32289b9c42ee746bbaab1fcafff4172e43463344918768b4c3956caba448f03d832eebfecfa2f9398ac5dbcf4d7b31105f047a2f10c1debb7b78
7
+ data.tar.gz: 9b625b0ce666c3e94cf1b9650cdf1e785d381ffd04b1dce59f454f9e9bfa401009a86ca99901dd1dcbcec82bccfaba5fe0a16fd5bb815d4c12b7907e7f62ed07
data/README.md CHANGED
@@ -46,8 +46,8 @@ git clone git@github.com:elastic/logstash.git
46
46
  cd logstash
47
47
  git checkout tags/v7.16.1
48
48
  export LOGSTASH_PATH="$(pwd)"
49
- export GEM_PATH="$LOGSTASH_PATH/vendor/bundle/jruby/2.5.0"
50
- export GEM_HOME="$LOGSTASH_PATH/vendor/bundle/jruby/2.5.0"
49
+ export GEM_PATH="$LOGSTASH_PATH/vendor/bundle/jruby/2.6.0"
50
+ export GEM_HOME="$LOGSTASH_PATH/vendor/bundle/jruby/2.6.0"
51
51
  ./gradlew assemble
52
52
  cd ..
53
53
  ruby -S bundle /config set --local path "$LOGSTASH_PATH/vendor/bundle"
@@ -58,7 +58,7 @@ ruby -S bundle exec rake vendor
58
58
  ### Build the plugin
59
59
 
60
60
  ```bash
61
- gem build logstash-output-loki.gemspec
61
+ gem build logstash-output-percy.gemspec
62
62
  ```
63
63
 
64
64
  ### Test
@@ -67,22 +67,22 @@ gem build logstash-output-loki.gemspec
67
67
  ruby -S bundle exec rspec
68
68
  ```
69
69
 
70
- Alternatively if you don't want to install JRuby. Enter inside logstash-loki container.
70
+ Alternatively if you don't want to install JRuby. Enter inside logstash-percy container.
71
71
 
72
72
  ```bash
73
- docker build -t logstash-loki ./
74
- docker run -v $(pwd)/spec:/home/logstash/spec -it --rm --entrypoint /bin/sh logstash-loki
73
+ docker build -t logstash-percy ./
74
+ docker run -v $(pwd)/spec:/home/logstash/spec -it --rm --entrypoint /bin/sh logstash-percy
75
75
  bundle exec rspec
76
76
  ```
77
77
 
78
78
  ## Install plugin to local logstash
79
79
 
80
80
  ```bash
81
- bin/logstash-plugin install --no-verify --local logstash-output-loki-1.0.0.gem
81
+ bin/logstash-plugin install --no-verify --local logstash-output-percy-1.0.0.gem
82
82
  ```
83
83
 
84
84
  ## Send sample event and check plugin is working
85
85
 
86
86
  ```bash
87
- bin/logstash -f loki.conf
87
+ bin/logstash -f percy.conf
88
88
  ```
@@ -18,7 +18,7 @@ require 'snappy'
18
18
 
19
19
  class LogStash::Outputs::Percy < LogStash::Outputs::Base
20
20
  include Edge
21
- config_name "lopro"
21
+ config_name "percy"
22
22
 
23
23
  ## 'A single instance of the Output will be shared among the pipeline worker threads'
24
24
  concurrency :single
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-outputs-percy'
3
- s.version = '1.0.0'
3
+ s.version = '1.0.1'
4
4
  s.authors = ['Britto Prabhu']
5
5
  s.email = ['britto.prabhu@apmterminals.com']
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-outputs-percy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Britto Prabhu