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

[7.x] Send APM Server config to Kibana (backport #5424) #5526

Closed
wants to merge 5 commits into from

Conversation

mergify[bot]
Copy link
Contributor

@mergify mergify bot commented Jun 23, 2021

This is an automatic backport of pull request #5424 done by Mergify.
Cherry-pick of 1920f95 has failed:

On branch mergify/bp/7.x/pr-5424
Your branch is up to date with 'origin/7.x'.

You are currently cherry-picking commit 1920f958.
  (fix conflicts and run "git cherry-pick --continue")
  (use "git cherry-pick --skip" to skip this patch)
  (use "git cherry-pick --abort" to cancel the cherry-pick operation)

Changes to be committed:
	new file:   kibana/send_config.go
	new file:   kibana/send_config_test.go

Unmerged paths:
  (use "git add/rm <file>..." as appropriate to mark resolution)
	both modified:   beater/beater.go
	deleted by us:   changelogs/head.asciidoc

To fix up this pull request, you can check it out locally. See documentation: https://help.github.com/articles/checking-out-pull-requests-locally/


Mergify commands and options

More conditions and actions can be found in the documentation.

You can also trigger Mergify actions by commenting on this pull request:

  • @Mergifyio refresh will re-evaluate the rules
  • @Mergifyio rebase will rebase this PR on its base branch
  • @Mergifyio update will merge the base branch into this PR
  • @Mergifyio backport <destination> will backport this PR on <destination> branch

Additionally, on Mergify dashboard you can:

  • look at your merge queues
  • generate the Mergify configuration with the config editor.

Finally, you can contact us on https://mergify.io/

(cherry picked from commit 1920f95)

# Conflicts:
#	beater/beater.go
#	changelogs/head.asciidoc
@mergify mergify bot added the conflicts There is a conflict in the backported pull request label Jun 23, 2021
@apmmachine
Copy link
Contributor

apmmachine commented Jun 23, 2021

💔 Tests Failed

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

Expand to view the summary

Build stats

  • Build Cause: stuartnelson3 commented: jenkins run the tests

  • Start Time: 2021-06-24T09:43:28.386+0000

  • Duration: 51 min 18 sec

  • Commit: 588fa17

Test stats 🧪

Test Results
Failed 3
Passed 4705
Skipped 120
Total 4828

Trends 🧪

Image of Build Times

Image of Tests

Test errors 3

Expand to view the tests failures

Build and Test / APM Integration Tests / test_concurrent_req_dotnet – tests.agent.test_dotnet
    Expand to view the error details

     AssertionError: queried for [('processor.event', 'transaction'), ('service.name', ['dotnetapp'])], expected 2000, got 1999 
    

    Expand to view the stacktrace

     dotnet = <tests.fixtures.agents.Agent object at 0x7f9147eeda10>
    
        @pytest.mark.version
        @pytest.mark.dotnet
        def test_concurrent_req_dotnet(dotnet):
            foo = Concurrent.Endpoint(dotnet.foo.url,
                                      dotnet.app_name,
                                      ["foo"],
                                      "GET /foo")
    >       Concurrent(dotnet.apm_server.elasticsearch, [foo], iters=2).run()
    
    tests/agent/test_dotnet.py:28: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    tests/agent/concurrent_requests.py:299: in run
        self.check_counts(it)
    tests/agent/concurrent_requests.py:137: in check_counts
        assert_count([("processor.event", "transaction"), ("service.name", service_names)], transactions_count)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    terms = [('processor.event', 'transaction'), ('service.name', ['dotnetapp'])]
    expected = 2000
    
        def assert_count(terms, expected):
            """wait a bit for doc count to reach expectation"""
        
            @timeout_decorator.timeout(max_wait)
            def check_count(mut_actual):
                while True:
                    rsp = self.es.count(index=self.index, body=self.elasticsearch.term_q(terms))
                    mut_actual[0] = rsp["count"]
                    if mut_actual[0] >= expected:
                        return
                    time.sleep(backoff)
        
            mut_actual = [-1]  # keep actual count in this mutable
            try:
                check_count(mut_actual)
            except timeout_decorator.TimeoutError:
                pass
            actual = mut_actual[0]
    >       assert actual == expected, err.format(terms, expected, actual)
    E       AssertionError: queried for [('processor.event', 'transaction'), ('service.name', ['dotnetapp'])], expected 2000, got 1999
    
    tests/agent/concurrent_requests.py:131: AssertionError 
    

Build and Test / APM Integration Tests / test_concurrent_req_dotnet_foobar – tests.agent.test_dotnet
    Expand to view the error details

     AssertionError: queried for [('processor.event', 'span'), ('service.name', ['dotnetapp', 'dotnetapp'])], expected 2375, got 2374 
    

    Expand to view the stacktrace

     dotnet = <tests.fixtures.agents.Agent object at 0x7f9147eeda10>
    
        @pytest.mark.version
        @pytest.mark.dotnet
        def test_concurrent_req_dotnet_foobar(dotnet):
            foo = Concurrent.Endpoint(dotnet.foo.url,
                                      dotnet.app_name,
                                      ["foo"],
                                      "GET /foo",
                                      events_no=375)
            bar = Concurrent.Endpoint(dotnet.bar.url,
                                      dotnet.app_name,
                                      ["bar", "extra"],
                                      "GET /bar")
    >       Concurrent(dotnet.apm_server.elasticsearch, [foo, bar], iters=1).run()
    
    tests/agent/test_dotnet.py:43: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    tests/agent/concurrent_requests.py:299: in run
        self.check_counts(it)
    tests/agent/concurrent_requests.py:140: in check_counts
        assert_count([("processor.event", "span"), ('service.name', service_names)], spans_count)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    terms = [('processor.event', 'span'), ('service.name', ['dotnetapp', 'dotnetapp'])]
    expected = 2375
    
        def assert_count(terms, expected):
            """wait a bit for doc count to reach expectation"""
        
            @timeout_decorator.timeout(max_wait)
            def check_count(mut_actual):
                while True:
                    rsp = self.es.count(index=self.index, body=self.elasticsearch.term_q(terms))
                    mut_actual[0] = rsp["count"]
                    if mut_actual[0] >= expected:
                        return
                    time.sleep(backoff)
        
            mut_actual = [-1]  # keep actual count in this mutable
            try:
                check_count(mut_actual)
            except timeout_decorator.TimeoutError:
                pass
            actual = mut_actual[0]
    >       assert actual == expected, err.format(terms, expected, actual)
    E       AssertionError: queried for [('processor.event', 'span'), ('service.name', ['dotnetapp', 'dotnetapp'])], expected 2375, got 2374
    
    tests/agent/concurrent_requests.py:131: AssertionError 
    

Build and Test / APM Integration Tests / test_conc_req_all_agents – tests.agent.test_multiple_agents
    Expand to view the error details

     AssertionError: queried for [('processor.event', 'transaction'), ('service.name', ['dotnetapp', 'dotnetapp', 'flaskapp', 'flaskapp', 'djangoapp', 'djangoapp', 'expressapp', 'expressapp', 'railsapp', 'railsapp', 'gonethttpapp', 'gonethttpapp', 'springapp', 'springapp'])], expected 7000, got 6999 
    

    Expand to view the stacktrace

     es = <tests.fixtures.es.es.<locals>.Elasticsearch object at 0x7f9148d22ad0>
    apm_server = <tests.fixtures.apm_server.apm_server.<locals>.APMServer object at 0x7f9147eed890>
    flask = <tests.fixtures.agents.Agent object at 0x7f9104a89d90>
    django = <tests.fixtures.agents.Agent object at 0x7f9104a89810>
    dotnet = <tests.fixtures.agents.Agent object at 0x7f9147eeda10>
    express = <tests.fixtures.agents.Agent object at 0x7f9104b28c90>
    rails = <tests.fixtures.agents.Agent object at 0x7f9104f39350>
    go_nethttp = <tests.fixtures.agents.Agent object at 0x7f91243cfa10>
    java_spring = <tests.fixtures.agents.Agent object at 0x7f91243cf810>
    
        def test_conc_req_all_agents(es, apm_server, flask, django, dotnet, express, rails, go_nethttp, java_spring):
            dotnet_f = Concurrent.Endpoint(dotnet.foo.url,
                                           dotnet.app_name,
                                           ["foo"],
                                           "GET /foo",
                                           events_no=500)
            dotnet_b = Concurrent.Endpoint(dotnet.bar.url,
                                           dotnet.app_name,
                                           ["bar", "extra"],
                                           "GET /bar",
                                           events_no=500)
            flask_f = Concurrent.Endpoint(flask.foo.url,
                                          flask.app_name,
                                          ["app.foo"],
                                          "GET /foo",
                                          events_no=500)
            flask_b = Concurrent.Endpoint(flask.bar.url,
                                          flask.app_name,
                                          ["app.bar", "app.extra"],
                                          "GET /bar",
                                          events_no=500)
            django_f = Concurrent.Endpoint(django.foo.url,
                                           django.app_name,
                                           ["foo.views.foo"],
                                           "GET foo.views.show",
                                           events_no=500)
            django_b = Concurrent.Endpoint(django.bar.url,
                                           django.app_name,
                                           ["bar.views.bar", "bar.views.extra"],
                                           "GET bar.views.show",
                                           events_no=500)
            express_f = Concurrent.Endpoint(express.foo.url,
                                            express.app_name,
                                            ["app.foo"],
                                            "GET /foo",
                                            events_no=500)
            express_b = Concurrent.Endpoint(express.bar.url,
                                            express.app_name,
                                            ["app.bar", "app.extra"],
                                            "GET /bar",
                                            events_no=500)
            rails_f = Concurrent.Endpoint(rails.foo.url,
                                          rails.app_name,
                                          ["ApplicationController#foo"],
                                          "ApplicationController#foo",
                                          events_no=500)
            rails_b = Concurrent.Endpoint(rails.bar.url,
                                          rails.app_name,
                                          ["ApplicationController#bar", "app.extra"],
                                          "ApplicationController#bar",
                                          events_no=500)
            go_nethttp_f = Concurrent.Endpoint(go_nethttp.foo.url,
                                               go_nethttp.app_name,
                                               ["foo"],
                                               "GET /foo",
                                               events_no=500)
            go_nethttp_b = Concurrent.Endpoint(go_nethttp.bar.url,
                                               go_nethttp.app_name,
                                               ["bar", "extra"],
                                               "GET /bar",
                                               events_no=500)
            java_spring_f = Concurrent.Endpoint(java_spring.foo.url,
                                                java_spring.app_name,
                                                ["foo"],
                                                "GreetingController#foo",
                                                events_no=500)
            java_spring_b = Concurrent.Endpoint(java_spring.bar.url,
                                                java_spring.app_name,
                                                ["bar", "extra"],
                                                "GreetingController#bar",
                                                events_no=500)
        
            Concurrent(es, [
                dotnet_f, dotnet_b,
                flask_f, flask_b,
                django_f, django_b,
                express_f, express_b,
                rails_b, rails_f,
                go_nethttp_f, go_nethttp_b,
                java_spring_f, java_spring_b,
    >       ], iters=1).run()
    
    tests/agent/test_multiple_agents.py:84: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    tests/agent/concurrent_requests.py:299: in run
        self.check_counts(it)
    tests/agent/concurrent_requests.py:137: in check_counts
        assert_count([("processor.event", "transaction"), ("service.name", service_names)], transactions_count)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    terms = [('processor.event', 'transaction'), ('service.name', ['dotnetapp', 'dotnetapp', 'flaskapp', 'flaskapp', 'djangoapp', 'djangoapp', ...])]
    expected = 7000
    
        def assert_count(terms, expected):
            """wait a bit for doc count to reach expectation"""
        
            @timeout_decorator.timeout(max_wait)
            def check_count(mut_actual):
                while True:
                    rsp = self.es.count(index=self.index, body=self.elasticsearch.term_q(terms))
                    mut_actual[0] = rsp["count"]
                    if mut_actual[0] >= expected:
                        return
                    time.sleep(backoff)
        
            mut_actual = [-1]  # keep actual count in this mutable
            try:
                check_count(mut_actual)
            except timeout_decorator.TimeoutError:
                pass
            actual = mut_actual[0]
    >       assert actual == expected, err.format(terms, expected, actual)
    E       AssertionError: queried for [('processor.event', 'transaction'), ('service.name', ['dotnetapp', 'dotnetapp', 'flaskapp', 'flaskapp', 'djangoapp', 'djangoapp', 'expressapp', 'expressapp', 'railsapp', 'railsapp', 'gonethttpapp', 'gonethttpapp', 'springapp', 'springapp'])], expected 7000, got 6999
    
    tests/agent/concurrent_requests.py:131: AssertionError 
    

Steps errors 2

Expand to view the steps failures

Windows build
  • Took 1 min 57 sec . View more details on here
Test Sync
  • Took 3 min 20 sec . View more details on here
  • Description: ./.ci/scripts/sync.sh

Log output

Expand to view the last 100 lines of log output

[2021-06-24T10:19:32.763Z] === RUN   TestJaegerGRPCSampling
[2021-06-24T10:19:32.763Z] --- PASS: TestJaegerGRPCSampling (3.86s)
[2021-06-24T10:19:32.763Z] === RUN   TestJaegerGRPCAuth
[2021-06-24T10:19:32.763Z] --- PASS: TestJaegerGRPCAuth (4.60s)
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServerGRPCRequestLoggingValid
[2021-06-24T10:19:32.763Z] --- PASS: TestAPMServerGRPCRequestLoggingValid (4.08s)
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServerRequestLoggingValid
[2021-06-24T10:19:32.763Z] --- PASS: TestAPMServerRequestLoggingValid (0.20s)
[2021-06-24T10:19:32.763Z] === RUN   TestApprovedMetrics
[2021-06-24T10:19:32.763Z] --- PASS: TestApprovedMetrics (6.17s)
[2021-06-24T10:19:32.763Z] === RUN   TestBreakdownMetrics
[2021-06-24T10:19:32.763Z] --- PASS: TestBreakdownMetrics (4.39s)
[2021-06-24T10:19:32.763Z] === RUN   TestApplicationMetrics
[2021-06-24T10:19:32.763Z] --- PASS: TestApplicationMetrics (5.26s)
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServerMonitoring
[2021-06-24T10:19:32.763Z] --- PASS: TestAPMServerMonitoring (0.54s)
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServerMonitoringBuiltinUser
[2021-06-24T10:19:32.763Z] --- PASS: TestAPMServerMonitoringBuiltinUser (2.02s)
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServerOnboarding
[2021-06-24T10:19:32.763Z] --- PASS: TestAPMServerOnboarding (5.72s)
[2021-06-24T10:19:32.763Z] === RUN   TestOTLPGRPCTraces
[2021-06-24T10:19:32.763Z] --- PASS: TestOTLPGRPCTraces (3.76s)
[2021-06-24T10:19:32.763Z] === RUN   TestOTLPGRPCMetrics
[2021-06-24T10:19:32.763Z] --- PASS: TestOTLPGRPCMetrics (6.35s)
[2021-06-24T10:19:32.763Z] === RUN   TestOTLPGRPCAuth
[2021-06-24T10:19:32.763Z] --- PASS: TestOTLPGRPCAuth (3.95s)
[2021-06-24T10:19:32.763Z] === RUN   TestOTLPClientIP
[2021-06-24T10:19:32.763Z] --- PASS: TestOTLPClientIP (5.92s)
[2021-06-24T10:19:32.763Z] === RUN   TestRUMXForwardedFor
[2021-06-24T10:19:32.763Z] --- PASS: TestRUMXForwardedFor (4.57s)
[2021-06-24T10:19:32.763Z] === RUN   TestRUMErrorSourcemapping
[2021-06-24T10:19:32.763Z] --- PASS: TestRUMErrorSourcemapping (5.95s)
[2021-06-24T10:19:32.763Z] === RUN   TestRUMAuth
[2021-06-24T10:19:32.763Z] --- PASS: TestRUMAuth (0.51s)
[2021-06-24T10:19:32.763Z] === RUN   TestRUMAllowServiceNames
[2021-06-24T10:19:32.763Z] --- PASS: TestRUMAllowServiceNames (0.22s)
[2021-06-24T10:19:32.763Z] === RUN   TestRUMRateLimit
[2021-06-24T10:19:32.763Z] --- PASS: TestRUMRateLimit (1.31s)
[2021-06-24T10:19:32.763Z] === RUN   TestKeepUnsampled
[2021-06-24T10:19:32.763Z] === RUN   TestKeepUnsampled/false
[2021-06-24T10:19:32.763Z] === RUN   TestKeepUnsampled/true
[2021-06-24T10:19:32.763Z] --- PASS: TestKeepUnsampled (9.32s)
[2021-06-24T10:19:32.763Z]     --- PASS: TestKeepUnsampled/false (4.40s)
[2021-06-24T10:19:32.763Z]     --- PASS: TestKeepUnsampled/true (4.92s)
[2021-06-24T10:19:32.763Z] === RUN   TestKeepUnsampledWarning
[2021-06-24T10:19:32.763Z] --- PASS: TestKeepUnsampledWarning (4.11s)
[2021-06-24T10:19:32.763Z] === RUN   TestTailSampling
[2021-06-24T10:19:32.763Z]     sampling_test.go:135: waiting for 100 "parent" transactions
[2021-06-24T10:19:32.763Z]     sampling_test.go:135: waiting for 100 "child" transactions
[2021-06-24T10:19:32.763Z] --- PASS: TestTailSampling (7.53s)
[2021-06-24T10:19:32.763Z] === RUN   TestTailSamplingUnlicensed
[2021-06-24T10:19:32.763Z] 2021/06/24 10:18:55 Starting container id: 3dfe18fd66f0 image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0-28665d9b-SNAPSHOT
[2021-06-24T10:19:32.763Z] 2021/06/24 10:18:55 Waiting for container id 3dfe18fd66f0 image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0-28665d9b-SNAPSHOT
[2021-06-24T10:19:32.763Z] 2021/06/24 10:19:14 Container is ready id: 3dfe18fd66f0 image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0-28665d9b-SNAPSHOT
[2021-06-24T10:19:32.763Z] --- PASS: TestTailSamplingUnlicensed (30.20s)
[2021-06-24T10:19:32.763Z] === RUN   TestIndexTemplateCoverage
[2021-06-24T10:19:32.763Z] --- PASS: TestIndexTemplateCoverage (5.50s)
[2021-06-24T10:19:32.763Z] PASS
[2021-06-24T10:19:32.763Z] ok  	github.com/elastic/apm-server/systemtest	368.687s
[2021-06-24T10:19:32.763Z] === RUN   TestAPMServer
[2021-06-24T10:19:32.763Z] 2021/06/24 10:13:20 Building apm-server...
[2021-06-24T10:19:32.764Z] 2021/06/24 10:13:22 Built /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-5526/src/github.com/elastic/apm-server/apm-server
[2021-06-24T10:19:32.764Z] --- PASS: TestAPMServer (2.60s)
[2021-06-24T10:19:32.764Z] === RUN   TestUnstartedAPMServer
[2021-06-24T10:19:32.764Z] --- PASS: TestUnstartedAPMServer (0.00s)
[2021-06-24T10:19:32.764Z] === RUN   TestAPMServerStartTLS
[2021-06-24T10:19:32.764Z] --- PASS: TestAPMServerStartTLS (0.16s)
[2021-06-24T10:19:32.764Z] === RUN   TestExpvar
[2021-06-24T10:19:32.764Z] --- PASS: TestExpvar (0.14s)
[2021-06-24T10:19:32.764Z] PASS
[2021-06-24T10:19:32.764Z] ok  	github.com/elastic/apm-server/systemtest/apmservertest	2.922s
[2021-06-24T10:19:32.764Z] ?   	github.com/elastic/apm-server/systemtest/benchtest	[no test files]
[2021-06-24T10:19:32.764Z] ?   	github.com/elastic/apm-server/systemtest/cmd/apmbench	[no test files]
[2021-06-24T10:19:32.764Z] ?   	github.com/elastic/apm-server/systemtest/estest	[no test files]
[2021-06-24T10:19:32.764Z] ?   	github.com/elastic/apm-server/systemtest/fleettest	[no test files]
[2021-06-24T10:19:32.764Z] + cleanup
[2021-06-24T10:19:32.764Z] + rm -rf /tmp/tmp.0DkS5qvCJB
[2021-06-24T10:19:32.764Z] + .ci/scripts/docker-get-logs.sh
[2021-06-24T10:19:32.764Z] It is not possible to grab the logs of 6d4c9a2a1506
[2021-06-24T10:19:34.168Z] Post stage
[2021-06-24T10:19:34.182Z] Running in /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-5526/src/github.com/elastic/apm-server/build
[2021-06-24T10:19:34.204Z] Archiving artifacts
[2021-06-24T10:19:34.737Z] Recording test results
[2021-06-24T10:19:35.299Z] [Checks API] No suitable checks publisher found.
[2021-06-24T10:19:35.637Z] + tar --version
[2021-06-24T10:19:35.969Z] + tar --exclude=system-tests-linux-files.tgz -czf system-tests-linux-files.tgz system-tests
[2021-06-24T10:19:36.249Z] Archiving artifacts
[2021-06-24T10:19:36.669Z] Terminated
[2021-06-24T10:19:36.701Z] Terminated
[2021-06-24T10:34:41.245Z] [INFO] For detailed information see: https://apm-ci.elastic.co/job/apm-integration-tests-selector-mbp/job/7.x/995/display/redirect
[2021-06-24T10:34:43.512Z] Copied 21 artifacts from "APM Integration Test MBP Selector » 7.x" build number 995
[2021-06-24T10:34:44.696Z] Post stage
[2021-06-24T10:34:44.706Z] Recording test results
[2021-06-24T10:34:45.455Z] [Checks API] No suitable checks publisher found.
[2021-06-24T10:34:45.805Z] Running on Jenkins in /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-5526
[2021-06-24T10:34:45.855Z] [INFO] getVaultSecret: Getting secrets
[2021-06-24T10:34:45.899Z] Masking supported pattern matches of $VAULT_ADDR or $VAULT_ROLE_ID or $VAULT_SECRET_ID
[2021-06-24T10:34:46.629Z] + chmod 755 generate-build-data.sh
[2021-06-24T10:34:46.629Z] + ./generate-build-data.sh https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-5526/ https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-5526/runs/9 UNSTABLE 3077981
[2021-06-24T10:34:46.629Z] INFO: curl https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-5526/runs/9/steps/?limit=10000 -o steps-info.json

@mergify
Copy link
Contributor Author

mergify bot commented Jun 23, 2021

This pull request is now in conflicts. Could you fix it @mergify[bot]? 🙏
To fixup this pull request, you can check out it locally. See documentation: https://help.github.com/articles/checking-out-pull-requests-locally/

git fetch upstream
git checkout -b mergify/bp/7.x/pr-5424 upstream/mergify/bp/7.x/pr-5424
git merge upstream/7.x
git push upstream mergify/bp/7.x/pr-5424

@stuartnelson3
Copy link
Contributor

jenkins run the tests

4 similar comments
@stuartnelson3
Copy link
Contributor

jenkins run the tests

@stuartnelson3
Copy link
Contributor

jenkins run the tests

@stuartnelson3
Copy link
Contributor

jenkins run the tests

@stuartnelson3
Copy link
Contributor

jenkins run the tests

@stuartnelson3
Copy link
Contributor

handled by #5537

@stuartnelson3 stuartnelson3 deleted the mergify/bp/7.x/pr-5424 branch June 24, 2021 12:01
@mergify
Copy link
Contributor Author

mergify bot commented Jun 24, 2021

This pull request is now in conflicts. Could you fix it @mergify[bot]? 🙏
To fixup this pull request, you can check out it locally. See documentation: https://help.github.com/articles/checking-out-pull-requests-locally/

git fetch upstream
git checkout -b mergify/bp/7.x/pr-5424 upstream/mergify/bp/7.x/pr-5424
git merge upstream/7.x
git push upstream mergify/bp/7.x/pr-5424

@apmmachine
Copy link
Contributor

💚 Build Succeeded

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

Expand to view the summary

Build stats

  • Build Cause: stuartnelson3 commented: jenkins run the tests

  • Start Time: 2021-06-24T11:25:41.298+0000

  • Duration: 42 min 18 sec

  • Commit: 588fa17

Test stats 🧪

Test Results
Failed 0
Passed 4708
Skipped 120
Total 4828

Trends 🧪

Image of Build Times

Image of Tests

simitt added a commit to simitt/apm-server that referenced this pull request Jun 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
conflicts There is a conflict in the backported pull request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants