fluent-plugin-vmware-loginsight 0.1.6 → 1.0.0
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/.github/workflows/gem-push.yml +38 -0
- data/CHANGELOG.md +63 -0
- data/README.md +71 -18
- data/VERSION +1 -0
- data/examples/fluent.conf +104 -52
- data/examples/fluentd-vrli-plugin-debian.dockerfile +24 -12
- data/examples/k8s-log-collector-ds.yaml +108 -49
- data/fluent-plugin-vmware-loginsight.gemspec +1 -1
- data/lib/fluent/plugin/out_vmware_loginsight.rb +273 -272
- metadata +9 -7
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-vmware-loginsight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vishal Mohite
|
8
8
|
- Chris Todd
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-04-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -81,12 +81,15 @@ executables: []
|
|
81
81
|
extensions: []
|
82
82
|
extra_rdoc_files: []
|
83
83
|
files:
|
84
|
+
- ".github/workflows/gem-push.yml"
|
84
85
|
- ".gitignore"
|
86
|
+
- CHANGELOG.md
|
85
87
|
- CONTRIBUTING.md
|
86
88
|
- Gemfile
|
87
89
|
- LICENSE
|
88
90
|
- README.md
|
89
91
|
- Rakefile
|
92
|
+
- VERSION
|
90
93
|
- examples/fluent.conf
|
91
94
|
- examples/fluentd-vrli-plugin-debian.dockerfile
|
92
95
|
- examples/fluentd-vrli-plugin-photon-tdnf.dockerfile
|
@@ -100,7 +103,7 @@ homepage: https://github.com/vmware/fluent-plugin-vmware-loginsight
|
|
100
103
|
licenses:
|
101
104
|
- MIT
|
102
105
|
metadata: {}
|
103
|
-
post_install_message:
|
106
|
+
post_install_message:
|
104
107
|
rdoc_options: []
|
105
108
|
require_paths:
|
106
109
|
- lib
|
@@ -115,9 +118,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
118
|
- !ruby/object:Gem::Version
|
116
119
|
version: '0'
|
117
120
|
requirements: []
|
118
|
-
|
119
|
-
|
120
|
-
signing_key:
|
121
|
+
rubygems_version: 3.2.3
|
122
|
+
signing_key:
|
121
123
|
specification_version: 4
|
122
124
|
summary: Fluend output plugin to forward logs to VMware Log Insight
|
123
125
|
test_files:
|