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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8c6cb1363b6364811d6c9d9c1c80067c46ed222eaa2a70034a7f2cd69b2b043
4
- data.tar.gz: cad2d46faa95261265dc7c8aa2119ce8a389ca641c8ca789079a34a90d32fb19
3
+ metadata.gz: 3d297a36377a2b0ccc771968c32a452144c902c768e4e37005b78346726b884f
4
+ data.tar.gz: 87f18756a8f44bfab712f683039243847120305ddb0dfbf6c09b8d3ee5159c43
5
5
  SHA512:
6
- metadata.gz: 320f33af67ad7102ea3212f217b1bcfa23c0a27f37f0b4f4873a66fd716ec4556431b0e14005a732541d985b980de1cb44b7fbde5a7d3dac980944593156ea1e
7
- data.tar.gz: 1c172ba0c3ea4af9ac2a3e0c28037ff589163dc4b5ff82fc3c70efb7829deca8f0c2c5d4bd9a580bafc104e670e44ad7c322625e60a937ca4b2cc54ebeabd6b7
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-20220722
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 -v 1.14.2 \
39
- && mkdir -p /fluentd/etc /fluentd/plugins \
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 0.1.5 fluent-plugin-vmware-loginsight \
48
+ && gem install --norc --no-document -v 1.3.0 fluent-plugin-vmware-loginsight \
43
49
  #
44
- # Install jemalloc 4.5.0
45
- && curl -L --output /tmp/jemalloc-4.5.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/4.5.0/jemalloc-4.5.0.tar.bz2 \
46
- && tar -C /tmp/ -xjvf /tmp/jemalloc-4.5.0.tar.bz2 \
47
- && cd /tmp/jemalloc-4.5.0 \
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 ["/usr/bin/fluentd"]
72
+ ENTRYPOINT ["fluentd", "-c", "/etc/fluentd/fluent.conf"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
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.0
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-07-28 00:00:00.000000000 Z
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
- rubygems_version: 3.3.7
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