Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

out_parseable: Parseable plugin for fluentbit #9826

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
28 changes: 28 additions & 0 deletions .github/workflows/call-build-linux-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,19 @@ jobs:
name: ${{ matrix.distro }} package build and stage to S3
environment: ${{ inputs.environment }}
# Ensure for OSS Fluent Bit repo we enable usage of Actuated runners for ARM builds, for forks it should keep existing ubuntu-22.04 usage.
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
runs-on: ${{ ((contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit') && 'ubuntu-22.04-arm') || 'ubuntu-22.04' }}
=======
runs-on: ${{ ((contains(matrix.distro, 'arm' ) || (contains(matrix.distro, 'raspbian' )) && (github.repository == 'fluent/fluent-bit') && 'actuated-arm64-8cpu-16gb') || 'ubuntu-22.04' }}
>>>>>>> a129bb871 (workflows: speed up Raspbian builds)
=======
runs-on: ${{ ((contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit') && 'actuated-arm64-8cpu-16gb') || 'ubuntu-22.04' }}
>>>>>>> 6dcf8cd22 (workflows: speed up Raspbian builds)
=======
runs-on: ${{ ((contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit') && 'ubuntu-22.04-arm') || 'ubuntu-22.04' }}
>>>>>>> 452465ecb (workflows: try new runner)
permissions:
contents: read
strategy:
Expand All @@ -120,9 +132,25 @@ jobs:
with:
ref: ${{ inputs.ref }}

<<<<<<< HEAD
<<<<<<< HEAD
# - name: Set up Actuated mirror
# if: (contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit')
# uses: self-actuated/hub-mirror@master

- name: Set up Docker Buildx
# if: ${{ !(contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit') }}
uses: docker/setup-buildx-action@v3
=======
- name: Set up Actuated mirror
if: (contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit')
uses: self-actuated/hub-mirror@master
>>>>>>> 2882ecf9e (workflows: speed up Raspbian builds)
=======
# - name: Set up Actuated mirror
# if: (contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit')
# uses: self-actuated/hub-mirror@master
>>>>>>> 452465ecb (workflows: try new runner)

- name: Set up Docker Buildx
# if: ${{ !(contains(matrix.distro, 'arm' ) || contains(matrix.distro, 'raspbian')) && (github.repository == 'fluent/fluent-bit') }}
Expand Down
10 changes: 10 additions & 0 deletions dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ RUN cmake -DFLB_RELEASE=On \
-DFLB_IN_SYSTEMD=On \
-DFLB_OUT_KAFKA=On \
-DFLB_OUT_PGSQL=On \
-DFLB_OUT_PARSEABLE=On \
-DFLB_NIGHTLY_BUILD="$FLB_NIGHTLY_BUILD" \
-DFLB_LOG_NO_CONTROL_CHARS=On \
-DFLB_CHUNK_TRACE="$FLB_CHUNK_TRACE" \
Expand Down Expand Up @@ -113,11 +114,20 @@ RUN echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/
apt-get download \
libssl3 \
libcurl4 \
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> 5767ca84e (dockerfile: Fix library dependencies)
libnghttp2-14 \
librtmp1 \
libssh2-1 \
libpsl5 \
libbrotli1 \
<<<<<<< HEAD
=======
>>>>>>> faceb5c26 (dockerfiles: Add libcurl4 dependency for OAuth/OICD feature of librdkafka)
=======
>>>>>>> 5767ca84e (dockerfile: Fix library dependencies)
libsasl2-2 \
pkg-config \
libpq5 \
Expand Down
Loading