logstash-filter-rancher_metadata 0.0.1 → 0.0.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 -2
- data/logstash-filter-rancher_metadata.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: 7ae1e674b0cb9cef6fc684beda18ea3ef723b0d8
|
|
4
|
+
data.tar.gz: a940fbabb3c751523b9a61ec4bdc98df97aa2dd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99d598616d6b4892bc08190396ab223d116aceba29803003bce81bc51fedf57b23d6a4a0f65fbd0e6e9d74d0a23fe8bfc4d05115037dd3841b6e2cea8f91ca1a
|
|
7
|
+
data.tar.gz: cd41a845e3dcb769b9999a069553ea86dab6d2ef4f809561beb0c8628f3f68d838b14b61e3a610b4ee1f61f4cd24cbf6c57bbffbf94d26cb079c0b28950b4719
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
|
|
4
4
|
|
|
5
|
-
This filter add rancher metadata to messages that contain a Docker container ID.
|
|
5
|
+
This filter add rancher metadata to messages that contain a Docker container ID. It's heavily inspired from [logstash-filter-docker_metadata](https://github.com/tgermain/logstash-filter-docker_metadata).
|
|
6
6
|
|
|
7
7
|
At current, the filter enriches the messages with the following tags
|
|
8
8
|
- Container name (name)
|
|
@@ -16,7 +16,6 @@ It is fully free and fully open source. The license is Apache 2.0, meaning you a
|
|
|
16
16
|
|
|
17
17
|
Configuration used : `logstash agent -e "filter { rancher_metadata {} }"`
|
|
18
18
|
|
|
19
|
-
```
|
|
20
19
|
## Filter parameters
|
|
21
20
|
|
|
22
21
|
| name | default value | comment |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-rancher_metadata'
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.2'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "This filter add rancher metadata to messages that contain a Docker container ID"
|
|
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/plugin install gemname. This gem is not a stand-alone program"
|