fluent-plugin-multiprocess 0.2.1 → 0.2.2
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 +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/fluent-plugin-multiprocess.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d845ca5865e740842856ad5904729b6f97412cfb
|
|
4
|
+
data.tar.gz: b8c914cac2aabafa7dc32c657ebc022183ca61af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d96f5c3f30770b0a486db6bdbefdc1804bcf6a6afefdfdc8c6323426f2d98a919ae776c77e418d82959fe7cbe8758b6ccf6f203590cb458d73412f09e3d3b981
|
|
7
|
+
data.tar.gz: 7651267c0dddc17854f23c22db42408cf55d555808c6cb3a9d8c9cf480936fd9c5b8615c8990db973c7cea2a11504e8c7ffe2f4eeb44047532e217126de00bd2
|
data/README.md
CHANGED
|
@@ -39,7 +39,7 @@ This plugin just controls start & shutdown of child processes.
|
|
|
39
39
|
- **cmdline**: This parameter is required in a \<process\> section
|
|
40
40
|
- **sleep\_before\_start**: Optional. Sets wait time before starting the process. Note that child processes **start from last to first** (`fluentd_child3` -\> `sleep 5` -\> { `fluentd_child2`, `fluentd_child1` } in this case)
|
|
41
41
|
- **sleep\_before\_shutdown**: Optional. Sets wait time before shutting down the process. Note that child processes **shutdown from first to last** ({ `fluentd_child1`, `fluentd_child2` } -\> `sleep 5` -> `fluentd_child3` in this case)
|
|
42
|
-
- **pid_file**: Optional. Writes child process id to this file. This is useful for sending a signal to child processes.
|
|
42
|
+
- **pid_file**: Optional. Writes child process id to this file. This is useful for sending a signal to child processes, e.g. logrotate's pid.
|
|
43
43
|
|
|
44
44
|
### Logs for daemonized processes
|
|
45
45
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
|
@@ -18,6 +18,6 @@ Gem::Specification.new do |gem|
|
|
|
18
18
|
gem.license = "Apache 2.0"
|
|
19
19
|
|
|
20
20
|
gem.add_dependency "fluentd", [">= 0.10.0", "< 2"]
|
|
21
|
-
gem.add_dependency "serverengine", "
|
|
21
|
+
gem.add_dependency "serverengine", ">= 1.6"
|
|
22
22
|
gem.add_development_dependency "rake", ">= 0.9.2"
|
|
23
23
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-multiprocess
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -34,14 +34,14 @@ dependencies:
|
|
|
34
34
|
name: serverengine
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '1.6'
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - "
|
|
44
|
+
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '1.6'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|