fluent-plugin-rds-slowlog 0.0.3 → 0.0.4
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.
- data/.travis.yml +13 -0
- data/= +0 -0
- data/README.md +1 -4
- data/fluent-plugin-rds-slowlog.gemspec +2 -1
- metadata +20 -2
data/.travis.yml
ADDED
data/=
ADDED
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# fluent-plugin-rds-slowlog
|
|
1
|
+
# fluent-plugin-rds-slowlog [](https://travis-ci.org/kenjiskywalker/fluent-plugin-rds-slowlog/)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
## RDS Setting
|
|
@@ -64,6 +64,3 @@ every 10 seconds from AWS RDS.
|
|
|
64
64
|
2013-06-29 00:32:55 +0900 [error]: fluent-plugin-rds-slowlog: cannot connect RDS
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
## TODO
|
|
68
|
-
|
|
69
|
-
* more test test test
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "fluent-plugin-rds-slowlog"
|
|
7
|
-
gem.version = "0.0.
|
|
7
|
+
gem.version = "0.0.4"
|
|
8
8
|
gem.authors = ["kenjiskywalker"]
|
|
9
9
|
gem.email = ["git@kenjiskywalker.org"]
|
|
10
10
|
gem.description = "Amazon RDS slow_log input plugin for Fluent event collector"
|
|
@@ -16,4 +16,5 @@ Gem::Specification.new do |gem|
|
|
|
16
16
|
gem.require_paths = ["lib"]
|
|
17
17
|
gem.add_dependency "fluentd", "~> 0.10.30"
|
|
18
18
|
gem.add_dependency "mysql2", "~> 0.3.11"
|
|
19
|
+
gem.add_development_dependency "rake", ">= 10.0.4"
|
|
19
20
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-rds-slowlog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-10-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|
|
@@ -43,6 +43,22 @@ dependencies:
|
|
|
43
43
|
- - ~>
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: 0.3.11
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: rake
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ! '>='
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 10.0.4
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ! '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 10.0.4
|
|
46
62
|
description: Amazon RDS slow_log input plugin for Fluent event collector
|
|
47
63
|
email:
|
|
48
64
|
- git@kenjiskywalker.org
|
|
@@ -51,6 +67,8 @@ extensions: []
|
|
|
51
67
|
extra_rdoc_files: []
|
|
52
68
|
files:
|
|
53
69
|
- .gitignore
|
|
70
|
+
- .travis.yml
|
|
71
|
+
- '='
|
|
54
72
|
- Gemfile
|
|
55
73
|
- LICENSE.txt
|
|
56
74
|
- README.md
|