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

[Release] Update version to 8.13.1 #38020

Merged
merged 4 commits into from
Mar 27, 2024
Merged

Conversation

elasticmachine
Copy link
Collaborator

Updates references to the new release 8.13.1.

Merge after the release 8.13.0.

@elasticmachine elasticmachine requested a review from a team as a code owner February 14, 2024 17:52
@elasticmachine elasticmachine added release Team:Automation Label for the Observability productivity team labels Feb 14, 2024
@elasticmachine elasticmachine requested review from faec and leehinman and removed request for a team February 14, 2024 17:52
@elasticmachine elasticmachine self-assigned this Feb 14, 2024
@elasticmachine elasticmachine requested a review from a team February 14, 2024 17:52
@botelastic botelastic bot added needs_team Indicates that the issue/PR needs a Team:* label and removed needs_team Indicates that the issue/PR needs a Team:* label labels Feb 14, 2024
@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

💚 Build Succeeded

cc @elasticmachine

@elasticmachine
Copy link
Collaborator Author

elasticmachine commented Feb 14, 2024

💔 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 preview

Expand to view the summary

Build stats

  • Start Time: 2024-03-26T21:54:13.777+0000

  • Duration: 154 min 15 sec

Test stats 🧪

Test Results
Failed 27
Passed 29176
Skipped 2044
Total 31247

Test errors 27

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_stats – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_beat.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_state – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_beat.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_xpack – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_beat.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_ccr – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_enrich – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_2_index – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_3_index_summary – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_4_ml_job – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_5_index_recovery – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_6_node_stats – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: 'ContainerConfig'" 
    

    Expand to view the stacktrace

     cls = <class 'test_elasticsearch.Test'>
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, 'beat_name'):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, 'beat_path'):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 48aa91416af3_metricbeat_7918a246f6f8_elasticsearch_1 (48aa91)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount['Destination']: mount
                for mount in container.get('Mounts') or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config['ContainerConfig'].get('Volumes') or {}
            ]
    E       KeyError: 'ContainerConfig'
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Steps errors 7

Expand to view the steps failures

metricbeat-goIntegTest - mage goIntegTest
  • Took 43 min 4 sec . View more details here
  • Description: mage goIntegTest
metricbeat-goIntegTest - mage goIntegTest
  • Took 41 min 51 sec . View more details here
  • Description: mage goIntegTest
metricbeat-goIntegTest - mage goIntegTest
  • Took 41 min 7 sec . View more details here
  • Description: mage goIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 30 min 12 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 19 min 19 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 20 min 48 sec . View more details here
  • Description: mage pythonIntegTest
Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error 'hudson.AbortException: script returned exit code 1'

🐛 Flaky test report

❕ There are test failures but not known flaky tests.

Expand to view the summary

Genuine test errors 27

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

  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_stats – metricbeat.module.beat.test_beat.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_state – metricbeat.module.beat.test_beat.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_xpack – metricbeat.module.beat.test_beat.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_ccr – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_enrich – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_2_index – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_3_index_summary – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_4_ml_job – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_5_index_recovery – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_6_node_stats – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_7_node – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_metricsets_8_shard – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_xpack – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_xpack_cluster_stats – metricbeat.module.elasticsearch.test_elasticsearch.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_status – metricbeat.module.kibana.test_kibana.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_xpack – metricbeat.module.kibana.test_kibana.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_jolokia_jmx – metricbeat.tests.system.test_autodiscover_jolokia.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_dashboards – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_export_config – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_export_ilm_policy – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_export_index_pattern – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_export_index_pattern_migration – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_export_template – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_index_management – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-pythonIntegTest / test_start_stop – metricbeat.tests.system.test_base.Test
  • Name: Build&Test / metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/metricbeat/module/nginx/stubstatus
  • Name: Build&Test / metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/metricbeat/module/nginx/stubstatus

🤖 GitHub comments

Expand to view the GitHub comments

To re-run your PR in the CI, just comment with:

  • /test : Re-trigger the build.

  • /package : Generate the packages and run the E2E tests.

  • /beats-tester : Run the installation tests with beats-tester.

  • run elasticsearch-ci/docs : Re-trigger the docs validation. (use unformatted text in the comment!)

@pierrehilbert
Copy link
Collaborator

Unrelated and known failure: #38569
I'm forcing the merge.

@pierrehilbert pierrehilbert merged commit aa476d2 into 8.13 Mar 27, 2024
116 of 120 checks passed
@pierrehilbert pierrehilbert deleted the update-version-next-8.13.1 branch March 27, 2024 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release Team:Automation Label for the Observability productivity team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants