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

docs: add 7.14.1 release notes #6083

Merged
merged 2 commits into from
Aug 31, 2021

Conversation

bmorelli25
Copy link
Member

There's one commit to 7.14 that stood out to me. Do we want to move this bugfix to the 7.14.1 release notes?

@bmorelli25 bmorelli25 added v7.15.0 Team:Docs Label for the Observability docs team 7.14.0 labels Aug 31, 2021
@bmorelli25 bmorelli25 requested a review from a team August 31, 2021 00:11
@bmorelli25 bmorelli25 self-assigned this Aug 31, 2021
@apmmachine
Copy link
Contributor

apmmachine commented Aug 31, 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 preview

Expand to view the summary

Build stats

  • Start Time: 2021-08-31T00:13:02.933+0000

  • Duration: 43 min 29 sec

  • Commit: e90a5fc

Test stats 🧪

Test Results
Failed 1
Passed 5893
Skipped 14
Total 5908

Trends 🧪

Image of Build Times

Image of Tests

Test errors 1

Expand to view the tests failures

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

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

    Expand to view the stacktrace

     java_spring = <tests.fixtures.agents.Agent object at 0x7f295853c990>
    
        @pytest.mark.java_spring
        def test_concurrent_req_java_spring(java_spring):
            foo = Concurrent.Endpoint(java_spring.foo.url,
                                      java_spring.app_name,
                                      ["foo"],
                                      "GreetingController#foo")
    >       Concurrent(java_spring.apm_server.elasticsearch, [foo], iters=2).run()
    
    tests/agent/test_java.py:25: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    tests/agent/concurrent_requests.py:254: in run
        self.check_counts(it)
    tests/agent/concurrent_requests.py:138: in check_counts
        assert_count([("processor.event", "transaction"), ("service.name", service_names)], transactions_count)
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    terms = [('processor.event', 'transaction'), ('service.name', ['springapp'])]
    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', ['springapp'])], expected 2000, got 1999
    
    tests/agent/concurrent_requests.py:132: AssertionError 
    

Log output

Expand to view the last 100 lines of log output

[2021-08-31T00:51:56.421Z] === RUN   TestAPMServerMonitoringBuiltinUser
[2021-08-31T00:51:56.422Z] --- PASS: TestAPMServerMonitoringBuiltinUser (2.09s)
[2021-08-31T00:51:56.422Z] === RUN   TestAPMServerOnboarding
[2021-08-31T00:51:56.422Z] --- PASS: TestAPMServerOnboarding (4.09s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPGRPCTraces
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPGRPCTraces (4.03s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPGRPCMetrics
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPGRPCMetrics (4.53s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPGRPCAuth
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPGRPCAuth (4.06s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPClientIP
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPClientIP (3.65s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPAnonymous
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPAnonymous (0.28s)
[2021-08-31T00:51:56.422Z] === RUN   TestOTLPRateLimit
[2021-08-31T00:51:56.422Z] --- PASS: TestOTLPRateLimit (0.37s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMXForwardedFor
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMXForwardedFor (4.03s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMAllowServiceNames
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMAllowServiceNames (0.15s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMRateLimit
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMRateLimit (0.91s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMCORS
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMCORS (0.16s)
[2021-08-31T00:51:56.422Z] === RUN   TestKeepUnsampled
[2021-08-31T00:51:56.422Z] === RUN   TestKeepUnsampled/false
[2021-08-31T00:51:56.422Z] === RUN   TestKeepUnsampled/true
[2021-08-31T00:51:56.422Z] --- PASS: TestKeepUnsampled (8.14s)
[2021-08-31T00:51:56.422Z]     --- PASS: TestKeepUnsampled/false (4.31s)
[2021-08-31T00:51:56.422Z]     --- PASS: TestKeepUnsampled/true (3.84s)
[2021-08-31T00:51:56.422Z] === RUN   TestKeepUnsampledWarning
[2021-08-31T00:51:56.422Z] --- PASS: TestKeepUnsampledWarning (3.66s)
[2021-08-31T00:51:56.422Z] === RUN   TestTailSampling
[2021-08-31T00:51:56.422Z]     sampling_test.go:141: waiting for 100 "parent" transactions
[2021-08-31T00:51:56.422Z]     sampling_test.go:141: waiting for 100 "child" transactions
[2021-08-31T00:51:56.422Z] --- PASS: TestTailSampling (22.43s)
[2021-08-31T00:51:56.422Z] === RUN   TestTailSamplingUnlicensed
[2021-08-31T00:51:56.422Z] 2021/08/31 00:50:36 Starting container id: bfd8e86d0da3 image: docker.elastic.co/elasticsearch/elasticsearch:8.0.0-1efff7fc-SNAPSHOT
[2021-08-31T00:51:56.422Z] 2021/08/31 00:50:37 Waiting for container id bfd8e86d0da3 image: docker.elastic.co/elasticsearch/elasticsearch:8.0.0-1efff7fc-SNAPSHOT
[2021-08-31T00:51:56.422Z] 2021/08/31 00:50:54 Container is ready id: bfd8e86d0da3 image: docker.elastic.co/elasticsearch/elasticsearch:8.0.0-1efff7fc-SNAPSHOT
[2021-08-31T00:51:56.422Z] --- PASS: TestTailSamplingUnlicensed (34.82s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMErrorSourcemapping
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMErrorSourcemapping (4.23s)
[2021-08-31T00:51:56.422Z] === RUN   TestRUMSpanSourcemapping
[2021-08-31T00:51:56.422Z] --- PASS: TestRUMSpanSourcemapping (4.15s)
[2021-08-31T00:51:56.422Z] === RUN   TestDuplicateSourcemapWarning
[2021-08-31T00:51:56.422Z] --- PASS: TestDuplicateSourcemapWarning (4.62s)
[2021-08-31T00:51:56.422Z] === RUN   TestNoMatchingSourcemap
[2021-08-31T00:51:56.422Z] --- PASS: TestNoMatchingSourcemap (4.79s)
[2021-08-31T00:51:56.422Z] === RUN   TestFetchLatestSourcemap
[2021-08-31T00:51:56.422Z] --- PASS: TestFetchLatestSourcemap (5.74s)
[2021-08-31T00:51:56.422Z] === RUN   TestSourcemapCaching
[2021-08-31T00:51:56.422Z] --- PASS: TestSourcemapCaching (5.81s)
[2021-08-31T00:51:56.422Z] === RUN   TestIndexTemplateCoverage
[2021-08-31T00:51:56.422Z] --- PASS: TestIndexTemplateCoverage (5.20s)
[2021-08-31T00:51:56.422Z] PASS
[2021-08-31T00:51:56.422Z] ok  	github.com/elastic/apm-server/systemtest	499.531s
[2021-08-31T00:51:56.422Z] === RUN   TestAPMServer
[2021-08-31T00:51:56.422Z] 2021/08/31 00:43:23 Building apm-server...
[2021-08-31T00:51:56.422Z] 2021/08/31 00:43:26 Built /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-6083/src/github.com/elastic/apm-server/apm-server
[2021-08-31T00:51:56.422Z] --- PASS: TestAPMServer (2.84s)
[2021-08-31T00:51:56.422Z] === RUN   TestUnstartedAPMServer
[2021-08-31T00:51:56.422Z] --- PASS: TestUnstartedAPMServer (0.00s)
[2021-08-31T00:51:56.422Z] === RUN   TestAPMServerStartTLS
[2021-08-31T00:51:56.422Z] --- PASS: TestAPMServerStartTLS (0.11s)
[2021-08-31T00:51:56.422Z] === RUN   TestExpvar
[2021-08-31T00:51:56.422Z] --- PASS: TestExpvar (0.11s)
[2021-08-31T00:51:56.422Z] PASS
[2021-08-31T00:51:56.422Z] ok  	github.com/elastic/apm-server/systemtest/apmservertest	3.083s
[2021-08-31T00:51:56.422Z] ?   	github.com/elastic/apm-server/systemtest/benchtest	[no test files]
[2021-08-31T00:51:56.422Z] ?   	github.com/elastic/apm-server/systemtest/cmd/apmbench	[no test files]
[2021-08-31T00:51:56.422Z] ?   	github.com/elastic/apm-server/systemtest/estest	[no test files]
[2021-08-31T00:51:56.422Z] ?   	github.com/elastic/apm-server/systemtest/fleettest	[no test files]
[2021-08-31T00:51:56.422Z] + cleanup
[2021-08-31T00:51:56.422Z] + rm -rf /tmp/tmp.pLSTsYwoXH
[2021-08-31T00:51:56.422Z] + .ci/scripts/docker-get-logs.sh
[2021-08-31T00:51:56.422Z] It is not possible to grab the logs of 14dbf790dde0
[2021-08-31T00:51:57.496Z] Post stage
[2021-08-31T00:51:57.510Z] Running in /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-6083/src/github.com/elastic/apm-server/build
[2021-08-31T00:51:57.534Z] Archiving artifacts
[2021-08-31T00:51:58.186Z] Recording test results
[2021-08-31T00:51:59.135Z] [Checks API] No suitable checks publisher found.
[2021-08-31T00:51:59.480Z] + tar --version
[2021-08-31T00:51:59.843Z] + tar --exclude=system-tests-linux-files.tgz -czf system-tests-linux-files.tgz system-tests
[2021-08-31T00:51:59.865Z] Archiving artifacts
[2021-08-31T00:52:00.516Z] Terminated
[2021-08-31T00:52:00.500Z] Terminated
[2021-08-31T00:56:24.708Z] [INFO] For detailed information see: https://apm-ci.elastic.co/job/apm-integration-tests-selector-mbp/job/master/20046/display/redirect
[2021-08-31T00:56:27.975Z] Copied 28 artifacts from "APM Integration Test MBP Selector » master" build number 20046
[2021-08-31T00:56:29.039Z] Post stage
[2021-08-31T00:56:29.050Z] Recording test results
[2021-08-31T00:56:30.556Z] [Checks API] No suitable checks publisher found.
[2021-08-31T00:56:30.894Z] Running on Jenkins in /var/lib/jenkins/workspace/pm-server_apm-server-mbp_PR-6083
[2021-08-31T00:56:30.950Z] [INFO] getVaultSecret: Getting secrets
[2021-08-31T00:56:30.992Z] Masking supported pattern matches of $VAULT_ADDR or $VAULT_ROLE_ID or $VAULT_SECRET_ID
[2021-08-31T00:56:31.728Z] + chmod 755 generate-build-data.sh
[2021-08-31T00:56:31.728Z] + ./generate-build-data.sh https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-6083/ https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-6083/runs/2 UNSTABLE 2608535
[2021-08-31T00:56:31.728Z] INFO: curl https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-6083/runs/2/steps/?limit=10000 -o steps-info.json
[2021-08-31T00:56:31.979Z] INFO: curl https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-6083/runs/2/tests/?status=FAILED -o tests-errors.json
[2021-08-31T00:56:31.979Z] INFO: curl https://apm-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/apm-server/apm-server-mbp/PR-6083/runs/2/log/ -o pipeline-log.txt

@bmorelli25 bmorelli25 merged commit 4cc2f58 into elastic:master Aug 31, 2021
@bmorelli25 bmorelli25 deleted the 7.14.1-release-notes branch August 31, 2021 14:31
bmorelli25 added a commit to bmorelli25/apm-server that referenced this pull request Aug 31, 2021
bmorelli25 added a commit to bmorelli25/apm-server that referenced this pull request Aug 31, 2021
bmorelli25 added a commit to bmorelli25/apm-server that referenced this pull request Aug 31, 2021
simitt pushed a commit that referenced this pull request Sep 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
7.14.0 Team:Docs Label for the Observability docs team v7.15.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants