fluent-plugin-vmware-loginsight 1.3.0 → 1.3.1
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/CHANGELOG.md +8 -0
- data/Dockerfile +19 -15
- data/VERSION +1 -1
- data/fluent-plugin-vmware-loginsight.gemspec +2 -2
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d297a36377a2b0ccc771968c32a452144c902c768e4e37005b78346726b884f
|
|
4
|
+
data.tar.gz: 87f18756a8f44bfab712f683039243847120305ddb0dfbf6c09b8d3ee5159c43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9262a17913a26fccd037c59a48656c815a3cffb4e49a531394514e7b7559d2bf510b393e36ce56402e6a53e0088ecb07c1aa700603e1d595c924d54250e11415
|
|
7
|
+
data.tar.gz: ad6d6702e6676afab117122ba4fdbede96ac568c08f69bbd97e294c6af6053e79cf7d328dfae0ca9e7fe89fd23879400e78a243be1bbef02b7f66b500f5daa8d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.3.1 - Nov 01, 2022
|
|
4
|
+
|
|
5
|
+
* Based Photon image has been updated to photon:4.0-20221029
|
|
6
|
+
|
|
7
|
+
## v1.3.0 - July 29, 2022
|
|
8
|
+
|
|
9
|
+
* Added buffering support which allows sending out logs in chunks rather than one by one
|
|
10
|
+
|
|
3
11
|
## v1.0.0 - April 20, 2021
|
|
4
12
|
|
|
5
13
|
* Update plugin structure to use Fluentd 1.x syntax
|
data/Dockerfile
CHANGED
|
@@ -14,18 +14,17 @@
|
|
|
14
14
|
# Fluentd is configured with the default configuration that gets produced by the `fluentd --setup` command. For an example of
|
|
15
15
|
# a configuration that uses the fluent-plugin-vmware-loginsight plugin check fluent.conf under the examples dir:
|
|
16
16
|
# https://github.com/vmware/fluent-plugin-vmware-loginsight/blob/master/examples/fluent.conf
|
|
17
|
-
FROM photon:4.0-
|
|
17
|
+
FROM photon:4.0-20221029
|
|
18
18
|
|
|
19
19
|
USER root
|
|
20
20
|
|
|
21
21
|
RUN buildDeps="\
|
|
22
22
|
binutils linux-api-headers glibc-devel \
|
|
23
23
|
make gcc gmp-devel libffi-devel \
|
|
24
|
-
tar bzip2 sed gawk" \
|
|
24
|
+
tar bzip2 sed gawk build-essential" \
|
|
25
25
|
#
|
|
26
26
|
# Distro sync and install build dependencies
|
|
27
27
|
&& tdnf distro-sync --refresh -y \
|
|
28
|
-
# Toybox conflicts with bzip2. The latter is needed to unpack libjemalloc
|
|
29
28
|
&& tdnf remove -y toybox \
|
|
30
29
|
&& tdnf install -y $buildDeps ruby \
|
|
31
30
|
#
|
|
@@ -35,29 +34,34 @@ RUN buildDeps="\
|
|
|
35
34
|
&& gem install async-http -v 0.46.3 \
|
|
36
35
|
#
|
|
37
36
|
# Install fluentd
|
|
38
|
-
&& gem install --norc --no-document fluentd
|
|
39
|
-
&&
|
|
37
|
+
&& gem install --norc --no-document fluentd \
|
|
38
|
+
&& gem install --norc --no-document fluent-plugin-systemd \
|
|
39
|
+
&& gem install --norc --no-document i18n \
|
|
40
|
+
&& gem install --norc --no-document fluent-plugin-concat \
|
|
41
|
+
&& gem install --norc --no-document fluent-plugin-remote_syslog \
|
|
42
|
+
&& gem install --norc --no-document fluent-plugin-docker_metadata_filter \
|
|
43
|
+
&& gem install --norc --no-document fluent-plugin-detect-exceptions \
|
|
44
|
+
&& gem install --norc --no-document fluent-plugin-multi-format-parser \
|
|
45
|
+
&& gem install --norc --no-document fluent-plugin-kubernetes_metadata_filter \
|
|
40
46
|
#
|
|
41
47
|
# Install Log Insight plugin
|
|
42
|
-
&& gem install --norc --no-document -v
|
|
48
|
+
&& gem install --norc --no-document -v 1.3.0 fluent-plugin-vmware-loginsight \
|
|
43
49
|
#
|
|
44
|
-
# Install jemalloc
|
|
45
|
-
&& curl -L --output /tmp/jemalloc-
|
|
46
|
-
&& tar -C /tmp/ -xjvf /tmp/jemalloc-
|
|
47
|
-
&& cd /tmp/jemalloc-
|
|
50
|
+
# Install jemalloc 5.3.0
|
|
51
|
+
&& curl -L --output /tmp/jemalloc-5.3.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 \
|
|
52
|
+
&& tar -C /tmp/ -xjvf /tmp/jemalloc-5.3.0.tar.bz2 \
|
|
53
|
+
&& cd /tmp/jemalloc-5.3.0 \
|
|
48
54
|
&& ./configure && make \
|
|
49
55
|
&& mv lib/libjemalloc.so.2 /usr/lib \
|
|
50
56
|
&& cd / \
|
|
51
|
-
|
|
52
|
-
# Cleanup to reduce image size
|
|
53
|
-
&& rm -rf /tmp/jemalloc-4.5.0* \
|
|
57
|
+
&& rm -rf /tmp/jemalloc-5.3.0* \
|
|
54
58
|
&& tdnf remove -y $buildDeps \
|
|
55
59
|
&& tdnf clean all \
|
|
56
60
|
&& gem sources --clear-all \
|
|
57
61
|
&& gem cleanup
|
|
58
62
|
|
|
59
63
|
# Create default fluent.conf
|
|
60
|
-
RUN fluentd --setup
|
|
64
|
+
RUN fluentd --setup /etc/fluentd
|
|
61
65
|
|
|
62
66
|
# Make sure fluentd picks jemalloc
|
|
63
67
|
ENV LD_PRELOAD="/usr/lib/libjemalloc.so.2"
|
|
@@ -65,4 +69,4 @@ ENV LD_PRELOAD="/usr/lib/libjemalloc.so.2"
|
|
|
65
69
|
# Standard fluentd ports
|
|
66
70
|
EXPOSE 24224 5140
|
|
67
71
|
|
|
68
|
-
ENTRYPOINT ["/
|
|
72
|
+
ENTRYPOINT ["fluentd", "-c", "/etc/fluentd/fluent.conf"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.1
|
|
@@ -15,8 +15,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
15
15
|
Gem::Specification.new do |spec|
|
|
16
16
|
spec.name = "fluent-plugin-vmware-loginsight"
|
|
17
17
|
spec.version = File.read("VERSION").strip
|
|
18
|
-
spec.authors = ["Vishal Mohite", "Chris Todd"]
|
|
19
|
-
spec.email = ["vmohite@vmware.com", "toddc@vmware.com"]
|
|
18
|
+
spec.authors = ["Vishal Mohite", "Chris Todd", "Samvel Israelyan"]
|
|
19
|
+
spec.email = ["vmohite@vmware.com", "toddc@vmware.com", "sisraelyan@vmware.com"]
|
|
20
20
|
|
|
21
21
|
spec.summary = %q{Fluend output plugin to forward logs to VMware Log Insight}
|
|
22
22
|
spec.description = spec.summary
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-vmware-loginsight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vishal Mohite
|
|
8
8
|
- Chris Todd
|
|
9
|
+
- Samvel Israelyan
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2022-
|
|
13
|
+
date: 2022-11-05 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: bundler
|
|
@@ -77,6 +78,7 @@ description: Fluend output plugin to forward logs to VMware Log Insight
|
|
|
77
78
|
email:
|
|
78
79
|
- vmohite@vmware.com
|
|
79
80
|
- toddc@vmware.com
|
|
81
|
+
- sisraelyan@vmware.com
|
|
80
82
|
executables: []
|
|
81
83
|
extensions: []
|
|
82
84
|
extra_rdoc_files: []
|
|
@@ -119,7 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
121
|
- !ruby/object:Gem::Version
|
|
120
122
|
version: '0'
|
|
121
123
|
requirements: []
|
|
122
|
-
|
|
124
|
+
rubyforge_project:
|
|
125
|
+
rubygems_version: 2.7.6
|
|
123
126
|
signing_key:
|
|
124
127
|
specification_version: 4
|
|
125
128
|
summary: Fluend output plugin to forward logs to VMware Log Insight
|