Skip to content

Commit

Permalink
[chore] Remove load test for fluentbit extension (open-telemetry#18519)
Browse files Browse the repository at this point in the history
[chore] Remove fluentbit extension load test

The extension was removed recently but the load test is still there and causing the whole job to fail
  • Loading branch information
dmitryax committed Feb 13, 2023
1 parent 1fcbfac commit 42d7bc8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 194 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,6 @@ jobs:
api_key: ${{ secrets.FORESIGHT_API_KEY }}
- name: Checkout Repo
uses: actions/checkout@v3
- run: sudo chmod 0777 -R /opt
- name: Fluentbit Cache
id: fluentbit-cache
uses: actions/cache@v3
with:
path: /opt/td-agent-bit
key: fluentbit-cache-1.5.3
- run: sudo ln -s /opt/td-agent-bit/bin/td-agent-bit /usr/local/bin/fluent-bit
- name: Install fluentbit
if: steps.fluentbit-cache.outputs.cache-hit != 'true'
run: |
wget https://packages.fluentbit.io/ubuntu/bionic/pool/main/t/td-agent-bit/td-agent-bit_1.5.3_amd64.deb
sudo dpkg -i ./td-agent-bit*.deb
- name: Setup Go
uses: actions/setup-go@v3
with:
Expand Down
167 changes: 0 additions & 167 deletions testbed/datasenders/fluentbit.go

This file was deleted.

3 changes: 0 additions & 3 deletions testbed/datasenders/stanza.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ import (
"github.com/open-telemetry/opentelemetry-collector-contrib/testbed/testbed"
)

// TODO: Extract common bits from FileLogWriter and NewFluentBitFileLogWriter
// and generalize as FileLogWriter.

type FileLogWriter struct {
file *os.File
}
Expand Down
11 changes: 0 additions & 11 deletions testbed/tests/log_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import (
)

func TestLog10kDPS(t *testing.T) {
flw := datasenders.NewFluentBitFileLogWriter(testbed.DefaultHost, testbed.GetAvailablePort(t))
tests := []struct {
name string
sender testbed.DataSender
Expand Down Expand Up @@ -125,16 +124,6 @@ func TestLog10kDPS(t *testing.T) {
ExpectedMaxRAM: 150,
},
},
{
name: "FluentBitToOTLP",
sender: flw,
receiver: testbed.NewOTLPDataReceiver(testbed.GetAvailablePort(t)),
resourceSpec: testbed.ResourceSpec{
ExpectedMaxCPU: 50,
ExpectedMaxRAM: 155,
},
extensions: flw.Extensions(),
},
{
name: "FluentForward-SplunkHEC",
sender: datasenders.NewFluentLogsForwarder(t, testbed.GetAvailablePort(t)),
Expand Down

0 comments on commit 42d7bc8

Please sign in to comment.