gitlab-fluent-plugin-redis-slowlog 0.0.1.pre → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8104bc9262ab90f07e653d801a21ed7384f8d53a3bbc7644d3f568c9cd2a0be
4
- data.tar.gz: cb9da92f38150d81e5927b0ffb9710de9eb9dfff1b9a5b9233fa42dc40e508c2
3
+ metadata.gz: 849d65a25ba670f60d324188cb543a9b5b618cde5683d27e95cecd862290bddc
4
+ data.tar.gz: 12557c95bfd6029bbe899c826dad3038e7d285e3b5fe1b7d0747a200d91319bc
5
5
  SHA512:
6
- metadata.gz: ae18b72578831c8ba6d58a6c82df91c75a9c9dca51ed5c6546765afba1193090dc4583999fa30be0d508611e414cc1f5cffa1ebe3e6cc927434dede4ba06ec95
7
- data.tar.gz: c33ebe9e818ea120eac6f900c62c1bc61c91fe5d9dde5a367b84f65f45895bc19c673337b184ffe3ca9f8f62c56d63dec9c227a2f6e7bc0e19d01dfabd8e9c9e
6
+ metadata.gz: e79d5c3a510092ce501cd67294eb2faaa4edd333bfb706d9508e2a3a8917d861ab6e87eeb1f4cf04e9d3d0698159911e1462e745258bc726a1881c2f9f62ba35
7
+ data.tar.gz: b4c8d26df8598d9700168b1eccf0316db60b3ca5864339c4c72bd927124180174d6de9c2723bd569702cdc7386ebde74bce9b7d54a5d02cf37dcaace20d152f6
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  *.gem
2
+ Gemfile.lock
@@ -0,0 +1,42 @@
1
+ workflow:
2
+ rules:
3
+ # For merge requests, create a pipeline.
4
+ - if: '$CI_MERGE_REQUEST_IID'
5
+ # For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
6
+ - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
7
+ # For tags, create a pipeline.
8
+ - if: '$CI_COMMIT_TAG'
9
+
10
+ .test_template: &test_definition
11
+ stage: test
12
+ script:
13
+ - gem install bundler
14
+ - bundle install
15
+ - bundle exec rake
16
+
17
+ test2.6:
18
+ image: ruby:2.6
19
+ <<: *test_definition
20
+ test2.5:
21
+ image: ruby:2.5
22
+ <<: *test_definition
23
+ test2.4:
24
+ image: ruby:2.4
25
+ <<: *test_definition
26
+
27
+ deploy:
28
+ image: ruby:2.6
29
+ stage: deploy
30
+ script:
31
+ - gem install bundler
32
+ - tools/deploy-rubygem.sh
33
+ only:
34
+ - tags
35
+
36
+ release:
37
+ image: ruby:2.6
38
+ stage: deploy
39
+ script:
40
+ - tools/update-changelog.rb "${CI_COMMIT_TAG}"
41
+ only:
42
+ - tags
@@ -0,0 +1,17 @@
1
+ inherit_gem:
2
+ gitlab-styles:
3
+ - rubocop-default.yml
4
+
5
+ AllCops:
6
+ TargetRubyVersion: 2.4
7
+
8
+ # Let's just pick something from the beginning
9
+ Style/StringLiterals:
10
+ Enabled: true
11
+ EnforcedStyle: double_quotes
12
+
13
+ # This isn't Rails, so disable these
14
+ Rails/RakeEnvironment:
15
+ Enabled: false
16
+ CodeReuse/ActiveRecord:
17
+ Enabled: false
data/README.md CHANGED
@@ -94,3 +94,39 @@ Default value: `128`.
94
94
  The time in seconds to wait between `SLOWLOG` commands.
95
95
 
96
96
  Default value: `10`.
97
+
98
+ ## Development
99
+
100
+ After checking out the repository, run `bundle install` to install all
101
+ dependencies.
102
+
103
+ After that, you can run `bundle exec rake` to run all lints and
104
+ specs.
105
+
106
+ Other rake tasks:
107
+
108
+ ```
109
+ rake build # Build gitlab-fluent-plugin-redis-slowlog-0.gem into the pkg directory
110
+ rake clean # Remove any temporary products
111
+ rake clobber # Remove any generated files
112
+ rake console # Start an interactive console with the gem loaded
113
+ rake install # Build and install gitlab-fluent-plugin-redis-slowlog-0.gem into system gems
114
+ rake install:local # Build and install gitlab-fluent-plugin-redis-slowlog-0.gem into system gems without network access
115
+ rake release[remote] # Create tag v0 and build and push gitlab-fluent-plugin-redis-slowlog-0.gem to rubygems.org
116
+ rake spec # Run RSpec code examples
117
+ rake verify # Run RuboCop
118
+ rake verify:auto_correct # Auto-correct RuboCop offenses
119
+ ```
120
+
121
+ ### Releasing a new version
122
+
123
+ Releasing a new version can be done by pushing a new tag, or creating
124
+ it from the
125
+ [interface](https://gitlab.com/gitlab-org/fluent-plugin-redis-slowlog/-/tags).
126
+
127
+ A new changelog will automatically be added to the release on GitLab.
128
+
129
+ The new version will automatically be published to
130
+ [rubygems](https://rubygems.org/gems/gitlab-fluent-plugin-redis-slowlog)
131
+ when the pipeline for the tag completes. It might take a few minutes
132
+ before the update is available.
data/Rakefile CHANGED
@@ -1,12 +1,17 @@
1
1
  require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "rubocop/rake_task"
2
4
 
3
- require "rake/testtask"
5
+ RSpec::Core::RakeTask.new(:spec)
6
+ RuboCop::RakeTask.new(:verify)
4
7
 
5
- Rake::TestTask.new(:test) do |t|
6
- t.libs.push("lib", "test")
7
- t.test_files = FileList["test/**/test_*.rb"]
8
- t.verbose = true
9
- t.warning = true
8
+ desc "Start an interactive console with the gem loaded"
9
+ task :console do
10
+ require "pry"
11
+ require "fluent/env"
12
+ require "fluent/plugin/in_redis_slowlog"
13
+
14
+ Pry.start
10
15
  end
11
16
 
12
- task default: [:test]
17
+ task default: [:verify, :spec]
@@ -3,12 +3,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "gitlab-fluent-plugin-redis-slowlog"
6
- spec.version = "0.0.1.pre" # `git describe --tags`.chomp.gsub(/^v/, "")
6
+ spec.version = `git describe --tags`.chomp.gsub(/^v/, "")
7
7
  spec.metadata = { "source_code_uri" => "https://gitlab.com/gitlab-org/fluent-plugin-redis-slowlog" }
8
8
  spec.authors = ["Bob Van Landuyt"]
9
9
  spec.email = ["bob@gitlab.com"]
10
10
 
11
- spec.required_ruby_version = ">= 2.6"
11
+ spec.required_ruby_version = ">= 2.4"
12
12
 
13
13
  spec.summary = "Emit redis slowlog entries into fluentd"
14
14
  spec.homepage = "http://gitlab.com/gitlab-org/gitlab-fluent-plugin-redis-slowlog"
@@ -0,0 +1,120 @@
1
+ require "spec_helper"
2
+
3
+ describe Fluent::Plugin::RedisSlowlogInput do
4
+ let(:config) do
5
+ { tag: "redis.slowlog" }
6
+ end
7
+
8
+ let(:plugin) { driver.instance }
9
+ let(:slowlog) { [] }
10
+ let(:fake_redis) { instance_double(Redis, ping: "PONG", quit: "OK", slowlog: slowlog) }
11
+
12
+ subject(:driver) do
13
+ config_string = config.map { |key, value| "#{key} #{value}" }.join("\n")
14
+ Fluent::Test::Driver::Input.new(described_class).configure(config_string)
15
+ end
16
+
17
+ before do
18
+ Fluent::Test.setup
19
+ end
20
+
21
+ context "when redis can't be reached" do
22
+ it "raises an error" do
23
+ expect { driver.run }.to raise_error(Redis::CannotConnectError)
24
+ end
25
+ end
26
+
27
+ context "when specifying redis connection attributes" do
28
+ let(:config) do
29
+ { tag: "redis.slowlog",
30
+ url: "redis://:p4ssw0rd@10.0.1.1:6380/15",
31
+ path: "/path/to/redis.sock",
32
+ host: "localhost",
33
+ port: 1234,
34
+ password: "5iveL!fe" }
35
+ end
36
+
37
+ it "delegates all of them to redis-rb" do
38
+ # In ruby 2.5+ this could be config.slice(*[])
39
+ redis_params = config.select { |name, _| [:url, :path, :host, :port, :password].include?(name) }
40
+
41
+ expect(Redis).to receive(:new).with(redis_params).and_return(fake_redis)
42
+
43
+ driver.run
44
+ end
45
+ end
46
+
47
+ context "when redis is available" do
48
+ let(:config) do
49
+ {
50
+ tag: "redis.slowlog",
51
+ interval: 0,
52
+ logsize: 10
53
+ }
54
+ end
55
+
56
+ before do
57
+ allow(plugin).to receive(:redis).and_return(fake_redis)
58
+ end
59
+
60
+ after do
61
+ # Wait for the thread polling redis to finish
62
+ plugin.__send__(:watcher).join
63
+ end
64
+
65
+ it "does not raise errors" do
66
+ expect { driver.run }.not_to raise_error
67
+ end
68
+
69
+ it "polls the slowlog with the configured interval and size" do
70
+ expect(plugin).to receive(:sleep).with(0).ordered
71
+ expect(fake_redis).to receive(:slowlog).with("get", 10).ordered
72
+ expect(plugin).to receive(:sleep).with(0).ordered
73
+ expect(fake_redis).to receive(:slowlog).with("get", 10).ordered
74
+
75
+ # Limit to 2 cycles
76
+ allow(plugin).to receive(:watching).thrice.and_return(true, true, false)
77
+
78
+ driver.run
79
+ end
80
+
81
+ context "when the slowlog returns entries" do
82
+ let(:slowlog) do
83
+ [
84
+ [25640, 1590522258, 1, %w[ping]],
85
+ [25639, 1590522249, 1, %w[ping]],
86
+ [25638, 1590522208, 5, %w[SCAN 0]]
87
+ ]
88
+ end
89
+
90
+ let(:expected_entries) do
91
+ slowlog.map(&method(:log_entry)).sort_by { |event| event["id"] }
92
+ end
93
+
94
+ let(:emitted_entries) { driver.events.map(&:last) }
95
+
96
+ it "emits an event for each slowlog in reverse order" do
97
+ driver.run(expect_emits: 3)
98
+
99
+ expect(driver.events.size).to eq(3)
100
+ expect(emitted_entries).to eq(expected_entries)
101
+ end
102
+
103
+ it "does not log the same event twice" do
104
+ expect(fake_redis).to receive(:slowlog).and_return(slowlog.last(1), slowlog)
105
+
106
+ driver.run(expect_emits: 3)
107
+
108
+ expect(driver.events.size).to eq(3)
109
+ expect(emitted_entries).to eq(expected_entries)
110
+ end
111
+ end
112
+ end
113
+
114
+ def log_entry(slowlog_entry)
115
+ { "id" => slowlog_entry.first,
116
+ "timestamp" => Time.at(slowlog_entry[1]),
117
+ "exec_time" => slowlog_entry[2],
118
+ "command" => slowlog_entry.last }
119
+ end
120
+ end
@@ -0,0 +1,15 @@
1
+ require "rspec"
2
+ require "fluent/test"
3
+ require "fluent/test/driver/input"
4
+ require "fluent/test/helpers"
5
+ require "pry"
6
+
7
+ Dir.glob(File.expand_path("../lib/**/*.rb", __dir__)).each(&method(:require))
8
+
9
+ # Test::Unit is required for fluent/test, but we don't want it to autorun when
10
+ # required
11
+ Test::Unit::AutoRunner.need_auto_run = false
12
+
13
+ RSpec.configure do |config|
14
+ config.include Fluent::Test::Helpers
15
+ end
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+ IFS=$'\n\t'
5
+
6
+ mkdir -p ~/.gem/
7
+ temp_file=$(mktemp)
8
+
9
+ # Revert change the credentials file
10
+ function revert_gem_cred_switch {
11
+ mv "$temp_file" ~/.gem/credentials
12
+ }
13
+
14
+ if [[ -f ~/.gem/credentials ]]; then
15
+ echo "Temporarily moving existing credentials to $temp_file"
16
+ mv ~/.gem/credentials "$temp_file"
17
+ trap revert_gem_cred_switch EXIT
18
+ fi
19
+
20
+ cat <<EOD > ~/.gem/credentials
21
+ ---
22
+ :rubygems_api_key: $RUBYGEMS_API_KEY
23
+ EOD
24
+ chmod 600 ~/.gem/credentials
25
+
26
+ set -x
27
+ rm -rf pkg/
28
+ mkdir -p pkg/
29
+ bundle install
30
+ bundle exec rake build
31
+ gem push pkg/*.gem
@@ -0,0 +1,106 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "uri"
4
+ require "net/http"
5
+ require "openssl"
6
+ require "json"
7
+ require "optparse"
8
+
9
+ GitlabError = Class.new(StandardError)
10
+ GitlabClientError = Class.new(GitlabError)
11
+
12
+ def gitlab_client(path, method, body = nil)
13
+ url = URI("https://gitlab.com#{path}")
14
+
15
+ http = Net::HTTP.new(url.host, url.port)
16
+ http.use_ssl = true
17
+
18
+ request = case method
19
+ when :get
20
+ Net::HTTP::Get.new(url)
21
+ when :post
22
+ Net::HTTP::Post.new(url)
23
+ when :put
24
+ Net::HTTP::Put.new(url)
25
+ else
26
+ raise "Unknown method: #{method}"
27
+ end
28
+
29
+ request["Content-Type"] = "application/json"
30
+ request["Private-Token"] = ENV["GITLAB_TOKEN"]
31
+ request.body = JSON.dump(body) if body
32
+
33
+ response = http.request(request)
34
+
35
+ case response
36
+ when Net::HTTPSuccess
37
+ JSON.parse(response.read_body)
38
+ when Net::HTTPClientError
39
+ raise GitlabClientError, "HTTP #{response.code} for #{method} #{url}: #{response.read_body}"
40
+ else
41
+ raise GitLabError, "HTTP #{response.code} for #{method} #{url}: #{response.read_body}"
42
+ end
43
+ end
44
+
45
+ def list_commits_for_tag(tag)
46
+ commits = `git rev-list --no-merges $(git describe --tags --abbrev=0 #{tag}^)..#{tag}`.lines
47
+ commits.map(&:chomp)
48
+ end
49
+
50
+ def get_mrs_for_commit(commit_id)
51
+ gitlab_client("/api/v4/projects/gitlab-org%2ffluent-plugin-redis-slowlog/repository/commits/#{commit_id}/merge_requests", :get)
52
+ end
53
+
54
+ def create_release_for_tag(tag, description)
55
+ req_body = { tag_name: tag, description: description }
56
+ gitlab_client("/api/v4/projects/gitlab-org%2ffluent-plugin-redis-slowlog/releases", :post, req_body)
57
+ end
58
+
59
+ def update_release_for_tag(tag, description)
60
+ req_body = { description: description }
61
+ gitlab_client("/api/v4/projects/gitlab-org%2ffluent-plugin-redis-slowlog/releases/#{tag}", :put, req_body)
62
+ end
63
+
64
+ def get_unique_mrs_for_tag(tag)
65
+ commit_ids = list_commits_for_tag(tag)
66
+ dup_mrs = commit_ids.map { |commit_id| get_mrs_for_commit(commit_id) }.flatten
67
+ uniq_mrs = dup_mrs.uniq { |mr| mr["iid"] }
68
+
69
+ uniq_mrs.sort { |mr| mr["iid"] }.reverse
70
+ end
71
+
72
+ options = {}
73
+ OptionParser.new do |opts|
74
+ opts.banner = "Usage: update-changelog.rb [options] tag"
75
+
76
+ opts.on("-d", "--[no-]dry-run", "Display only. Do not update release notes.") do |d|
77
+ options[:dry_run] = d
78
+ end
79
+ end.parse!
80
+
81
+ # Check required conditions
82
+ unless ARGV.length == 1
83
+ puts optparse
84
+ exit(-1)
85
+ end
86
+
87
+ tag = ARGV.first
88
+
89
+ changelog = get_unique_mrs_for_tag(tag).map { |mr| "* #{mr['web_url']}: #{mr['title']}" }.join("\n")
90
+
91
+ raise "No new changes found" if changelog.empty?
92
+
93
+ changelog = "## Changes in #{tag}\n\n" + changelog
94
+
95
+ if options[:dry_run]
96
+ puts changelog
97
+ exit
98
+ end
99
+
100
+ begin
101
+ create_release_for_tag(tag, changelog)
102
+ puts "Created release: https://gitlab.com/gitlab-org/fluent-plugin-redis-slowlog/-/releases##{tag}"
103
+ rescue GitlabClientError
104
+ update_release_for_tag(tag, changelog)
105
+ puts "Updated release: https://gitlab.com/gitlab-org/fluent-plugin-redis-slowlog/-/releases##{tag}"
106
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-fluent-plugin-redis-slowlog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Van Landuyt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -142,15 +142,18 @@ extensions: []
142
142
  extra_rdoc_files: []
143
143
  files:
144
144
  - ".gitignore"
145
+ - ".gitlab-ci.yml"
146
+ - ".rubocop.yml"
145
147
  - Gemfile
146
- - Gemfile.lock
147
148
  - LICENSE
148
149
  - README.md
149
150
  - Rakefile
150
151
  - gitlab-fluent-plugin-redis-slowlog.gemspec
151
152
  - lib/fluent/plugin/in_redis_slowlog.rb
152
- - test/helper.rb
153
- - test/plugin/test_in_redis_slowlog.rb
153
+ - spec/fluent/plugin/redis_slowlog_input_spec.rb
154
+ - spec/spec_helper.rb
155
+ - tools/deploy-rubygem.sh
156
+ - tools/update-changelog.rb
154
157
  homepage: http://gitlab.com/gitlab-org/gitlab-fluent-plugin-redis-slowlog
155
158
  licenses:
156
159
  - MIT
@@ -164,17 +167,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
164
167
  requirements:
165
168
  - - ">="
166
169
  - !ruby/object:Gem::Version
167
- version: '2.6'
170
+ version: '2.4'
168
171
  required_rubygems_version: !ruby/object:Gem::Requirement
169
172
  requirements:
170
- - - ">"
173
+ - - ">="
171
174
  - !ruby/object:Gem::Version
172
- version: 1.3.1
175
+ version: '0'
173
176
  requirements: []
174
177
  rubygems_version: 3.0.3
175
178
  signing_key:
176
179
  specification_version: 4
177
180
  summary: Emit redis slowlog entries into fluentd
178
181
  test_files:
179
- - test/helper.rb
180
- - test/plugin/test_in_redis_slowlog.rb
182
+ - spec/fluent/plugin/redis_slowlog_input_spec.rb
183
+ - spec/spec_helper.rb
@@ -1,110 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- gitlab-fluent-plugin-redis-slowlog (0.0.1.pre)
5
- fluentd (>= 0.14.10, < 2)
6
- redis (>= 4.1.3, < 5)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activesupport (3.2.22.5)
12
- i18n (~> 0.6, >= 0.6.4)
13
- multi_json (~> 1.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- concurrent-ruby (1.1.6)
17
- cool.io (1.6.0)
18
- diff-lcs (1.3)
19
- fluentd (1.10.4)
20
- cool.io (>= 1.4.5, < 2.0.0)
21
- http_parser.rb (>= 0.5.1, < 0.7.0)
22
- msgpack (>= 1.3.1, < 2.0.0)
23
- serverengine (>= 2.0.4, < 3.0.0)
24
- sigdump (~> 0.2.2)
25
- strptime (>= 0.2.2, < 1.0.0)
26
- tzinfo (>= 1.0, < 3.0)
27
- tzinfo-data (~> 1.0)
28
- yajl-ruby (~> 1.0)
29
- gitlab-styles (3.2.0)
30
- rubocop (~> 0.74.0)
31
- rubocop-gitlab-security (~> 0.1.0)
32
- rubocop-performance (~> 1.4.1)
33
- rubocop-rails (~> 2.0)
34
- rubocop-rspec (~> 1.36)
35
- http_parser.rb (0.6.0)
36
- i18n (0.9.5)
37
- concurrent-ruby (~> 1.0)
38
- jaro_winkler (1.5.4)
39
- method_source (0.9.2)
40
- msgpack (1.3.3)
41
- multi_json (1.14.1)
42
- parallel (1.19.1)
43
- parser (2.7.1.3)
44
- ast (~> 2.4.0)
45
- power_assert (1.1.3)
46
- pry (0.12.2)
47
- coderay (~> 1.1.0)
48
- method_source (~> 0.9.0)
49
- rack (2.2.2)
50
- rainbow (3.0.0)
51
- rake (12.3.3)
52
- redis (4.1.4)
53
- rspec (3.9.0)
54
- rspec-core (~> 3.9.0)
55
- rspec-expectations (~> 3.9.0)
56
- rspec-mocks (~> 3.9.0)
57
- rspec-core (3.9.2)
58
- rspec-support (~> 3.9.3)
59
- rspec-expectations (3.9.2)
60
- diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.9.0)
62
- rspec-mocks (3.9.1)
63
- diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.9.0)
65
- rspec-support (3.9.3)
66
- rubocop (0.74.0)
67
- jaro_winkler (~> 1.5.1)
68
- parallel (~> 1.10)
69
- parser (>= 2.6)
70
- rainbow (>= 2.2.2, < 4.0)
71
- ruby-progressbar (~> 1.7)
72
- unicode-display_width (>= 1.4.0, < 1.7)
73
- rubocop-gitlab-security (0.1.1)
74
- rubocop (>= 0.51)
75
- rubocop-performance (1.4.1)
76
- rubocop (>= 0.71.0)
77
- rubocop-rails (2.5.2)
78
- activesupport
79
- rack (>= 1.1)
80
- rubocop (>= 0.72.0)
81
- rubocop-rspec (1.39.0)
82
- rubocop (>= 0.68.1)
83
- ruby-progressbar (1.10.1)
84
- serverengine (2.2.1)
85
- sigdump (~> 0.2.2)
86
- sigdump (0.2.4)
87
- strptime (0.2.4)
88
- test-unit (3.2.9)
89
- power_assert
90
- tzinfo (2.0.2)
91
- concurrent-ruby (~> 1.0)
92
- tzinfo-data (1.2020.1)
93
- tzinfo (>= 1.0.0)
94
- unicode-display_width (1.6.1)
95
- yajl-ruby (1.4.1)
96
-
97
- PLATFORMS
98
- ruby
99
-
100
- DEPENDENCIES
101
- bundler (~> 2.1.4)
102
- gitlab-fluent-plugin-redis-slowlog!
103
- gitlab-styles (~> 3.2.0)
104
- pry (~> 0.12.2)
105
- rake (~> 12.0)
106
- rspec (~> 3.9.0)
107
- test-unit (~> 3.2.9)
108
-
109
- BUNDLED WITH
110
- 2.1.4
@@ -1,8 +0,0 @@
1
- $LOAD_PATH.unshift(File.expand_path("../../", __FILE__))
2
- require "test-unit"
3
- require "fluent/test"
4
- require "fluent/test/driver/input"
5
- require "fluent/test/helpers"
6
-
7
- Test::Unit::TestCase.include(Fluent::Test::Helpers)
8
- Test::Unit::TestCase.extend(Fluent::Test::Helpers)
@@ -1,18 +0,0 @@
1
- require "helper"
2
- require "fluent/plugin/in_redis_slowlog.rb"
3
-
4
- class RedisSlowlogInputTest < Test::Unit::TestCase
5
- setup do
6
- Fluent::Test.setup
7
- end
8
-
9
- test "failure" do
10
- flunk
11
- end
12
-
13
- private
14
-
15
- def create_driver(conf)
16
- Fluent::Test::Driver::Input.new(Fluent::Plugin::RedisSlowlogInput).configure(conf)
17
- end
18
- end