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

Cherry-pick #23320 to 7.x: Skip flaky TestAutodiscoverWithMutlipleEntries test #23343

Merged
merged 1 commit into from
Jan 5, 2021

Conversation

ChrsMark
Copy link
Member

@ChrsMark ChrsMark commented Jan 4, 2021

Cherry-pick of PR #23320 to 7.x branch. Original message:

See #23319.

@ChrsMark ChrsMark added [zube]: In Review backport Team:Integrations Label for the Integrations team Team:Platforms Label for the Integrations - Platforms team labels Jan 4, 2021
@elasticmachine
Copy link
Collaborator

Pinging @elastic/integrations (Team:Integrations)

@botelastic botelastic bot added the needs_team Indicates that the issue/PR needs a Team:* label label Jan 4, 2021
@elasticmachine
Copy link
Collaborator

Pinging @elastic/integrations (Team:Platforms)

@botelastic botelastic bot removed the needs_team Indicates that the issue/PR needs a Team:* label label Jan 4, 2021
@elasticmachine
Copy link
Collaborator

elasticmachine commented Jan 4, 2021

💔 Tests Failed

the below badges are clickable and redirect to their specific view in the CI or DOCS
Pipeline View Test View Changes Artifacts preview

Expand to view the summary

Build stats

  • Build Cause: Started by user Chris Mark

  • Start Time: 2021-01-05T08:34:15.755+0000

  • Duration: 53 min 55 sec

Test stats 🧪

Test Results
Failed 2
Passed 17470
Skipped 1410
Total 18882

Test errors 2

Expand to view the tests failures

Build&Test / x-pack/filebeat-build / test_fileset_file_024_mysqlenterprise – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
    Expand to view the error details

     AssertionError: The following expected object doesn't match:    Diff:   {'values_changed': {"root['@timestamp']": {'new_value': '2021-10-01T19:21:33.000Z', 'old_value': '2020-10-01T19:21:33.000Z'}}}, full object:    {'server.user.name': 'skip-grants user', 'process.args': ['/usr/local/mysql/bin/mysqld', '--loose-audit-log-format=JSON', '--log-error=log.err', '--pid-file=mysqld.pid', '--port=3306'], 'process.name': 'mysqld', 'process.args_count': 5, 'process.command_line': '/usr/local/mysql/bin/mysqld --loose-audit-log-format=JSON --log-error=log.err --pid-file=mysqld.pid --port=3306', 'process.executable': '/usr/local/mysql/bin/mysqld', 'log.offset': 0, 'mysqlenterprise.audit.connection_id': 0, 'mysqlenterprise.audit.id': 0, 'mysqlenterprise.audit.class': 'audit', 'fileset.name': 'audit', 'tags': ['mysqlenterprise-audit'], 'input.type': 'log', '@timestamp': '2021-10-01T19:21:33.000Z', 'related.user': ['skip-grants user'], 'service.id': 1, 'service.type': 'mysqlenterprise', 'service.version': '8.0.22-commercial', 'host.os.full': 'x86_64-Linux', 'event.timezone': '-02:00', 'event.kind': 'event', 'event.module': 'mysqlenterprise', 'event.action': 'mysql-startup', 'event.category': ['database'], 'event.dataset': 'mysqlenterprise.audit', 'event.outcome': 'unknown'} assert 1 == 0  +  where 1 = len({'values_changed': {"root['@timestamp']": {'new_value': '2021-10-01T19:21:33.000Z', 'old_value': '2020-10-01T19:21:33.000Z'}}}) 
    

    Expand to view the stacktrace

     a = (<test_xpack_modules.XPackTest testMethod=test_fileset_file_024_mysqlenterprise>,)
    
        @wraps(func)
        def standalone_func(*a):
    >       return func(*(a + p.args), **p.kwargs)
    
    ../../build/ve/docker/lib/python3.7/site-packages/parameterized/parameterized.py:518: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../filebeat/tests/system/test_modules.py:107: in test_fileset_file
        cfgfile=cfgfile)
    ../../filebeat/tests/system/test_modules.py:193: in run_on_file
        self._test_expected_events(test_file, objects)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <test_xpack_modules.XPackTest testMethod=test_fileset_file_024_mysqlenterprise>
    test_file = '/go/src/github.com/elastic/beats/x-pack/filebeat/module/mysqlenterprise/audit/test/mysql_audit_test.log'
    objects = [{'@timestamp': '2021-10-01T19:21:33.000Z', 'agent': {'ephemeral_id': '0bc6409b-e7f8-458d-93bc-b5eb77aaeced', 'hostnam...32f43081de91', 'name': '9f9164af90e0', ...}, 'client': {'domain': 'localhost'}, 'ecs': {'version': '1.6.0'}, ...}, ...]
    
        def _test_expected_events(self, test_file, objects):
        
            # Generate expected files if GENERATE env variable is set
            if os.getenv("GENERATE"):
                with open(test_file + "-expected.json", 'w') as f:
                    # Flatten an cleanup objects
                    # This makes sure when generated on different machines / version the expected.json stays the same.
                    for k, obj in enumerate(objects):
                        objects[k] = self.flatten_object(obj, {}, "")
                        clean_keys(objects[k])
        
                    json.dump(objects, f, indent=4, separators=(',', ': '), sort_keys=True)
        
            with open(test_file + "-expected.json", "r") as f:
                expected = json.load(f)
        
            assert len(expected) == len(objects), "expected {} events to compare but got {}".format(
                len(expected), len(objects))
        
            for idx in range(len(expected)):
                ev = expected[idx]
                obj = objects[idx]
        
                # Flatten objects for easier comparing
                obj = self.flatten_object(obj, {}, "")
                clean_keys(obj)
                clean_keys(ev)
        
                d = DeepDiff(ev, obj, ignore_order=True)
        
    >           assert len(d) == 0, "The following expected object doesn't match:\n Diff:\n{}, full object: \n{}".format(d, obj)
    E           AssertionError: The following expected object doesn't match:
    E              Diff:
    E             {'values_changed': {"root['@timestamp']": {'new_value': '2021-10-01T19:21:33.000Z', 'old_value': '2020-10-01T19:21:33.000Z'}}}, full object: 
    E             {'server.user.name': 'skip-grants user', 'process.args': ['/usr/local/mysql/bin/mysqld', '--loose-audit-log-format=JSON', '--log-error=log.err', '--pid-file=mysqld.pid', '--port=3306'], 'process.name': 'mysqld', 'process.args_count': 5, 'process.command_line': '/usr/local/mysql/bin/mysqld --loose-audit-log-format=JSON --log-error=log.err --pid-file=mysqld.pid --port=3306', 'process.executable': '/usr/local/mysql/bin/mysqld', 'log.offset': 0, 'mysqlenterprise.audit.connection_id': 0, 'mysqlenterprise.audit.id': 0, 'mysqlenterprise.audit.class': 'audit', 'fileset.name': 'audit', 'tags': ['mysqlenterprise-audit'], 'input.type': 'log', '@timestamp': '2021-10-01T19:21:33.000Z', 'related.user': ['skip-grants user'], 'service.id': 1, 'service.type': 'mysqlenterprise', 'service.version': '8.0.22-commercial', 'host.os.full': 'x86_64-Linux', 'event.timezone': '-02:00', 'event.kind': 'event', 'event.module': 'mysqlenterprise', 'event.action': 'mysql-startup', 'event.category': ['database'], 'event.dataset': 'mysqlenterprise.audit', 'event.outcome': 'unknown'}
    E           assert 1 == 0
    E            +  where 1 = len({'values_changed': {"root['@timestamp']": {'new_value': '2021-10-01T19:21:33.000Z', 'old_value': '2020-10-01T19:21:33.000Z'}}})
    
    ../../filebeat/tests/system/test_modules.py:225: AssertionError 
    

Build&Test / x-pack/filebeat-build / test_fileset_file_156_cisco – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
    Expand to view the error details

     AssertionError: The following expected object doesn't match:    Diff:   {'values_changed': {"root['event.start']": {'new_value': '2021-05-05T19:51:17.000Z', 'old_value': '2020-05-05T19:51:17.000Z'}, "root['event.end']": {'new_value': '2021-05-05T17:51:17.000-02:00', 'old_value': '2020-05-05T17:51:17.000-02:00'}}}, full object:    {'log.offset': 466, 'log.level': 'debug', 'source.address': '192.168.2.2', 'source.ip': '192.168.2.2', 'fileset.name': 'asa', 'tags': ['cisco-asa', 'forwarded'], 'input.type': 'log', 'observer.hostname': 'dev01', 'observer.product': 'asa', 'observer.vendor': 'Cisco', 'observer.type': 'firewall', 'observer.egress.interface.name': 'net', 'related.hosts': ['dev01'], 'related.ip': ['192.168.2.2'], 'service.type': 'cisco', 'host.hostname': 'dev01', 'event.severity': 7, 'event.code': 609002, 'event.original': '%FTD-7-609002: Teardown local-host net:192.168.2.2 duration 0:00:00', 'event.timezone': '-02:00', 'event.kind': 'event', 'event.module': 'cisco', 'event.start': '2021-05-05T19:51:17.000Z', 'event.type': ['connection', 'end'], 'event.duration': 0, 'event.action': 'flow-expiration', 'event.end': '2021-05-05T17:51:17.000-02:00', 'event.category': ['network'], 'event.dataset': 'cisco.asa', 'cisco.asa.source_interface': 'net', 'cisco.asa.message_id': '609002'} assert 1 == 0  +  where 1 = len({'values_changed': {"root['event.start']": {'new_value': '2021-05-05T19:51:17.000Z', 'old_value': '2020-05-05T19:51:17...'}, "root['event.end']": {'new_value': '2021-05-05T17:51:17.000-02:00', 'old_value': '2020-05-05T17:51:17.000-02:00'}}}) 
    

    Expand to view the stacktrace

     a = (<test_xpack_modules.XPackTest testMethod=test_fileset_file_156_cisco>,)
    
        @wraps(func)
        def standalone_func(*a):
    >       return func(*(a + p.args), **p.kwargs)
    
    ../../build/ve/docker/lib/python3.7/site-packages/parameterized/parameterized.py:518: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../filebeat/tests/system/test_modules.py:107: in test_fileset_file
        cfgfile=cfgfile)
    ../../filebeat/tests/system/test_modules.py:193: in run_on_file
        self._test_expected_events(test_file, objects)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <test_xpack_modules.XPackTest testMethod=test_fileset_file_156_cisco>
    test_file = '/go/src/github.com/elastic/beats/x-pack/filebeat/module/cisco/asa/test/additional_messages.log'
    objects = [{'@timestamp': '2021-05-05T17:51:17.000-02:00', 'agent': {'ephemeral_id': '8ae06030-518f-456c-977f-858fffb29dbf', 'ho...ce_ip': '8.8.8.8', 'message_id': '302020'}}, 'destination': {'address': '10.10.10.10', 'ip': '10.10.10.10'}, ...}, ...]
    
        def _test_expected_events(self, test_file, objects):
        
            # Generate expected files if GENERATE env variable is set
            if os.getenv("GENERATE"):
                with open(test_file + "-expected.json", 'w') as f:
                    # Flatten an cleanup objects
                    # This makes sure when generated on different machines / version the expected.json stays the same.
                    for k, obj in enumerate(objects):
                        objects[k] = self.flatten_object(obj, {}, "")
                        clean_keys(objects[k])
        
                    json.dump(objects, f, indent=4, separators=(',', ': '), sort_keys=True)
        
            with open(test_file + "-expected.json", "r") as f:
                expected = json.load(f)
        
            assert len(expected) == len(objects), "expected {} events to compare but got {}".format(
                len(expected), len(objects))
        
            for idx in range(len(expected)):
                ev = expected[idx]
                obj = objects[idx]
        
                # Flatten objects for easier comparing
                obj = self.flatten_object(obj, {}, "")
                clean_keys(obj)
                clean_keys(ev)
        
                d = DeepDiff(ev, obj, ignore_order=True)
        
    >           assert len(d) == 0, "The following expected object doesn't match:\n Diff:\n{}, full object: \n{}".format(d, obj)
    E           AssertionError: The following expected object doesn't match:
    E              Diff:
    E             {'values_changed': {"root['event.start']": {'new_value': '2021-05-05T19:51:17.000Z', 'old_value': '2020-05-05T19:51:17.000Z'}, "root['event.end']": {'new_value': '2021-05-05T17:51:17.000-02:00', 'old_value': '2020-05-05T17:51:17.000-02:00'}}}, full object: 
    E             {'log.offset': 466, 'log.level': 'debug', 'source.address': '192.168.2.2', 'source.ip': '192.168.2.2', 'fileset.name': 'asa', 'tags': ['cisco-asa', 'forwarded'], 'input.type': 'log', 'observer.hostname': 'dev01', 'observer.product': 'asa', 'observer.vendor': 'Cisco', 'observer.type': 'firewall', 'observer.egress.interface.name': 'net', 'related.hosts': ['dev01'], 'related.ip': ['192.168.2.2'], 'service.type': 'cisco', 'host.hostname': 'dev01', 'event.severity': 7, 'event.code': 609002, 'event.original': '%FTD-7-609002: Teardown local-host net:192.168.2.2 duration 0:00:00', 'event.timezone': '-02:00', 'event.kind': 'event', 'event.module': 'cisco', 'event.start': '2021-05-05T19:51:17.000Z', 'event.type': ['connection', 'end'], 'event.duration': 0, 'event.action': 'flow-expiration', 'event.end': '2021-05-05T17:51:17.000-02:00', 'event.category': ['network'], 'event.dataset': 'cisco.asa', 'cisco.asa.source_interface': 'net', 'cisco.asa.message_id': '609002'}
    E           assert 1 == 0
    E            +  where 1 = len({'values_changed': {"root['event.start']": {'new_value': '2021-05-05T19:51:17.000Z', 'old_value': '2020-05-05T19:51:17...'}, "root['event.end']": {'new_value': '2021-05-05T17:51:17.000-02:00', 'old_value': '2020-05-05T17:51:17.000-02:00'}}})
    
    ../../filebeat/tests/system/test_modules.py:225: AssertionError 
    

Steps errors 4

Expand to view the steps failures

x-pack/filebeat-build - mage build test
  • Took 31 min 29 sec . View more details on here
  • Description: mage build test
Terraform Apply on x-pack/metricbeat/module/aws
  • Took 0 min 14 sec . View more details on here
  • Description: terraform apply -auto-approve
Terraform Apply on x-pack/metricbeat/module/aws
  • Took 0 min 15 sec . View more details on here
  • Description: terraform apply -auto-approve
Error signal
  • Took 0 min 0 sec . View more details on here
  • Description: Error 'hudson.AbortException: script returned exit code 1'

Log output

Expand to view the last 100 lines of log output

[2021-01-05T09:26:17.580Z] + TERRAFORM_CMD=/var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform
[2021-01-05T09:26:17.580Z] ++ uname -s
[2021-01-05T09:26:17.580Z] ++ tr '[:upper:]' '[:lower:]'
[2021-01-05T09:26:17.581Z] + OS=linux
[2021-01-05T09:26:17.581Z] + mkdir -p /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin
[2021-01-05T09:26:17.581Z] + curl -sSLo - https://releases.hashicorp.com/terraform/0.12.24/terraform_0.12.24_linux_amd64.zip
[2021-01-05T09:26:17.028Z] [Google Cloud Storage Plugin] Uploading: x-pack-filebeat--system-tests-linux.tgz
[2021-01-05T09:26:18.146Z] ++ dirname /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform
[2021-01-05T09:26:18.146Z] + unzip -o /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform.zip -d /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin
[2021-01-05T09:26:18.146Z] Archive:  /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform.zip
[2021-01-05T09:26:18.404Z]   inflating: /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform  
[2021-01-05T09:26:18.404Z] + rm /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform.zip
[2021-01-05T09:26:18.404Z] + chmod +x /var/lib/jenkins/workspace/Beats_beats_PR-23343/bin/terraform
[2021-01-05T09:26:18.404Z] + make mage
[2021-01-05T09:26:18.404Z] Installing mage v1.10.0.
[2021-01-05T09:26:19.337Z] go: downloading github.com/magefile/mage v1.10.0
[2021-01-05T09:26:20.712Z] /var/lib/jenkins/workspace/Beats_beats_PR-23343/.magefile cleaned
[2021-01-05T09:26:21.013Z] + git config --get user.email
[2021-01-05T09:26:21.014Z] + [ -z  ]
[2021-01-05T09:26:21.014Z] + git config --global user.email [email protected]
[2021-01-05T09:26:21.014Z] + git config --global user.name beatsmachine
[2021-01-05T09:26:21.306Z] + go mod download
[2021-01-05T09:26:23.649Z] Client: Docker Engine - Community
[2021-01-05T09:26:23.649Z]  Version:           20.10.1
[2021-01-05T09:26:23.649Z]  API version:       1.41
[2021-01-05T09:26:23.649Z]  Go version:        go1.13.15
[2021-01-05T09:26:23.649Z]  Git commit:        831ebea
[2021-01-05T09:26:23.649Z]  Built:             Tue Dec 15 04:34:59 2020
[2021-01-05T09:26:23.649Z]  OS/Arch:           linux/amd64
[2021-01-05T09:26:23.649Z]  Context:           default
[2021-01-05T09:26:23.649Z]  Experimental:      true
[2021-01-05T09:26:23.649Z] 
[2021-01-05T09:26:23.649Z] Server: Docker Engine - Community
[2021-01-05T09:26:23.649Z]  Engine:
[2021-01-05T09:26:23.649Z]   Version:          20.10.1
[2021-01-05T09:26:23.649Z]   API version:      1.41 (minimum version 1.12)
[2021-01-05T09:26:23.649Z]   Go version:       go1.13.15
[2021-01-05T09:26:23.649Z]   Git commit:       f001486
[2021-01-05T09:26:23.649Z]   Built:            Tue Dec 15 04:32:40 2020
[2021-01-05T09:26:23.649Z]   OS/Arch:          linux/amd64
[2021-01-05T09:26:23.649Z]   Experimental:     false
[2021-01-05T09:26:23.649Z]  containerd:
[2021-01-05T09:26:23.649Z]   Version:          1.4.3
[2021-01-05T09:26:23.649Z]   GitCommit:        269548fa27e0089a8b8278fc4fc781d7f65a939b
[2021-01-05T09:26:23.649Z]  runc:
[2021-01-05T09:26:23.649Z]   Version:          1.0.0-rc92
[2021-01-05T09:26:23.649Z]   GitCommit:        ff819c7e9184c13b7c2607fe6c30ae19403a7aff
[2021-01-05T09:26:23.649Z]  docker-init:
[2021-01-05T09:26:23.649Z]   Version:          0.19.0
[2021-01-05T09:26:23.649Z]   GitCommit:        de40ad0
[2021-01-05T09:26:29.104Z] Failed in branch x-pack/filebeat-build
[2021-01-05T09:26:36.414Z] + .ci/scripts/terraform-cleanup.sh x-pack/metricbeat
[2021-01-05T09:26:36.414Z] + DIRECTORY=x-pack/metricbeat
[2021-01-05T09:26:36.414Z] + FAILED=0
[2021-01-05T09:26:36.414Z] ++ find x-pack/metricbeat -name terraform.tfstate
[2021-01-05T09:26:36.414Z] + for tfstate in $(find $DIRECTORY -name terraform.tfstate)
[2021-01-05T09:26:36.414Z] ++ dirname x-pack/metricbeat/module/aws/terraform.tfstate
[2021-01-05T09:26:36.414Z] + cd x-pack/metricbeat/module/aws
[2021-01-05T09:26:36.414Z] + terraform destroy -auto-approve
[2021-01-05T09:26:40.601Z] 
[2021-01-05T09:26:40.601Z] Destroy complete! Resources: 0 destroyed.
[2021-01-05T09:26:40.601Z] + cd -
[2021-01-05T09:26:40.601Z] /var/lib/jenkins/workspace/Beats_beats_PR-23343/src/github.com/elastic/beats/src/github.com/elastic/beats
[2021-01-05T09:26:40.601Z] + exit 0
[2021-01-05T09:26:40.921Z] Client: Docker Engine - Community
[2021-01-05T09:26:40.921Z]  Version:           20.10.1
[2021-01-05T09:26:40.921Z]  API version:       1.41
[2021-01-05T09:26:40.921Z]  Go version:        go1.13.15
[2021-01-05T09:26:40.921Z]  Git commit:        831ebea
[2021-01-05T09:26:40.921Z]  Built:             Tue Dec 15 04:34:59 2020
[2021-01-05T09:26:40.921Z]  OS/Arch:           linux/amd64
[2021-01-05T09:26:40.921Z]  Context:           default
[2021-01-05T09:26:40.921Z]  Experimental:      true
[2021-01-05T09:26:40.921Z] 
[2021-01-05T09:26:40.921Z] Server: Docker Engine - Community
[2021-01-05T09:26:40.921Z]  Engine:
[2021-01-05T09:26:40.921Z]   Version:          20.10.1
[2021-01-05T09:26:40.921Z]   API version:      1.41 (minimum version 1.12)
[2021-01-05T09:26:40.921Z]   Go version:       go1.13.15
[2021-01-05T09:26:40.921Z]   Git commit:       f001486
[2021-01-05T09:26:40.921Z]   Built:            Tue Dec 15 04:32:40 2020
[2021-01-05T09:26:40.921Z]   OS/Arch:          linux/amd64
[2021-01-05T09:26:40.922Z]   Experimental:     false
[2021-01-05T09:26:40.922Z]  containerd:
[2021-01-05T09:26:40.922Z]   Version:          1.4.3
[2021-01-05T09:26:40.922Z]   GitCommit:        269548fa27e0089a8b8278fc4fc781d7f65a939b
[2021-01-05T09:26:40.922Z]  runc:
[2021-01-05T09:26:40.922Z]   Version:          1.0.0-rc92
[2021-01-05T09:26:40.922Z]   GitCommit:        ff819c7e9184c13b7c2607fe6c30ae19403a7aff
[2021-01-05T09:26:40.922Z]  docker-init:
[2021-01-05T09:26:40.922Z]   Version:          0.19.0
[2021-01-05T09:26:40.922Z]   GitCommit:        de40ad0
[2021-01-05T09:27:09.242Z] Stage "Packaging" skipped due to earlier failure(s)
[2021-01-05T09:27:09.282Z] Running in /var/lib/jenkins/workspace/Beats_beats_PR-23343/src/github.com/elastic/beats
[2021-01-05T09:27:09.901Z] Running on Jenkins in /var/lib/jenkins/workspace/Beats_beats_PR-23343
[2021-01-05T09:27:09.938Z] [INFO] getVaultSecret: Getting secrets
[2021-01-05T09:27:09.992Z] Masking supported pattern matches of $VAULT_ADDR or $VAULT_ROLE_ID or $VAULT_SECRET_ID
[2021-01-05T09:27:10.596Z] + chmod 755 generate-build-data.sh
[2021-01-05T09:27:10.596Z] + ./generate-build-data.sh https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-23343/ https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-23343/runs/2 FAILURE 3174582
[2021-01-05T09:27:10.846Z] INFO: curl https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats/PR-23343/runs/2/steps/?limit=10000 -o steps-info.json

🐛 Flaky test report

❕ There are test failures but not known flaky tests.

Expand to view the summary

Test stats 🧪

Test Results
Failed 2
Passed 17470
Skipped 1410
Total 18882

Genuine test errors 2

💔 There are test failures but not known flaky tests, most likely a genuine test failure.

  • Name: Build&Test / x-pack/filebeat-build / test_fileset_file_024_mysqlenterprise – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-build / test_fileset_file_156_cisco – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest

@ChrsMark ChrsMark merged commit bf0fb8d into elastic:7.x Jan 5, 2021
@zube zube bot removed the [zube]: Done label Apr 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport Team:Integrations Label for the Integrations team Team:Platforms Label for the Integrations - Platforms team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants