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

[8.2](backport #35257) [Docs] Update logging.files.permissions documentation to consider umask #35303

Merged
merged 2 commits into from May 4, 2023

Conversation

AndersonQ
Copy link
Member

@AndersonQ AndersonQ commented May 3, 2023

manual backport of #35257

@AndersonQ AndersonQ self-assigned this May 3, 2023
@AndersonQ AndersonQ requested review from a team as code owners May 3, 2023 12:48
@AndersonQ AndersonQ requested review from ChrsMark, constanca-m and pierrehilbert and removed request for a team May 3, 2023 12:48
@botelastic botelastic bot added the needs_team Indicates that the issue/PR needs a Team:* label label May 3, 2023
@botelastic botelastic bot added Team:Automation Label for the Observability productivity team and removed needs_team Indicates that the issue/PR needs a Team:* label labels May 3, 2023
@AndersonQ AndersonQ changed the base branch from main to 8.2 May 3, 2023 12:49
@elasticmachine
Copy link
Collaborator

elasticmachine commented May 3, 2023

💔 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: 2023-05-03T16:21:41.046+0000

  • Duration: 129 min 50 sec

Test stats 🧪

Test Results
Failed 26
Passed 18679
Skipped 1889
Total 20594

Test errors 26

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / x-pack/metricbeat-pythonIntegTest / test_status – x-pack.metricbeat.module.cockroachdb.test_cockroachdb.Test
    Expand to view the error details

     failed on setup with "compose.service.BuildError: (<Service: cockroachdb>, "The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100")" 
    

    Expand to view the stacktrace

     self = <compose.service._ClientBuilder object at 0x7fcdd59b3d60>
    service = <Service: cockroachdb>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/cockroachdb/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-cockroachdb:19.1.1-1'
    quiet = False, fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'COCKROACHDB_VERSION': '19.1.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
    >           all_events = list(stream_output(build_output, output_stream))
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1823: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    output = <generator object APIClient._stream_helper at 0x7fcdcd3d6dd0>
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def stream_output(output, stream):
            is_terminal = hasattr(stream, 'isatty') and stream.isatty()
            stream = stream
            lines = {}
            diff = 0
        
            for event in utils.json_stream(output):
                yield event
                is_progress_event = 'progress' in event or 'progressDetail' in event
        
                if not is_progress_event:
    >               print_output_event(event, stream, is_terminal)
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:27: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    event = {'error': "The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100", 'errorDe...': 100, 'message': "The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100"}}
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    is_terminal = False
    
        def print_output_event(event, stream, is_terminal):
            if 'errorDetail' in event:
    >           raise StreamOutputError(event['errorDetail']['message'])
    E           compose.progress_stream.StreamOutputError: The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:59: StreamOutputError
    
    During handling of the above exception, another exception occurred:
    
    self = <class 'test_cockroachdb.Test'>
    
        @classmethod
        def setUpClass(self):
            self.beat_name = "metricbeat"
            self.beat_path = os.path.abspath(
                os.path.join(os.path.dirname(__file__), "../../"))
        
            self.template_paths = [
                os.path.abspath(os.path.join(self.beat_path, "../../metricbeat")),
                os.path.abspath(os.path.join(self.beat_path, "../../libbeat")),
            ]
        
    >       super(XPackTest, self).setUpClass()
    
    tests/system/xpack_metricbeat.py:19: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../metricbeat/tests/system/metricbeat.py:42: in setUpClass
        super().setUpClass()
    ../../libbeat/tests/system/beat/beat.py:199: in setUpClass
        cls.compose_up_with_retries()
    ../../libbeat/tests/system/beat/beat.py:217: in compose_up_with_retries
        raise ex
    ../../libbeat/tests/system/beat/beat.py:213: in compose_up_with_retries
        cls.compose_up()
    ../../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    ../../build/ve/docker/lib/python3.9/site-packages/compose/project.py:664: in up
        svc.ensure_image_exists(do_build=do_build, silent=silent, cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:364: in ensure_image_exists
        self.build(cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1111: in build
        return builder.build(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <compose.service._ClientBuilder object at 0x7fcdd59b3d60>
    service = <Service: cockroachdb>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/cockroachdb/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-cockroachdb:19.1.1-1'
    quiet = False, fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'COCKROACHDB_VERSION': '19.1.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
                all_events = list(stream_output(build_output, output_stream))
            except StreamOutputError as e:
    >           raise BuildError(service, str(e))
    E           compose.service.BuildError: (<Service: cockroachdb>, "The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100")
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1825: BuildError 
    

Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_0_stats – x-pack.metricbeat.module.stan.test_stan.TestStan
    Expand to view the error details

     failed on setup with "compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")" 
    

    Expand to view the stacktrace

     self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
    >           all_events = list(stream_output(build_output, output_stream))
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1823: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    output = <generator object APIClient._stream_helper at 0x7fcdce9a4200>
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def stream_output(output, stream):
            is_terminal = hasattr(stream, 'isatty') and stream.isatty()
            stream = stream
            lines = {}
            diff = 0
        
            for event in utils.json_stream(output):
                yield event
                is_progress_event = 'progress' in event or 'progressDetail' in event
        
                if not is_progress_event:
    >               print_output_event(event, stream, is_terminal)
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:27: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    event = {'error': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1", 'err... 1, 'message': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1"}}
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    is_terminal = False
    
        def print_output_event(event, stream, is_terminal):
            if 'errorDetail' in event:
    >           raise StreamOutputError(event['errorDetail']['message'])
    E           compose.progress_stream.StreamOutputError: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:59: StreamOutputError
    
    During handling of the above exception, another exception occurred:
    
    self = <class 'test_stan.TestStan'>
    
        @classmethod
        def setUpClass(self):
            self.beat_name = "metricbeat"
            self.beat_path = os.path.abspath(
                os.path.join(os.path.dirname(__file__), "../../"))
        
            self.template_paths = [
                os.path.abspath(os.path.join(self.beat_path, "../../metricbeat")),
                os.path.abspath(os.path.join(self.beat_path, "../../libbeat")),
            ]
        
    >       super(XPackTest, self).setUpClass()
    
    tests/system/xpack_metricbeat.py:19: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../metricbeat/tests/system/metricbeat.py:42: in setUpClass
        super().setUpClass()
    ../../libbeat/tests/system/beat/beat.py:199: in setUpClass
        cls.compose_up_with_retries()
    ../../libbeat/tests/system/beat/beat.py:217: in compose_up_with_retries
        raise ex
    ../../libbeat/tests/system/beat/beat.py:213: in compose_up_with_retries
        cls.compose_up()
    ../../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    ../../build/ve/docker/lib/python3.9/site-packages/compose/project.py:664: in up
        svc.ensure_image_exists(do_build=do_build, silent=silent, cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:364: in ensure_image_exists
        self.build(cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1111: in build
        return builder.build(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
                all_events = list(stream_output(build_output, output_stream))
            except StreamOutputError as e:
    >           raise BuildError(service, str(e))
    E           compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1825: BuildError 
    

Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_1_channels – x-pack.metricbeat.module.stan.test_stan.TestStan
    Expand to view the error details

     failed on setup with "compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")" 
    

    Expand to view the stacktrace

     self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
    >           all_events = list(stream_output(build_output, output_stream))
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1823: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    output = <generator object APIClient._stream_helper at 0x7fcdce9a4200>
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def stream_output(output, stream):
            is_terminal = hasattr(stream, 'isatty') and stream.isatty()
            stream = stream
            lines = {}
            diff = 0
        
            for event in utils.json_stream(output):
                yield event
                is_progress_event = 'progress' in event or 'progressDetail' in event
        
                if not is_progress_event:
    >               print_output_event(event, stream, is_terminal)
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:27: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    event = {'error': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1", 'err... 1, 'message': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1"}}
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    is_terminal = False
    
        def print_output_event(event, stream, is_terminal):
            if 'errorDetail' in event:
    >           raise StreamOutputError(event['errorDetail']['message'])
    E           compose.progress_stream.StreamOutputError: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:59: StreamOutputError
    
    During handling of the above exception, another exception occurred:
    
    self = <class 'test_stan.TestStan'>
    
        @classmethod
        def setUpClass(self):
            self.beat_name = "metricbeat"
            self.beat_path = os.path.abspath(
                os.path.join(os.path.dirname(__file__), "../../"))
        
            self.template_paths = [
                os.path.abspath(os.path.join(self.beat_path, "../../metricbeat")),
                os.path.abspath(os.path.join(self.beat_path, "../../libbeat")),
            ]
        
    >       super(XPackTest, self).setUpClass()
    
    tests/system/xpack_metricbeat.py:19: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../metricbeat/tests/system/metricbeat.py:42: in setUpClass
        super().setUpClass()
    ../../libbeat/tests/system/beat/beat.py:199: in setUpClass
        cls.compose_up_with_retries()
    ../../libbeat/tests/system/beat/beat.py:217: in compose_up_with_retries
        raise ex
    ../../libbeat/tests/system/beat/beat.py:213: in compose_up_with_retries
        cls.compose_up()
    ../../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    ../../build/ve/docker/lib/python3.9/site-packages/compose/project.py:664: in up
        svc.ensure_image_exists(do_build=do_build, silent=silent, cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:364: in ensure_image_exists
        self.build(cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1111: in build
        return builder.build(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
                all_events = list(stream_output(build_output, output_stream))
            except StreamOutputError as e:
    >           raise BuildError(service, str(e))
    E           compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1825: BuildError 
    

Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_2_subscriptions – x-pack.metricbeat.module.stan.test_stan.TestStan
    Expand to view the error details

     failed on setup with "compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")" 
    

    Expand to view the stacktrace

     self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
    >           all_events = list(stream_output(build_output, output_stream))
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1823: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    output = <generator object APIClient._stream_helper at 0x7fcdce9a4200>
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def stream_output(output, stream):
            is_terminal = hasattr(stream, 'isatty') and stream.isatty()
            stream = stream
            lines = {}
            diff = 0
        
            for event in utils.json_stream(output):
                yield event
                is_progress_event = 'progress' in event or 'progressDetail' in event
        
                if not is_progress_event:
    >               print_output_event(event, stream, is_terminal)
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:27: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    event = {'error': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1", 'err... 1, 'message': "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1"}}
    stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    is_terminal = False
    
        def print_output_event(event, stream, is_terminal):
            if 'errorDetail' in event:
    >           raise StreamOutputError(event['errorDetail']['message'])
    E           compose.progress_stream.StreamOutputError: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/progress_stream.py:59: StreamOutputError
    
    During handling of the above exception, another exception occurred:
    
    self = <class 'test_stan.TestStan'>
    
        @classmethod
        def setUpClass(self):
            self.beat_name = "metricbeat"
            self.beat_path = os.path.abspath(
                os.path.join(os.path.dirname(__file__), "../../"))
        
            self.template_paths = [
                os.path.abspath(os.path.join(self.beat_path, "../../metricbeat")),
                os.path.abspath(os.path.join(self.beat_path, "../../libbeat")),
            ]
        
    >       super(XPackTest, self).setUpClass()
    
    tests/system/xpack_metricbeat.py:19: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../../metricbeat/tests/system/metricbeat.py:42: in setUpClass
        super().setUpClass()
    ../../libbeat/tests/system/beat/beat.py:199: in setUpClass
        cls.compose_up_with_retries()
    ../../libbeat/tests/system/beat/beat.py:217: in compose_up_with_retries
        raise ex
    ../../libbeat/tests/system/beat/beat.py:213: in compose_up_with_retries
        cls.compose_up()
    ../../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    ../../build/ve/docker/lib/python3.9/site-packages/compose/project.py:664: in up
        svc.ensure_image_exists(do_build=do_build, silent=silent, cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:364: in ensure_image_exists
        self.build(cli=cli)
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1111: in build
        return builder.build(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    self = <compose.service._ClientBuilder object at 0x7fcdd47f3c10>
    service = <Service: stan>
    path = '/go/src/github.com/elastic/beats/x-pack/metricbeat/module/stan/_meta'
    tag = 'docker.elastic.co/integrations-ci/beats-stan:0.15.1-1', quiet = False
    fileobj = None, nocache = False, rm = True, timeout = None
    custom_context = False, encoding = None, pull = False, forcerm = False
    dockerfile = None, container_limits = {'memory': None}, decode = False
    buildargs = {'STAN_VERSION': '0.15.1'}, gzip = False, shmsize = None
    labels = None, cache_from = None, target = None, network_mode = None
    squash = None, extra_hosts = None, platform = None, isolation = None
    use_config_proxy = True
    output_stream = <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>
    
        def build(self, service, path, tag=None, quiet=False, fileobj=None,
                  nocache=False, rm=False, timeout=None,
                  custom_context=False, encoding=None, pull=False,
                  forcerm=False, dockerfile=None, container_limits=None,
                  decode=False, buildargs=None, gzip=False, shmsize=None,
                  labels=None, cache_from=None, target=None, network_mode=None,
                  squash=None, extra_hosts=None, platform=None, isolation=None,
                  use_config_proxy=True, output_stream=sys.stdout):
            build_output = self.client.build(
                path=path,
                tag=tag,
                nocache=nocache,
                rm=rm,
                pull=pull,
                forcerm=forcerm,
                dockerfile=dockerfile,
                labels=labels,
                cache_from=cache_from,
                buildargs=buildargs,
                network_mode=network_mode,
                target=target,
                shmsize=shmsize,
                extra_hosts=extra_hosts,
                container_limits=container_limits,
                gzip=gzip,
                isolation=isolation,
                platform=platform)
        
            try:
                all_events = list(stream_output(build_output, output_stream))
            except StreamOutputError as e:
    >           raise BuildError(service, str(e))
    E           compose.service.BuildError: (<Service: stan>, "The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1")
    
    ../../build/ve/docker/lib/python3.9/site-packages/compose/service.py:1825: BuildError 
    

Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/cockroachdb/status
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestFetch
    Building cockroachdb
    Step 1/5 : ARG COCKROACHDB_VERSION
    Step 2/5 : FROM cockroachdb/cockroach:v${COCKROACHDB_VERSION}
     ---> 02745c68f909
    Step 3/5 : RUN apt-get update && apt-get install -y curl
     ---> Running in b11f7f2999eb
    Ign:1 http://security.debian.org/debian-security stretch/updates InRelease
    Ign:2 http://security.debian.org/debian-security stretch/updates Release
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:4 http://deb.debian.org/debian stretch InRelease
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:6 http://deb.debian.org/debian stretch-updates InRelease
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:7 http://deb.debian.org/debian stretch Release
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:8 http://deb.debian.org/debian stretch-updates Release
    Err:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
      404  Not Found [IP: 151.101.66.132 80]
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Err:9 http://deb.debian.org/debian stretch/main amd64 Packages
      404  Not Found
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main all Packages
    Err:12 http://deb.debian.org/debian stretch-updates/main amd64 Packages
      404  Not Found
    Reading package lists...
    �[91mW: The repository 'http://security.debian.org/debian-security stretch/updates Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch-updates Release' does not have a Release file.
    E: Failed to fetch http://security.debian.org/debian-security/dists/stretch/updates/main/binary-amd64/Packages  404  Not Found [IP: 151.101.66.132 80]
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch/main/binary-amd64/Packages  404  Not Found
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch-updates/main/binary-amd64/Packages  404  Not Found
    E: Some index files failed to download. They have been ignored, or old ones used instead.
    �[0mService 'cockroachdb' failed to build: The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100
        status_integration_test.go:32: failed to start service 'cockroachdb: exit status 1
    Building cockroachdb
    Step 1/5 : ARG COCKROACHDB_VERSION
    Step 2/5 : FROM cockroachdb/cockroach:v${COCKROACHDB_VERSION}
     ---> 02745c68f909
    Step 3/5 : RUN apt-get update && apt-get install -y curl
     ---> Running in 061eb1f15495
    Ign:1 http://security.debian.org/debian-security stretch/updates InRelease
    Ign:2 http://security.debian.org/debian-security stretch/updates Release
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:4 http://deb.debian.org/debian stretch InRelease
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:6 http://deb.debian.org/debian stretch-updates InRelease
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:7 http://deb.debian.org/debian stretch Release
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:8 http://deb.debian.org/debian stretch-updates Release
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Err:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
      404  Not Found [IP: 151.101.66.132 80]
    Ign:5 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Err:9 http://deb.debian.org/debian stretch/main amd64 Packages
      404  Not Found
    Ign:10 http://deb.debian.org/debian stretch/main all Packages
    Err:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
      404  Not Found
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Reading package lists...
    �[91mW: The repository 'http://security.debian.org/debian-security stretch/updates Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch-updates Release' does not have a Release file.
    E: Failed to fetch http://security.debian.org/debian-security/dists/stretch/updates/main/binary-amd64/Packages  404  Not Found [IP: 151.101.66.132 80]
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch/main/binary-amd64/Packages  404  Not Found
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch-updates/main/binary-amd64/Packages  404  Not Found
    E: Some index files failed to download. They have been ignored, or old ones used instead.
    �[0mService 'cockroachdb' failed to build: The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100
        status_integration_test.go:32: failed to start service 'cockroachdb: exit status 1
    Building cockroachdb
    Step 1/5 : ARG COCKROACHDB_VERSION
    Step 2/5 : FROM cockroachdb/cockroach:v${COCKROACHDB_VERSION}
     ---> 02745c68f909
    Step 3/5 : RUN apt-get update && apt-get install -y curl
     ---> Running in 684f7ab02297
    Ign:1 http://security.debian.org/debian-security stretch/updates InRelease
    Ign:2 http://security.debian.org/debian-security stretch/updates Release
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:5 http://deb.debian.org/debian stretch InRelease
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:6 http://deb.debian.org/debian stretch-updates InRelease
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:7 http://deb.debian.org/debian stretch Release
    Err:3 http://security.debian.org/debian-security stretch/updates/main amd64 Packages
      404  Not Found [IP: 151.101.66.132 80]
    Ign:4 http://security.debian.org/debian-security stretch/updates/main all Packages
    Ign:8 http://deb.debian.org/debian stretch-updates Release
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Ign:10 http://deb.debian.org/debian stretch/main amd64 Packages
    Ign:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Ign:9 http://deb.debian.org/debian stretch/main all Packages
    Err:10 http://deb.debian.org/debian stretch/main amd64 Packages
      404  Not Found
    Err:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages
      404  Not Found
    Ign:12 http://deb.debian.org/debian stretch-updates/main all Packages
    Reading package lists...
    �[91mW: The repository 'http://security.debian.org/debian-security stretch/updates Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch Release' does not have a Release file.
    W: The repository 'http://deb.debian.org/debian stretch-updates Release' does not have a Release file.
    E: Failed to fetch http://security.debian.org/debian-security/dists/stretch/updates/main/binary-amd64/Packages  404  Not Found [IP: 151.101.66.132 80]
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch/main/binary-amd64/Packages  404  Not Found
    E: Failed to fetch http://deb.debian.org/debian/dists/stretch-updates/main/binary-amd64/Packages  404  Not Found
    E: Some index files failed to download. They have been ignored, or old ones used instead.
    �[0mService 'cockroachdb' failed to build: The command '/bin/sh -c apt-get update && apt-get install -y curl' returned a non-zero code: 100
        status_integration_test.go:32: failed to start service 'cockroachdb: exit status 1
        status_integration_test.go:32: getting host for cockroachdb: no container running for service
    --- FAIL: TestFetch (10.52s)
     
    

Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/channels
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in d1f4c984121d
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in c7e7be60fcb8
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 85f82b29d2da
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:20: failed to start service 'stan: exit status 1
        channels_integration_test.go:20: getting host for stan: no container running for service
    --- FAIL: TestData (132.40s)
     
    

Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/channels
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestFetch
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 07db4ea74113
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:27: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 66d7f08aa782
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:27: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in d68f0dfd7338
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        channels_integration_test.go:27: failed to start service 'stan: exit status 1
        channels_integration_test.go:27: getting host for stan: no container running for service
    --- FAIL: TestFetch (329.55s)
     
    

Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/stats
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in f6e048ec935b
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 7e5961c40b68
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 8db668771bf5
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:20: failed to start service 'stan: exit status 1
        stats_integration_test.go:20: getting host for stan: no container running for service
    --- FAIL: TestData (71.48s)
     
    

Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/stats
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestFetch
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 21941802316b
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:27: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 5cb24bd90ec7
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:27: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in ea3f6a4bad07
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        stats_integration_test.go:27: failed to start service 'stan: exit status 1
        stats_integration_test.go:27: getting host for stan: no container running for service
    --- FAIL: TestFetch (332.95s)
     
    

Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/subscriptions
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in af63d6e17879
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        subscriptions_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in 386c59eeb4ba
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        subscriptions_integration_test.go:20: failed to start service 'stan: exit status 1
    Found orphan containers (metricbeat_8_2_4_117361a19d-snapshot_postgresql_1, metricbeat_8_2_4_117361a19d-snapshot_mysql_1, metricbeat_8_2_4_117361a19d-snapshot_redisenterprise_1, metricbeat_8_2_4_117361a19d-snapshot_prometheus_1, metricbeat_8_2_4_117361a19d-snapshot_oracle_1, metricbeat_8_2_4_117361a19d-snapshot_mssql_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
    Building stan
    Step 1/16 : ARG STAN_VERSION=0.15.1
    Step 2/16 : FROM nats-streaming:$STAN_VERSION
     ---> cda16c83dcc1
    
    Step 3/16 : FROM golang:1.13-alpine3.11 AS build-env
     ---> eff4fd40cebc
    Step 4/16 : RUN apk --no-cache add build-base git mercurial gcc
     ---> Using cache
     ---> 03f421f511ec
    Step 5/16 : RUN cd src && go get -d github.com/nats-io/stan.go/
     ---> Running in ce8ab17149c8
    �[91mpackage crypto/ecdh: unrecognized import path "crypto/ecdh" (import path does not begin with hostname)
    �[0mService 'stan' failed to build: The command '/bin/sh -c cd src && go get -d github.com/nats-io/stan.go/' returned a non-zero code: 1
        subscriptions_integration_test.go:20: failed to start service 'stan: exit status 1
        subscriptions_integration_test.go:20: getting host for stan: no container running for service
    --- FAIL: TestData (71.47s)
     
    

Steps errors 28

Expand to view the steps failures

Show only the first 10 steps failures

x-pack/filebeat-pythonIntegTest - mage pythonIntegTest
  • Took 33 min 11 sec . View more details here
  • Description: mage pythonIntegTest
x-pack/filebeat-pythonIntegTest - mage pythonIntegTest
  • Took 31 min 58 sec . View more details here
  • Description: mage pythonIntegTest
x-pack/filebeat-pythonIntegTest - mage pythonIntegTest
  • Took 30 min 5 sec . View more details here
  • Description: mage pythonIntegTest
x-pack/metricbeat-goIntegTest - mage goIntegTest
  • Took 20 min 12 sec . View more details here
  • Description: mage goIntegTest
x-pack/metricbeat-goIntegTest - mage goIntegTest
  • Took 15 min 48 sec . View more details here
  • Description: mage goIntegTest
x-pack/metricbeat-goIntegTest - mage goIntegTest
  • Took 17 min 33 sec . View more details here
  • Description: mage goIntegTest
x-pack/metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 13 min 42 sec . View more details here
  • Description: mage pythonIntegTest
x-pack/metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 7 min 51 sec . View more details here
  • Description: mage pythonIntegTest
x-pack/metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 7 min 8 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 26

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

  • Name: Build&Test / x-pack/metricbeat-pythonIntegTest / test_status – x-pack.metricbeat.module.cockroachdb.test_cockroachdb.Test
  • Name: Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_0_stats – x-pack.metricbeat.module.stan.test_stan.TestStan
  • Name: Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_1_channels – x-pack.metricbeat.module.stan.test_stan.TestStan
  • Name: Build&Test / x-pack/metricbeat-pythonIntegTest / test_metricset_2_subscriptions – x-pack.metricbeat.module.stan.test_stan.TestStan
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/cockroachdb/status
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/channels
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/channels
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/stats
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/stats
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/subscriptions
  • Name: Build&Test / x-pack/metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/x-pack/metricbeat/module/stan/subscriptions
  • Name: Build&Test / metricbeat-goIntegTest / TestFetch – github.com/elastic/beats/v7/metricbeat/module/jolokia/jmx
  • Name: Build&Test / metricbeat-goIntegTest / TestData – github.com/elastic/beats/v7/metricbeat/module/jolokia/jmx
  • 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
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_244_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_247_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_248_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_250_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_266_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_271_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_277_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_285_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_297_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_298_cyberarkpas – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest
  • Name: Build&Test / x-pack/filebeat-pythonIntegTest / test_fileset_file_369_cisco – x-pack.filebeat.tests.system.test_xpack_modules.XPackTest

🤖 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!)

@AndersonQ AndersonQ merged commit 393b336 into 8.2 May 4, 2023
83 of 93 checks passed
@AndersonQ AndersonQ deleted the backport-8.2-pr-35257 branch May 4, 2023 16:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport Team:Automation Label for the Observability productivity team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants