logstash-input-remote_proc 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/USAGE.md +6 -0
- data/logstash-input-remote_proc.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80014c6e1cda441511aac73c775940faff81c73e
|
4
|
+
data.tar.gz: cc4b70a529900f8e028fef6fdeb9f0ef1987f963
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5f7847aa949254171d09411c3e3990227e7327500f71542822c796503efea712439453ad373c51dfa7d2fdfa575ad947ad4b70cc92a50a7866e9cccf6f34e9a
|
7
|
+
data.tar.gz: 989081ac4ee05e0bad36bfa4aa00e70333c9c6e0bdd716ce502c3a21ec2e344a0a0d7d6c1bb7892914829ef41e0af053d993203cd3e04fb700954c751a052d7c
|
data/USAGE.md
CHANGED
@@ -38,6 +38,12 @@ If `proc_list` is not declared all of them are processed. An equivalent declarat
|
|
38
38
|
input { remote_proc { servers => [{}] } }
|
39
39
|
```
|
40
40
|
|
41
|
+
### SSH server with default values and authenticate by private key for `cpuinfo` and `meminfo`
|
42
|
+
|
43
|
+
```javascript
|
44
|
+
input { remote_proc { servers => [{}] proc_list => ["cpuinfo", "meminfo"] } }
|
45
|
+
```
|
46
|
+
|
41
47
|
### With SSH server `host`, `port` and `username` and authenticate by private key
|
42
48
|
|
43
49
|
```javascript
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-remote_proc'
|
3
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.5'
|
4
4
|
s.licenses = ['Apache-2.0']
|
5
5
|
s.summary = 'This Logstash plugin collects PROCFS metrics through remote SSH servers.'
|
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'
|