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

ignore prometheus parsing errors #37383

Merged
merged 20 commits into from
Jan 4, 2024

Conversation

gsantoro
Copy link
Contributor

Proposed commit message

Ignore parser errors from unsupported metrics types on Prometheus client and continue parsing until EOF is reached.

For example Prometheus client with default text/plain format doesn't support info metrics and it will generate an error at https://github.com/prometheus/prometheus/blob/965e603fa792bca0900ac76eb45ae84c81af1cdf/model/textparse/promparse.go#L319.

Currently that error breaks the parsing and it ignores any remaining metrics in the list. With this change instead we will correctly parse all the supported metrics types and ignore the unsupported ones.

Metrics of type info are correctly supported by OpenMetrics format. KSM supports OpenMetrics text format as well but in Beats the helper is hardcoded to use only plain text format at

const acceptHeader = `text/plain;version=0.0.4;q=0.5,*/*;q=0.1`
.

Checklist

  • My code follows the style guidelines of this project
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have made corresponding change to the default configuration files
  • I have added tests that prove my fix is effective or that my feature works
  • I have added an entry in CHANGELOG.next.asciidoc or CHANGELOG-developer.next.asciidoc.

Author's Checklist

  • [ ]

How to test this PR locally

See related issue #37198 on how to test these changes

Related issues

Use cases

Screenshots

Logs

@gsantoro gsantoro added bug Team:obs-ds-hosted-services Label for the Observability Hosted Services team Team:Elastic-Agent Label for the Agent team backport-v8.11.0 Automated backport with mergify labels Dec 11, 2023
@gsantoro gsantoro self-assigned this Dec 11, 2023
@gsantoro gsantoro requested a review from a team as a code owner December 11, 2023 14:37
@elasticmachine
Copy link
Collaborator

Pinging @elastic/obs-ds-hosted-services (Team:obs-ds-hosted-services)

@botelastic botelastic bot added needs_team Indicates that the issue/PR needs a Team:* label and removed needs_team Indicates that the issue/PR needs a Team:* label labels Dec 11, 2023
@gsantoro
Copy link
Contributor Author

This PR is supposed to replace entirely #37357 which was created by mistake from the wrong git branch

@gsantoro gsantoro enabled auto-merge (squash) December 11, 2023 14:41
@elasticmachine
Copy link
Collaborator

❕ Build Aborted

There is a new build on-going so the previous on-going builds have been aborted.

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

  • Start Time: 2023-12-11T14:37:25.194+0000

  • Duration: 7 min 40 sec

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

Either there was a build timeout or someone aborted the build.

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

  • Duration: 7 min 1 sec

Steps errors 1

Expand to view the steps failures

Error signal
  • Took 0 min 0 sec . View more details here
  • Description: untar: step failed with error null

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

@elasticmachine
Copy link
Collaborator

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

  • Duration: 70 min 8 sec

Pipeline error 1

This error is likely related to the pipeline itself. Click here
and then you will see the error (either incorrect syntax or an invalid configuration).

❕ Flaky test report

No test was executed to be analysed.

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

@@ -496,8 +498,15 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time) ([]*MetricF
)
if et, err = parser.Next(); err != nil {
// TODO: log here
// if errors.Is(err, io.EOF) {}
break
if errors.Is(err, io.EOF) {
Copy link
Contributor

@gizas gizas Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I add here again the comment from Tania https://github.com/elastic/beats/pull/37357/files#r1420471049. I agree is important because now we have no clue what is happening in a similar case in the future.
Import "github.com/elastic/elastic-agent-libs/logp"

Possible suggestion:

if et, err = parser.Next(); err != nil {
			if errors.Is(err, io.EOF) {
				log.Errorf("EOF is reached: %v ", err)
				break
			}
			log.Debugf("Parse Prometheus Family error : %v ", err)	
			break
		}

Copy link
Contributor Author

@gsantoro gsantoro Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for the suggestion.

I am a bit skeptical about using a global logger and I thought we had to pass prometheus logger to the ParseMetricFamilies instead.

I tested both solutions. They both work, I think it is about styling. The current changes use Kubernetes logger since that's the only other logger globally available.

if we wanted to use Prometheus logger there a few more changes required in both the code and the tests.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry got confused with what is global and prometheus logger.

Currently I see that ParseMetricFamilies is calle from GetStateMetricsFamilies which is used from state metricsets here :https://github.com/elastic/beats/blob/main/metricbeat/helper/kubernetes/state_metricset.go#L115

So if we pass the error back to the state_metricset.go in abolve logger this would be able to log it. Is not it? Just to make sure that we return it in ParseMetricFamilies

Do you agree Giuseppe? Then in this case we dont want to add a new logger

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry I should have explain it better.

Unfortunately we can't return the error from the inner loop since there is some code that has to be executed inside the same function after that loop.

So far the logic is:

  • EOF ==> not an error -> break from loop
  • "data does not end with # EOF" ==> similar to EOF. it has reach the end but no EOF has been found. This "error" has surfaced today since a lot of tests were failing because of timeout when I was using "continue" instead of "break"
  • "invalid metric type" ==> need to ignore the error and keep processing the remaining metrics. This is the reason for this PR
  • any other error ==> we are breaking the loop and logging the error at debug level

Because we can't return from the loop, the "errors" needs to be logged from inside textparse.go/ParseMetricFamilies() and thus either using a global logger or pass Prometheus logger from the caller of that function

Copy link
Contributor

@gizas gizas Dec 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @gsantoro ! Now I think I got it. We need to return "invalid metric type" message back.

Because we already have prometheus logger, I guess is preferrable to pass it from caller function and not create another logger

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for adding logging!
Can you please also add a test for this use case? That info is skipped but rest of metrics are parsed correctly for ContentTypeTextFormat

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

There is a new build on-going so the previous on-going builds have been aborted.

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

  • Start Time: 2023-12-12T10:51:11.447+0000

  • Duration: 61 min 28 sec

Test stats 🧪

Test Results
Failed 11
Passed 2311
Skipped 125
Total 2447

Test errors 11

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / metricbeat-unitTest / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics
    === RUN   TestOpenMetrics/Simple_field_map
     
    

Build&Test / metricbeat-unitTest / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics/Simple_field_map
     
    

Build&Test / metricbeat-unitTest / TestAll – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll
    === RUN   TestAll/apache.status
    --- PASS: TestAll/apache.status (0.85s)
    === RUN   TestAll/apache.status/docs.plain
        testdata.go:238: Testing ../../../module/apache/status/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/apache/status/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/apache.status/docs.plain (0.85s)
    === RUN   TestAll/ceph.mgr_cluster_disk
    --- PASS: TestAll/ceph.mgr_cluster_disk (1.78s)
    === RUN   TestAll/ceph.mgr_cluster_disk/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_cluster_disk/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_cluster_disk/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_cluster_disk/failed.json (0.87s)
    === RUN   TestAll/ceph.mgr_cluster_disk/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_cluster_disk/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_cluster_disk/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_cluster_disk/sample.json (0.91s)
    === RUN   TestAll/ceph.mgr_osd_perf
    --- PASS: TestAll/ceph.mgr_osd_perf (1.36s)
    === RUN   TestAll/ceph.mgr_osd_perf/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_perf/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_perf/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_perf/failed.json (0.66s)
    === RUN   TestAll/ceph.mgr_osd_perf/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_perf/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_perf/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_perf/sample.json (0.70s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats
    --- PASS: TestAll/ceph.mgr_osd_pool_stats (1.57s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_pool_stats/failed.json (0.72s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_pool_stats/sample.json (0.85s)
    === RUN   TestAll/ceph.mgr_osd_tree
    --- PASS: TestAll/ceph.mgr_osd_tree (1.63s)
    === RUN   TestAll/ceph.mgr_osd_tree/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_tree/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_tree/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_tree/failed.json (0.86s)
    === RUN   TestAll/ceph.mgr_osd_tree/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_tree/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_tree/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_tree/sample.json (0.77s)
    === RUN   TestAll/ceph.mgr_pool_disk
    --- PASS: TestAll/ceph.mgr_pool_disk (1.72s)
    === RUN   TestAll/ceph.mgr_pool_disk/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_pool_disk/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_pool_disk/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_pool_disk/failed.json (0.84s)
    === RUN   TestAll/ceph.mgr_pool_disk/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_pool_disk/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_pool_disk/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_pool_disk/sample.json (0.88s)
    === RUN   TestAll/ceph.monitor_health
    --- PASS: TestAll/ceph.monitor_health (0.85s)
    === RUN   TestAll/ceph.monitor_health/docs.json
        testdata.go:238: Testing ../../../module/ceph/monitor_health/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/ceph/monitor_health/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/ceph.monitor_health/docs.json (0.85s)
    === RUN   TestAll/couchbase.cluster
    --- PASS: TestAll/couchbase.cluster (1.20s)
    === RUN   TestAll/couchbase.cluster/4.5.1.json
        testdata.go:238: Testing ../../../module/couchbase/cluster/_meta/testdata/4.5.1.json file
        testdata.go:307: Expected ../../../module/couchbase/cluster/_meta/testdata/4.5.1.json-expected.json file
    --- PASS: TestAll/couchbase.cluster/4.5.1.json (0.63s)
    === RUN   TestAll/couchbase.cluster/docs.json
        testdata.go:238: Testing ../../../module/couchbase/cluster/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/couchbase/cluster/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/couchbase.cluster/docs.json (0.57s)
    === RUN   TestAll/couchbase.node
    --- PASS: TestAll/couchbase.node (1.39s)
    === RUN   TestAll/couchbase.node/4.5.1.json
        testdata.go:238: Testing ../../../module/couchbase/node/_meta/testdata/4.5.1.json file
        testdata.go:307: Expected ../../../module/couchbase/node/_meta/testdata/4.5.1.json-expected.json file
    --- PASS: TestAll/couchbase.node/4.5.1.json (0.64s)
    === RUN   TestAll/couchbase.node/docs.json
        testdata.go:238: Testing ../../../module/couchbase/node/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/couchbase/node/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/couchbase.node/docs.json (0.75s)
    === RUN   TestAll/dropwizard.collector
    --- PASS: TestAll/dropwizard.collector (0.70s)
    === RUN   TestAll/dropwizard.collector/docs.json
        testdata.go:238: Testing ../../../module/dropwizard/collector/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/dropwizard/collector/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/dropwizard.collector/docs.json (0.70s)
    === RUN   TestAll/etcd.metrics
    --- PASS: TestAll/etcd.metrics (0.57s)
    === RUN   TestAll/etcd.metrics/metrics.plain
        testdata.go:238: Testing ../../../module/etcd/metrics/_meta/testdata/metrics.plain file
        testdata.go:307: Expected ../../../module/etcd/metrics/_meta/testdata/metrics.plain-expected.json file
    --- PASS: TestAll/etcd.metrics/metrics.plain (0.57s)
    === RUN   TestAll/http.json
    --- PASS: TestAll/http.json (0.60s)
    === RUN   TestAll/http.json/docs.json
        testdata.go:238: Testing ../../../module/http/json/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/http/json/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/http.json/docs.json (0.60s)
    === RUN   TestAll/kibana.status
    --- PASS: TestAll/kibana.status (1.14s)
    === RUN   TestAll/kibana.status/7.0.0.json
        testdata.go:238: Testing ../../../module/kibana/status/_meta/testdata/7.0.0.json file
        testdata.go:307: Expected ../../../module/kibana/status/_meta/testdata/7.0.0.json-expected.json file
    --- PASS: TestAll/kibana.status/7.0.0.json (0.61s)
    === RUN   TestAll/kibana.status/docs.json
        testdata.go:238: Testing ../../../module/kibana/status/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/kibana/status/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/kibana.status/docs.json (0.53s)
    === RUN   TestAll/kubernetes.apiserver
    --- PASS: TestAll/kubernetes.apiserver (1.46s)
    === RUN   TestAll/kubernetes.apiserver/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/apiserver/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/apiserver/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.apiserver/docs.plain (1.46s)
    === RUN   TestAll/kubernetes.controllermanager
    --- PASS: TestAll/kubernetes.controllermanager (0.62s)
    === RUN   TestAll/kubernetes.controllermanager/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/controllermanager/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/controllermanager/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.controllermanager/docs.plain (0.62s)
    === RUN   TestAll/kubernetes.proxy
    --- PASS: TestAll/kubernetes.proxy (0.78s)
    === RUN   TestAll/kubernetes.proxy/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/proxy/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/proxy/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.proxy/docs.plain (0.78s)
    === RUN   TestAll/kubernetes.scheduler
    --- PASS: TestAll/kubernetes.scheduler (0.76s)
    === RUN   TestAll/kubernetes.scheduler/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/scheduler/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/scheduler/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.scheduler/docs.plain (0.76s)
    === RUN   TestAll/kubernetes.state_container
    --- PASS: TestAll/kubernetes.state_container (3.84s)
    === RUN   TestAll/kubernetes.state_container/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/docs.plain (0.90s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.10.0.plain (0.92s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.8.2.plain (1.07s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.9.2.plain (0.95s)
    === RUN   TestAll/kubernetes.state_cronjob
    --- PASS: TestAll/kubernetes.state_cronjob (3.40s)
    === RUN   TestAll/kubernetes.state_cronjob/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/docs.plain (0.86s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.10.0.plain (1.04s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.8.2.plain (0.84s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.9.2.plain (0.66s)
    === RUN   TestAll/kubernetes.state_daemonset
    --- PASS: TestAll/kubernetes.state_daemonset (3.06s)
    === RUN   TestAll/kubernetes.state_daemonset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/docs.plain (0.80s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.10.0.plain (0.89s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.8.2.plain (0.70s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.9.2.plain (0.67s)
    === RUN   TestAll/kubernetes.state_deployment
    --- PASS: TestAll/kubernetes.state_deployment (2.53s)
    === RUN   TestAll/kubernetes.state_deployment/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/docs.plain (0.65s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.10.0.plain (0.59s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.8.2.plain (0.67s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.9.2.plain (0.62s)
    === RUN   TestAll/kubernetes.state_job
    --- PASS: TestAll/kubernetes.state_job (3.19s)
    === RUN   TestAll/kubernetes.state_job/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/docs.plain (0.84s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.10.0.plain (0.83s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.8.2.plain (0.77s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.9.2.plain (0.74s)
    === RUN   TestAll/kubernetes.state_namespace
    --- PASS: TestAll/kubernetes.state_namespace (2.43s)
    === RUN   TestAll/kubernetes.state_namespace/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/docs.plain (0.63s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.10.0.plain (0.60s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.8.2.plain (0.62s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.9.2.plain (0.58s)
    === RUN   TestAll/kubernetes.state_node
    --- PASS: TestAll/kubernetes.state_node (3.19s)
    === RUN   TestAll/kubernetes.state_node/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/docs.plain (0.74s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.10.0.plain (0.78s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.8.2.plain (0.85s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.9.2.plain (0.81s)
    === RUN   TestAll/kubernetes.state_persistentvolume
    --- PASS: TestAll/kubernetes.state_persistentvolume (3.70s)
    === RUN   TestAll/kubernetes.state_persistentvolume/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/docs.plain (0.98s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.10.0.plain (0.94s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.8.2.plain (0.81s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.9.2.plain (0.98s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim (3.67s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/docs.plain (1.03s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.10.0.plain (0.92s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.8.2.plain (0.83s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.9.2.plain (0.89s)
    === RUN   TestAll/kubernetes.state_pod
    --- PASS: TestAll/kubernetes.state_pod (3.33s)
    === RUN   TestAll/kubernetes.state_pod/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/docs.plain (0.82s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.10.0.plain (0.87s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.8.2.plain (0.83s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.9.2.plain (0.80s)
    === RUN   TestAll/kubernetes.state_replicaset
    --- PASS: TestAll/kubernetes.state_replicaset (3.64s)
    === RUN   TestAll/kubernetes.state_replicaset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/docs.plain (0.95s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.10.0.plain (1.00s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.8.2.plain (0.82s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.9.2.plain (0.87s)
    === RUN   TestAll/kubernetes.state_resourcequota
    --- PASS: TestAll/kubernetes.state_resourcequota (3.50s)
    === RUN   TestAll/kubernetes.state_resourcequota/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/docs.plain (0.85s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.10.0.plain (0.97s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.8.2.plain (0.89s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.9.2.plain (0.79s)
    === RUN   TestAll/kubernetes.state_service
    --- PASS: TestAll/kubernetes.state_service (3.62s)
    === RUN   TestAll/kubernetes.state_service/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/docs.plain (0.84s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.10.0.plain (0.87s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.8.2.plain (0.96s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.9.2.plain (0.95s)
    === RUN   TestAll/kubernetes.state_statefulset
    --- PASS: TestAll/kubernetes.state_statefulset (3.51s)
    === RUN   TestAll/kubernetes.state_statefulset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/docs.plain (0.83s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.10.0.plain (0.86s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.8.2.plain (0.79s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.9.2.plain (1.02s)
    === RUN   TestAll/kubernetes.state_storageclass
    --- PASS: TestAll/kubernetes.state_storageclass (3.47s)
    === RUN   TestAll/kubernetes.state_storageclass/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/docs.plain (0.87s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.10.0.plain (0.89s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.8.2.plain (0.79s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.9.2.plain (0.91s)
    === RUN   TestAll/openmetrics.collector
    === RUN   TestAll/openmetrics.collector/docs.plain
        testdata.go:238: Testing ../../../module/openmetrics/collector/_meta/testdata/docs.plain file
     
    

Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll/openmetrics.collector
     
    

Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector/docs.plain – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll/openmetrics.collector/docs.plain
        testdata.go:238: Testing ../../../module/openmetrics/collector/_meta/testdata/docs.plain file
     
    

Build&Test / metricbeat-unitTest / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta/testdata/docs.plain file
     
    

Build&Test / metricbeat-unitTest / TestData/docs.plain – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta/testdata/docs.plain file
     
    

Build&Test / metricbeat-windows-2016-windows-2016 / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics
    === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 18 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000240680, {0x1992be8?, 0x12114f3?}, 0x19edc88)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1f40320?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000240680, 0xc0002dfc80)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc0002199a0?, {0x1f2b2e0, 0x2, 0x2}, {0x20?, 0x100c0002e0638?, 0x1f3f8a0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc0002199a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000240820, {0x1993928?, 0x198ad6d?}, 0xc0002383c0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc000240820, 0x19edc88)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc00021d380)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0000b6800?, 0xc0000d9b80?, 0x1f3f8a0?}, {0x199f4b1, 0x1c}, {0x0?, 0xc000083c78?, 0x1f3f8a0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc000238240)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x1eef540?, 0xc0002ec090, {0x1aaa9d0, 0xc0002ec3c0})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc000240b60, 0xc0002383c0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-windows-2016-windows-2016 / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 18 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000240680, {0x1992be8?, 0x12114f3?}, 0x19edc88)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1f40320?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000240680, 0xc0002dfc80)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc0002199a0?, {0x1f2b2e0, 0x2, 0x2}, {0x20?, 0x100c0002e0638?, 0x1f3f8a0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc0002199a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000240820, {0x1993928?, 0x198ad6d?}, 0xc0002383c0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc000240820, 0x19edc88)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc00021d380)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0000b6800?, 0xc0000d9b80?, 0x1f3f8a0?}, {0x199f4b1, 0x1c}, {0x0?, 0xc000083c78?, 0x1f3f8a0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc000238240)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x1eef540?, 0xc0002ec090, {0x1aaa9d0, 0xc0002ec3c0})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc000240b60, 0xc0002383c0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-windows-2016-windows-2016 / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta\testdata\docs.plain file
    	github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector	coverage: 13.1% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestData (10m0s)
    	TestData/docs.plain (10m0s)
    
    goroutine 66 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001cbba0, {0xb9c203?, 0x361533?}, 0xbffdd8)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x11c2940?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc0001cbba0, 0xc00035fc80)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc0002d79a0?, {0x11b18c0, 0x4, 0x4}, {0x0?, 0x100c00039c598?, 0x11c1da0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc0002d79a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:84 +0x1c5
    
    goroutine 19 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001cbd40, {0xc0001d2f6f?, 0x0?}, 0xc00039e480)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc0001cbd40, {0xb9f257, 0xb}, {0xb9d2bb, 0x9}, {{0xba1560, 0xe}, {0xba1560, 0xe}, {0xb98d83, ...}, ...}, ...)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFiles(0xc0001cbd40, {0xb9f257, 0xb}, {0xb9d2bb, 0x9})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:157 +0xf2
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.TestData(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector_test.go:41 +0x31
    testing.tRunner(0xc0001cbd40, 0xbffdd8)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 20 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0000501a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0000a0000?, 0xc00007e080?, 0x11c1da0?}, {0xbaf1ae, 0x1c}, {0x0?, 0x1?, 0x11c1da0?})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc00037c858)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc0003bc900, {0xccb790, 0xc0003b3b30})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0xe5
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x22f48117668, 0xc0003bc900})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc0003a21a0, {0xc0001d2f60, 0x19}, {0xb9f257, 0xb}, {0xb9d2bb, 0x9}, {{0xba1560, 0xe}, {0xba1560, ...}, ...})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc0003a21a0, 0xc00039e480)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 21 [IO wait, 9 minutes]:
    internal/poll.runtime_pollWait(0x22f48115898, 0x72)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0x0?, 0x0?, 0x0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.execIO(0xc0003ac518, 0xc000081c00)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:175 +0xf7
    internal/poll.(*FD).acceptOne(0xc0003ac500, 0x1e8, {0xc0003ca0f0?, 0xc00007ac00?, 0xc01d08?}, 0xc000081d10?)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:936 +0x6d
    internal/poll.(*FD).Accept(0xc0003ac500, 0xc000081dd8)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:970 +0x1d6
    net.(*netFD).accept(0xc0003ac500)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/fd_windows.go:139 +0x65
    net.(*TCPListener).accept(0xc00037c2a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc00037c2a0)
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0002d41e0, {0xcce3d0, 0xc00037c2a0})
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	C:/Users/jenkins/workspace/PR-37383-4-3d16a2a5-2fa4-4201-9ed2-bc904438bc70/.gvm/versions/go1.20.11.windows.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Steps errors 4

Expand to view the steps failures

metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 15 min 7 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 12 min 34 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 12 min 33 sec . View more details here
  • Description: mage build unitTest
Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error 'org.jenkinsci.plugins.workflow.steps.FlowInterruptedException'

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

@elasticmachine
Copy link
Collaborator

💔 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-12-12T11:07:50.923+0000

  • Duration: 62 min 44 sec

Test stats 🧪

Test Results
Failed 15
Passed 4872
Skipped 397
Total 5284

Test errors 15

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / metricbeat-unitTest / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics
    === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 29 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000324340, {0x10ccf8a?, 0x8e8805?}, 0x112b908)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1760480?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000324340, 0xc0002efc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00026f400?, {0x16fca40, 0x2, 0x2}, {0xc00025c968?, 0x100c0002efd08?, 0x175f820?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00026f400)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 19 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0003244e0, {0x10cdbb0?, 0x10c4df5?}, 0xc000326228)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0xc0003244e0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc0003244e0, 0x112b908)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 20 [runnable]:
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc000360000?, 0xc00015fb80?, 0x175f820?}, {0x10d9470, 0x1c}, {0xc000074478?, 0x7c3fc9?, 0x175f820?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:498 +0x2a5
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0003260a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x171fd40?, 0xc000323950, {0x11f9598, 0xc000323c80})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0xc0003244e0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc000324820, 0xc000326228)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-unitTest / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 29 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000324340, {0x10ccf8a?, 0x8e8805?}, 0x112b908)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1760480?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000324340, 0xc0002efc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00026f400?, {0x16fca40, 0x2, 0x2}, {0xc00025c968?, 0x100c0002efd08?, 0x175f820?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00026f400)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 19 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0003244e0, {0x10cdbb0?, 0x10c4df5?}, 0xc000326228)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0xc0003244e0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc0003244e0, 0x112b908)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 20 [runnable]:
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc000360000?, 0xc00015fb80?, 0x175f820?}, {0x10d9470, 0x1c}, {0xc000074478?, 0x7c3fc9?, 0x175f820?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:498 +0x2a5
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0003260a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x171fd40?, 0xc000323950, {0x11f9598, 0xc000323c80})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0xc0003244e0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc000324820, 0xc000326228)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-unitTest / TestAll – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll
    === RUN   TestAll/apache.status
    --- PASS: TestAll/apache.status (0.72s)
    === RUN   TestAll/apache.status/docs.plain
        testdata.go:238: Testing ../../../module/apache/status/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/apache/status/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/apache.status/docs.plain (0.72s)
    === RUN   TestAll/ceph.mgr_cluster_disk
    --- PASS: TestAll/ceph.mgr_cluster_disk (1.69s)
    === RUN   TestAll/ceph.mgr_cluster_disk/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_cluster_disk/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_cluster_disk/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_cluster_disk/failed.json (0.92s)
    === RUN   TestAll/ceph.mgr_cluster_disk/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_cluster_disk/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_cluster_disk/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_cluster_disk/sample.json (0.77s)
    === RUN   TestAll/ceph.mgr_osd_perf
    --- PASS: TestAll/ceph.mgr_osd_perf (1.64s)
    === RUN   TestAll/ceph.mgr_osd_perf/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_perf/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_perf/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_perf/failed.json (0.82s)
    === RUN   TestAll/ceph.mgr_osd_perf/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_perf/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_perf/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_perf/sample.json (0.82s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats
    --- PASS: TestAll/ceph.mgr_osd_pool_stats (1.58s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_pool_stats/failed.json (0.72s)
    === RUN   TestAll/ceph.mgr_osd_pool_stats/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_pool_stats/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_pool_stats/sample.json (0.86s)
    === RUN   TestAll/ceph.mgr_osd_tree
    --- PASS: TestAll/ceph.mgr_osd_tree (1.70s)
    === RUN   TestAll/ceph.mgr_osd_tree/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_tree/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_tree/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_tree/failed.json (0.83s)
    === RUN   TestAll/ceph.mgr_osd_tree/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_osd_tree/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_osd_tree/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_osd_tree/sample.json (0.87s)
    === RUN   TestAll/ceph.mgr_pool_disk
    --- PASS: TestAll/ceph.mgr_pool_disk (1.35s)
    === RUN   TestAll/ceph.mgr_pool_disk/failed.json
        testdata.go:238: Testing ../../../module/ceph/mgr_pool_disk/_meta/testdata/failed.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_pool_disk/_meta/testdata/failed.json-expected.json file
    --- PASS: TestAll/ceph.mgr_pool_disk/failed.json (0.73s)
    === RUN   TestAll/ceph.mgr_pool_disk/sample.json
        testdata.go:238: Testing ../../../module/ceph/mgr_pool_disk/_meta/testdata/sample.json file
        testdata.go:307: Expected ../../../module/ceph/mgr_pool_disk/_meta/testdata/sample.json-expected.json file
    --- PASS: TestAll/ceph.mgr_pool_disk/sample.json (0.62s)
    === RUN   TestAll/ceph.monitor_health
    --- PASS: TestAll/ceph.monitor_health (0.72s)
    === RUN   TestAll/ceph.monitor_health/docs.json
        testdata.go:238: Testing ../../../module/ceph/monitor_health/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/ceph/monitor_health/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/ceph.monitor_health/docs.json (0.72s)
    === RUN   TestAll/couchbase.cluster
    --- PASS: TestAll/couchbase.cluster (1.27s)
    === RUN   TestAll/couchbase.cluster/4.5.1.json
        testdata.go:238: Testing ../../../module/couchbase/cluster/_meta/testdata/4.5.1.json file
        testdata.go:307: Expected ../../../module/couchbase/cluster/_meta/testdata/4.5.1.json-expected.json file
    --- PASS: TestAll/couchbase.cluster/4.5.1.json (0.68s)
    === RUN   TestAll/couchbase.cluster/docs.json
        testdata.go:238: Testing ../../../module/couchbase/cluster/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/couchbase/cluster/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/couchbase.cluster/docs.json (0.59s)
    === RUN   TestAll/couchbase.node
    --- PASS: TestAll/couchbase.node (1.11s)
    === RUN   TestAll/couchbase.node/4.5.1.json
        testdata.go:238: Testing ../../../module/couchbase/node/_meta/testdata/4.5.1.json file
        testdata.go:307: Expected ../../../module/couchbase/node/_meta/testdata/4.5.1.json-expected.json file
    --- PASS: TestAll/couchbase.node/4.5.1.json (0.58s)
    === RUN   TestAll/couchbase.node/docs.json
        testdata.go:238: Testing ../../../module/couchbase/node/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/couchbase/node/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/couchbase.node/docs.json (0.54s)
    === RUN   TestAll/dropwizard.collector
    --- PASS: TestAll/dropwizard.collector (0.56s)
    === RUN   TestAll/dropwizard.collector/docs.json
        testdata.go:238: Testing ../../../module/dropwizard/collector/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/dropwizard/collector/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/dropwizard.collector/docs.json (0.56s)
    === RUN   TestAll/etcd.metrics
    --- PASS: TestAll/etcd.metrics (0.49s)
    === RUN   TestAll/etcd.metrics/metrics.plain
        testdata.go:238: Testing ../../../module/etcd/metrics/_meta/testdata/metrics.plain file
        testdata.go:307: Expected ../../../module/etcd/metrics/_meta/testdata/metrics.plain-expected.json file
    --- PASS: TestAll/etcd.metrics/metrics.plain (0.49s)
    === RUN   TestAll/http.json
    --- PASS: TestAll/http.json (0.72s)
    === RUN   TestAll/http.json/docs.json
        testdata.go:238: Testing ../../../module/http/json/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/http/json/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/http.json/docs.json (0.72s)
    === RUN   TestAll/kibana.status
    --- PASS: TestAll/kibana.status (1.38s)
    === RUN   TestAll/kibana.status/7.0.0.json
        testdata.go:238: Testing ../../../module/kibana/status/_meta/testdata/7.0.0.json file
        testdata.go:307: Expected ../../../module/kibana/status/_meta/testdata/7.0.0.json-expected.json file
    --- PASS: TestAll/kibana.status/7.0.0.json (0.74s)
    === RUN   TestAll/kibana.status/docs.json
        testdata.go:238: Testing ../../../module/kibana/status/_meta/testdata/docs.json file
        testdata.go:307: Expected ../../../module/kibana/status/_meta/testdata/docs.json-expected.json file
    --- PASS: TestAll/kibana.status/docs.json (0.64s)
    === RUN   TestAll/kubernetes.apiserver
    --- PASS: TestAll/kubernetes.apiserver (2.09s)
    === RUN   TestAll/kubernetes.apiserver/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/apiserver/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/apiserver/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.apiserver/docs.plain (2.08s)
    === RUN   TestAll/kubernetes.controllermanager
    --- PASS: TestAll/kubernetes.controllermanager (0.93s)
    === RUN   TestAll/kubernetes.controllermanager/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/controllermanager/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/controllermanager/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.controllermanager/docs.plain (0.93s)
    === RUN   TestAll/kubernetes.proxy
    --- PASS: TestAll/kubernetes.proxy (0.94s)
    === RUN   TestAll/kubernetes.proxy/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/proxy/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/proxy/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.proxy/docs.plain (0.93s)
    === RUN   TestAll/kubernetes.scheduler
    --- PASS: TestAll/kubernetes.scheduler (0.97s)
    === RUN   TestAll/kubernetes.scheduler/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/scheduler/_meta/testdata/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/scheduler/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.scheduler/docs.plain (0.97s)
    === RUN   TestAll/kubernetes.state_container
    --- PASS: TestAll/kubernetes.state_container (3.12s)
    === RUN   TestAll/kubernetes.state_container/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/docs.plain (0.72s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.10.0.plain (0.77s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.8.2.plain (0.91s)
    === RUN   TestAll/kubernetes.state_container/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_container/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_container/ksm.v2.9.2.plain (0.71s)
    === RUN   TestAll/kubernetes.state_cronjob
    --- PASS: TestAll/kubernetes.state_cronjob (2.37s)
    === RUN   TestAll/kubernetes.state_cronjob/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/docs.plain (0.56s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.10.0.plain (0.58s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.8.2.plain (0.57s)
    === RUN   TestAll/kubernetes.state_cronjob/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_cronjob/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_cronjob/ksm.v2.9.2.plain (0.64s)
    === RUN   TestAll/kubernetes.state_daemonset
    --- PASS: TestAll/kubernetes.state_daemonset (3.00s)
    === RUN   TestAll/kubernetes.state_daemonset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/docs.plain (0.78s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.10.0.plain (0.83s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.8.2.plain (0.71s)
    === RUN   TestAll/kubernetes.state_daemonset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_daemonset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_daemonset/ksm.v2.9.2.plain (0.68s)
    === RUN   TestAll/kubernetes.state_deployment
    --- PASS: TestAll/kubernetes.state_deployment (2.71s)
    === RUN   TestAll/kubernetes.state_deployment/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/docs.plain (0.65s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.10.0.plain (0.54s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.8.2.plain (0.72s)
    === RUN   TestAll/kubernetes.state_deployment/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_deployment/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_deployment/ksm.v2.9.2.plain (0.79s)
    === RUN   TestAll/kubernetes.state_job
    --- PASS: TestAll/kubernetes.state_job (3.42s)
    === RUN   TestAll/kubernetes.state_job/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/docs.plain (0.72s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.10.0.plain (0.97s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.8.2.plain (0.85s)
    === RUN   TestAll/kubernetes.state_job/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_job/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_job/ksm.v2.9.2.plain (0.88s)
    === RUN   TestAll/kubernetes.state_namespace
    --- PASS: TestAll/kubernetes.state_namespace (3.48s)
    === RUN   TestAll/kubernetes.state_namespace/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/docs.plain (1.06s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.10.0.plain (0.89s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.8.2.plain (0.72s)
    === RUN   TestAll/kubernetes.state_namespace/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_namespace/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_namespace/ksm.v2.9.2.plain (0.81s)
    === RUN   TestAll/kubernetes.state_node
    --- PASS: TestAll/kubernetes.state_node (3.47s)
    === RUN   TestAll/kubernetes.state_node/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/docs.plain (0.86s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.10.0.plain (0.83s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.8.2.plain (0.77s)
    === RUN   TestAll/kubernetes.state_node/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_node/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_node/ksm.v2.9.2.plain (1.02s)
    === RUN   TestAll/kubernetes.state_persistentvolume
    --- PASS: TestAll/kubernetes.state_persistentvolume (3.39s)
    === RUN   TestAll/kubernetes.state_persistentvolume/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/docs.plain (0.87s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.10.0.plain (0.83s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.8.2.plain (0.83s)
    === RUN   TestAll/kubernetes.state_persistentvolume/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolume/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolume/ksm.v2.9.2.plain (0.86s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim (3.36s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/docs.plain (0.81s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.10.0.plain (0.81s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.8.2.plain (0.81s)
    === RUN   TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_persistentvolumeclaim/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_persistentvolumeclaim/ksm.v2.9.2.plain (0.92s)
    === RUN   TestAll/kubernetes.state_pod
    --- PASS: TestAll/kubernetes.state_pod (3.54s)
    === RUN   TestAll/kubernetes.state_pod/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/docs.plain (0.87s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.10.0.plain (1.02s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.8.2.plain (0.84s)
    === RUN   TestAll/kubernetes.state_pod/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_pod/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_pod/ksm.v2.9.2.plain (0.79s)
    === RUN   TestAll/kubernetes.state_replicaset
    --- PASS: TestAll/kubernetes.state_replicaset (3.62s)
    === RUN   TestAll/kubernetes.state_replicaset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/docs.plain (0.97s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.10.0.plain (0.91s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.8.2.plain (0.90s)
    === RUN   TestAll/kubernetes.state_replicaset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_replicaset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_replicaset/ksm.v2.9.2.plain (0.84s)
    === RUN   TestAll/kubernetes.state_resourcequota
    --- PASS: TestAll/kubernetes.state_resourcequota (3.45s)
    === RUN   TestAll/kubernetes.state_resourcequota/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/docs.plain (0.80s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.10.0.plain (0.93s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.8.2.plain (0.91s)
    === RUN   TestAll/kubernetes.state_resourcequota/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_resourcequota/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_resourcequota/ksm.v2.9.2.plain (0.80s)
    === RUN   TestAll/kubernetes.state_service
    --- PASS: TestAll/kubernetes.state_service (3.06s)
    === RUN   TestAll/kubernetes.state_service/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/docs.plain (0.80s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.10.0.plain (0.82s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.8.2.plain (0.74s)
    === RUN   TestAll/kubernetes.state_service/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_service/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_service/ksm.v2.9.2.plain (0.70s)
    === RUN   TestAll/kubernetes.state_statefulset
    --- PASS: TestAll/kubernetes.state_statefulset (2.48s)
    === RUN   TestAll/kubernetes.state_statefulset/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/docs.plain (0.57s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.10.0.plain (0.69s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.8.2.plain (0.60s)
    === RUN   TestAll/kubernetes.state_statefulset/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_statefulset/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_statefulset/ksm.v2.9.2.plain (0.62s)
    === RUN   TestAll/kubernetes.state_storageclass
    --- PASS: TestAll/kubernetes.state_storageclass (2.80s)
    === RUN   TestAll/kubernetes.state_storageclass/docs.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/docs.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/docs.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/docs.plain (0.56s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.10.0.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.10.0.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.10.0.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.10.0.plain (0.54s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.8.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.8.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.8.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.8.2.plain (0.74s)
    === RUN   TestAll/kubernetes.state_storageclass/ksm.v2.9.2.plain
        testdata.go:238: Testing ../../../module/kubernetes/_meta/test/KSM/ksm.v2.9.2.plain file
        testdata.go:307: Expected ../../../module/kubernetes/state_storageclass/_meta/testdata/ksm.v2.9.2.plain-expected.json file
    --- PASS: TestAll/kubernetes.state_storageclass/ksm.v2.9.2.plain (0.96s)
    === RUN   TestAll/openmetrics.collector
    === RUN   TestAll/openmetrics.collector/docs.plain
        testdata.go:238: Testing ../../../module/openmetrics/collector/_meta/testdata/docs.plain file
    coverage: [no statements]
    panic: test timed out after 10m0s
    running tests:
    	TestAll (10m0s)
    	TestAll/openmetrics.collector (8m53s)
    	TestAll/openmetrics.collector/docs.plain (8m53s)
    
    goroutine 1472 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 10 minutes]:
    testing.(*T).Run(0xc000186d00, {0x3a7751a?, 0x14ff4e5?}, 0x3c03310)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x5684500?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000186d00, 0xc00071fc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00042a0a0?, {0x55b9d90, 0x1, 0x1}, {0xd0?, 0x1000005684500?, 0x5682ea0?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00042a0a0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:78 +0x1c5
    
    goroutine 7 [chan receive]:
    k8s.io/klog/v2.(*loggingT).flushDaemon(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/k8s.io/klog/[email protected]/klog.go:1181 +0x6a
    created by k8s.io/klog/v2.init.0
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/k8s.io/klog/[email protected]/klog.go:420 +0xf6
    
    goroutine 12 [chan receive, 8 minutes]:
    testing.(*T).Run(0xc000186ea0, {0xc004361dd0?, 0xc0000a2f40?}, 0xc0011a92c0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing/data.TestAll(0xa?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/data/data_test.go:44 +0x95
    testing.tRunner(0xc000186ea0, 0x3c03310)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1483 [chan receive, 8 minutes]:
    testing.(*T).Run(0xc002848680, {0xc0022c21f5?, 0x0?}, 0xc00435fb80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc002848680, {0xc000723ad0, 0xb}, {0xc000723adc, 0x9}, {{0x3a88c2c, 0xe}, {0x3a88c2c, 0xe}, {0x3a73d04, ...}, ...}, ...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x656
    github.com/elastic/beats/v7/metricbeat/mb/testing/data.TestAll.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/data/data_test.go:51 +0x10d
    testing.tRunner(0xc002848680, 0xc0011a92c0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1484 [runnable]:
    github.com/pkg/errors.callers()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0001e5d40)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc00066a000?, 0xc003b06720?, 0x5682ea0?}, {0x3abf75a, 0x1c}, {0x0?, 0x1?, 0x5682ea0?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0040c49a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc004ddac00, {0x3fefd38, 0xc0011ed950})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0x8b
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x7f09893ae420, 0xc004ddac00})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc002848d00, {0xc0022c21c0, 0x3f}, {0xc000723ad0, 0xb}, {0xc000723adc, 0x9}, {{0xc0022c20c0, 0x34}, {0xc0022c2080, ...}, ...})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc002848d00, 0xc00435fb80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1485 [IO wait, 8 minutes]:
    internal/poll.runtime_pollWait(0x7f09a52b91b8, 0x72)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0xc00459ed80?, 0x4?, 0x0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.(*pollDesc).waitRead(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:89
    internal/poll.(*FD).Accept(0xc00459ed80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_unix.go:614 +0x2bd
    net.(*netFD).accept(0xc00459ed80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/fd_unix.go:172 +0x35
    net.(*TCPListener).accept(0xc0040c4540)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc0040c4540)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0041245a0, {0x4004ef0, 0xc0040c4540})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll/openmetrics.collector
     
    

Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector/docs.plain – github.com/elastic/beats/v7/metricbeat/mb/testing/data
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestAll/openmetrics.collector/docs.plain
        testdata.go:238: Testing ../../../module/openmetrics/collector/_meta/testdata/docs.plain file
    coverage: [no statements]
    panic: test timed out after 10m0s
    running tests:
    	TestAll (10m0s)
    	TestAll/openmetrics.collector (8m53s)
    	TestAll/openmetrics.collector/docs.plain (8m53s)
    
    goroutine 1472 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 10 minutes]:
    testing.(*T).Run(0xc000186d00, {0x3a7751a?, 0x14ff4e5?}, 0x3c03310)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x5684500?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000186d00, 0xc00071fc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00042a0a0?, {0x55b9d90, 0x1, 0x1}, {0xd0?, 0x1000005684500?, 0x5682ea0?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00042a0a0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:78 +0x1c5
    
    goroutine 7 [chan receive]:
    k8s.io/klog/v2.(*loggingT).flushDaemon(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/k8s.io/klog/[email protected]/klog.go:1181 +0x6a
    created by k8s.io/klog/v2.init.0
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/k8s.io/klog/[email protected]/klog.go:420 +0xf6
    
    goroutine 12 [chan receive, 8 minutes]:
    testing.(*T).Run(0xc000186ea0, {0xc004361dd0?, 0xc0000a2f40?}, 0xc0011a92c0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing/data.TestAll(0xa?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/data/data_test.go:44 +0x95
    testing.tRunner(0xc000186ea0, 0x3c03310)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1483 [chan receive, 8 minutes]:
    testing.(*T).Run(0xc002848680, {0xc0022c21f5?, 0x0?}, 0xc00435fb80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc002848680, {0xc000723ad0, 0xb}, {0xc000723adc, 0x9}, {{0x3a88c2c, 0xe}, {0x3a88c2c, 0xe}, {0x3a73d04, ...}, ...}, ...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x656
    github.com/elastic/beats/v7/metricbeat/mb/testing/data.TestAll.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/data/data_test.go:51 +0x10d
    testing.tRunner(0xc002848680, 0xc0011a92c0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1484 [runnable]:
    github.com/pkg/errors.callers()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0001e5d40)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc00066a000?, 0xc003b06720?, 0x5682ea0?}, {0x3abf75a, 0x1c}, {0x0?, 0x1?, 0x5682ea0?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0040c49a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc004ddac00, {0x3fefd38, 0xc0011ed950})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0x8b
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x7f09893ae420, 0xc004ddac00})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc002848d00, {0xc0022c21c0, 0x3f}, {0xc000723ad0, 0xb}, {0xc000723adc, 0x9}, {{0xc0022c20c0, 0x34}, {0xc0022c2080, ...}, ...})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc002848d00, 0xc00435fb80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 1485 [IO wait, 8 minutes]:
    internal/poll.runtime_pollWait(0x7f09a52b91b8, 0x72)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0xc00459ed80?, 0x4?, 0x0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.(*pollDesc).waitRead(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:89
    internal/poll.(*FD).Accept(0xc00459ed80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_unix.go:614 +0x2bd
    net.(*netFD).accept(0xc00459ed80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/fd_unix.go:172 +0x35
    net.(*TCPListener).accept(0xc0040c4540)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc0040c4540)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0041245a0, {0x4004ef0, 0xc0040c4540})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Build&Test / metricbeat-unitTest / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta/testdata/docs.plain file
    	github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector	coverage: 13.1% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestData (10m0s)
    	TestData/docs.plain (10m0s)
    
    goroutine 27 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0000e3d40, {0x11532f6?, 0x908ee5?}, 0x11b83a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1829560?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc0000e3d40, 0xc00026fc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc0001d34a0?, {0x17c9740, 0x4, 0x4}, {0xc00012d048?, 0x100c00026fd08?, 0x1828900?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc0001d34a0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:84 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000290000, {0xc00003f40f?, 0x0?}, 0xc0001eee80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc000290000, {0x1156572, 0xb}, {0x115444e, 0x9}, {{0x115860f, 0xe}, {0x115860f, 0xe}, {0x114f9de, ...}, ...}, ...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x656
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFiles(0xc000290000, {0x1156572, 0xb}, {0x115444e, 0x9})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:157 +0xf2
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.TestData(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector_test.go:41 +0x31
    testing.tRunner(0xc000290000, 0x11b83a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0002b24e0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc000346000?, 0xc000318060?, 0x1828900?}, {0x1165b17, 0x1c}, {0x0?, 0x1?, 0x1828900?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc00028c6d8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc000002c00, {0x128d738, 0xc0002b5470})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0xe5
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x7fa7e6ca0fe8, 0xc000002c00})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc000290340, {0xc00003f400, 0x19}, {0x1156572, 0xb}, {0x115444e, 0x9}, {{0x115860f, 0xe}, {0x115860f, ...}, ...})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc000290340, 0xc0001eee80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 8 [IO wait, 9 minutes]:
    internal/poll.runtime_pollWait(0x7fa7e6c85cd8, 0x72)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0xc0001d5080?, 0x16?, 0x0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.(*pollDesc).waitRead(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:89
    internal/poll.(*FD).Accept(0xc0001d5080)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_unix.go:614 +0x2bd
    net.(*netFD).accept(0xc0001d5080)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/fd_unix.go:172 +0x35
    net.(*TCPListener).accept(0xc00028c168)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc00028c168)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0001c21e0, {0x1290ca0, 0xc00028c168})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Build&Test / metricbeat-unitTest / TestData/docs.plain – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta/testdata/docs.plain file
    	github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector	coverage: 13.1% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestData (10m0s)
    	TestData/docs.plain (10m0s)
    
    goroutine 27 [running]:
    testing.(*M).startAlarm.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0000e3d40, {0x11532f6?, 0x908ee5?}, 0x11b83a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x1829560?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc0000e3d40, 0xc00026fc80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc0001d34a0?, {0x17c9740, 0x4, 0x4}, {0xc00012d048?, 0x100c00026fd08?, 0x1828900?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc0001d34a0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:84 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000290000, {0xc00003f40f?, 0x0?}, 0xc0001eee80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc000290000, {0x1156572, 0xb}, {0x115444e, 0x9}, {{0x115860f, 0xe}, {0x115860f, 0xe}, {0x114f9de, ...}, ...}, ...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x656
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFiles(0xc000290000, {0x1156572, 0xb}, {0x115444e, 0x9})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:157 +0xf2
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.TestData(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector_test.go:41 +0x31
    testing.tRunner(0xc000290000, 0x11b83a8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0002b24e0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc000346000?, 0xc000318060?, 0x1828900?}, {0x1165b17, 0x1c}, {0x0?, 0x1?, 0x1828900?})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc00028c6d8)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc000002c00, {0x128d738, 0xc0002b5470})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0xe5
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x7fa7e6ca0fe8, 0xc000002c00})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc000290340, {0xc00003f400, 0x19}, {0x1156572, 0xb}, {0x115444e, 0x9}, {{0x115860f, 0xe}, {0x115860f, ...}, ...})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc000290340, 0xc0001eee80)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 8 [IO wait, 9 minutes]:
    internal/poll.runtime_pollWait(0x7fa7e6c85cd8, 0x72)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0xc0001d5080?, 0x16?, 0x0)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.(*pollDesc).waitRead(...)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_poll_runtime.go:89
    internal/poll.(*FD).Accept(0xc0001d5080)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/internal/poll/fd_unix.go:614 +0x2bd
    net.(*netFD).accept(0xc0001d5080)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/fd_unix.go:172 +0x35
    net.(*TCPListener).accept(0xc00028c168)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc00028c168)
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0001c21e0, {0x1290ca0, 0xc00028c168})
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	/var/lib/jenkins/workspace/PR-37383-5-b0c030cd-64a1-42a5-a741-9134b784ef61/.gvm/versions/go1.20.11.linux.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Build&Test / metricbeat-windows-2022-windows-2022 / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics
    === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 18 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001b2b60, {0x1042be8?, 0x8c14f3?}, 0x109dc88)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x15f0320?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc0001b2b60, 0xc00025fc80)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00019b9a0?, {0x15db2e0, 0x2, 0x2}, {0x0?, 0x100c0001992e8?, 0x15ef8a0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00019b9a0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001b2d00, {0x1043928?, 0x103ad6d?}, 0xc0001bc3c0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc0001b2d00, 0x109dc88)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc000199520)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0000b6800?, 0xc0000d9b80?, 0x15ef8a0?}, {0x104f4b1, 0x1c}, {0x0?, 0xc000083c78?, 0x15ef8a0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0001bc240)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x159f540?, 0xc00026e090, {0x115a9d0, 0xc00026e3c0})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc0001b3040, 0xc0001bc3c0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-windows-2022-windows-2022 / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestOpenMetrics/Simple_field_map
    	github.com/elastic/beats/v7/metricbeat/helper/openmetrics	coverage: 10.8% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestOpenMetrics (10m0s)
    	TestOpenMetrics/Simple_field_map (10m0s)
    
    goroutine 18 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001b2b60, {0x1042be8?, 0x8c14f3?}, 0x109dc88)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x15f0320?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc0001b2b60, 0xc00025fc80)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc00019b9a0?, {0x15db2e0, 0x2, 0x2}, {0x0?, 0x100c0001992e8?, 0x15ef8a0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc00019b9a0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:80 +0x1c5
    
    goroutine 6 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc0001b2d00, {0x1043928?, 0x103ad6d?}, 0xc0001bc3c0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:573 +0x4831
    testing.tRunner(0xc0001b2d00, 0x109dc88)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 7 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc000199520)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0000b6800?, 0xc0000d9b80?, 0x15ef8a0?}, {0x104f4b1, 0x1c}, {0x0?, 0xc000083c78?, 0x15ef8a0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0001bc240)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x71b
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetProcessedMetrics(0x0?, 0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:250 +0x65
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).ReportProcessedMetrics(0x159f540?, 0xc00026e090, {0x115a9d0, 0xc00026e3c0})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:264 +0x7e
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.TestOpenMetrics.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics_test.go:575 +0x76
    testing.tRunner(0xc0001b3040, 0xc0001bc3c0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
     
    

Build&Test / metricbeat-windows-2022-windows-2022 / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
    Expand to view the error details

     Failed 
    

    Expand to view the stacktrace

     === RUN   TestData
    === RUN   TestData/docs.plain
        testdata.go:238: Testing _meta\testdata\docs.plain file
    	github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector	coverage: 13.1% of statements
    panic: test timed out after 10m0s
    running tests:
    	TestData (10m0s)
    	TestData/docs.plain (10m0s)
    
    goroutine 66 [running]:
    testing.(*M).startAlarm.func1()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2241 +0x3c5
    created by time.goFunc
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/time/sleep.go:176 +0x32
    
    goroutine 1 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000105ba0, {0x13ac203?, 0xb71533?}, 0x140fdd8)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    testing.runTests.func1(0x19d2940?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2036 +0x45
    testing.tRunner(0xc000105ba0, 0xc0002dfc80)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    testing.runTests(0xc000259a40?, {0x19c18c0, 0x4, 0x4}, {0xc0003192b0?, 0x100c0002dfd08?, 0x19d1da0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:2034 +0x489
    testing.(*M).Run(0xc000259a40)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1906 +0x63a
    main.main()
    	_testmain.go:84 +0x1c5
    
    goroutine 19 [chan receive, 9 minutes]:
    testing.(*T).Run(0xc000105d40, {0xc000154f6f?, 0x0?}, 0xc00031e480)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1630 +0x405
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig(0xc000105d40, {0x13af257, 0xb}, {0x13ad2bb, 0x9}, {{0x13b1560, 0xe}, {0x13b1560, 0xe}, {0x13a8d83, ...}, ...}, ...)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:197 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFiles(0xc000105d40, {0x13af257, 0xb}, {0x13ad2bb, 0x9})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:157 +0xf2
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.TestData(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector_test.go:41 +0x31
    testing.tRunner(0xc000105d40, 0x140fdd8)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 20 [runnable]:
    github.com/pkg/errors.callers()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/stack.go:167 +0x56
    github.com/pkg/errors.New(...)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/pkg/[email protected]/errors.go:105
    github.com/prometheus/prometheus/pkg/textparse.(*OpenMetricsParser).Next(0xc0003961a0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/pkg/mod/github.com/prometheus/[email protected]/pkg/textparse/openmetricsparse.go:242 +0x9eb
    github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies({0xc0003c4000?, 0xc0003820e0?, 0x19d1da0?}, {0x13bf1ae, 0x1c}, {0x0?, 0x1?, 0x19d1da0?})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/prometheus/textparse.go:500 +0x2c3
    github.com/elastic/beats/v7/metricbeat/helper/openmetrics.(*openmetrics).GetFamilies(0xc0002f6870)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/helper/openmetrics/openmetrics.go:110 +0x60d
    github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector.(*MetricSet).Fetch(0xc00033e900, {0x14db790, 0xc000333b30})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/module/openmetrics/collector/collector.go:139 +0xe5
    github.com/elastic/beats/v7/metricbeat/mb/testing.ReportingFetchV2Error({0x27bd74776e8, 0xc00033e900})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/mb/testing/modules.go:237 +0x53
    github.com/elastic/beats/v7/metricbeat/mb/testing.runTest(0xc0003221a0, {0xc000154f60, 0x19}, {0x13af257, 0xb}, {0x13ad2bb, 0x9}, {{0x13b1560, 0xe}, {0x13b1560, ...}, ...})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:256 +0x665
    github.com/elastic/beats/v7/metricbeat/mb/testing.TestDataFilesWithConfig.func1(0x0?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/src/github.com/elastic/beats/metricbeat/mb/testing/testdata.go:198 +0x7e
    testing.tRunner(0xc0003221a0, 0xc00031e480)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1576 +0x10b
    created by testing.(*T).Run
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/testing/testing.go:1629 +0x3ea
    
    goroutine 21 [IO wait, 9 minutes]:
    internal/poll.runtime_pollWait(0x27bd7475930, 0x72)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/runtime/netpoll.go:306 +0x89
    internal/poll.(*pollDesc).wait(0x0?, 0x0?, 0x0)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_poll_runtime.go:84 +0x32
    internal/poll.execIO(0xc00032c518, 0xc000081c00)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:175 +0xf7
    internal/poll.(*FD).acceptOne(0xc00032c500, 0x1f8, {0xc0003aa000?, 0xc00007ac00?, 0x1411d08?}, 0x81d10?)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:936 +0x6d
    internal/poll.(*FD).Accept(0xc00032c500, 0xc000081dd8)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/internal/poll/fd_windows.go:970 +0x1d6
    net.(*netFD).accept(0xc00032c500)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/fd_windows.go:139 +0x65
    net.(*TCPListener).accept(0xc0002f62b8)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/tcpsock_posix.go:148 +0x25
    net.(*TCPListener).Accept(0xc0002f62b8)
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/tcpsock.go:297 +0x3d
    net/http.(*Server).Serve(0xc0002541e0, {0x14de3d0, 0xc0002f62b8})
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/http/server.go:3059 +0x385
    net/http/httptest.(*Server).goServe.func1()
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/http/httptest/server.go:310 +0x6a
    created by net/http/httptest.(*Server).goServe
    	C:/Users/jenkins/workspace/PR-37383-5-c3139bec-1887-4649-9ba3-37645a76409b/.gvm/versions/go1.20.11.windows.amd64/src/net/http/httptest/server.go:308 +0x6a
     
    

Steps errors 10

Expand to view the steps failures

metricbeat-unitTest - mage build unitTest
  • Took 14 min 23 sec . View more details here
  • Description: mage build unitTest
metricbeat-unitTest - mage build unitTest
  • Took 12 min 51 sec . View more details here
  • Description: mage build unitTest
metricbeat-unitTest - mage build unitTest
  • Took 12 min 54 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2022-windows-2022 - mage build unitTest
  • Took 15 min 30 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2022-windows-2022 - mage build unitTest
  • Took 12 min 11 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2022-windows-2022 - mage build unitTest
  • Took 12 min 41 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 15 min 20 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 12 min 35 sec . View more details here
  • Description: mage build unitTest
metricbeat-windows-2016-windows-2016 - mage build unitTest
  • Took 12 min 34 sec . View more details here
  • Description: mage build unitTest
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 15

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

  • Name: Build&Test / metricbeat-unitTest / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-unitTest / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-unitTest / TestAll – github.com/elastic/beats/v7/metricbeat/mb/testing/data
  • Name: Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector – github.com/elastic/beats/v7/metricbeat/mb/testing/data
  • Name: Build&Test / metricbeat-unitTest / TestAll/openmetrics.collector/docs.plain – github.com/elastic/beats/v7/metricbeat/mb/testing/data
  • Name: Build&Test / metricbeat-unitTest / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
  • Name: Build&Test / metricbeat-unitTest / TestData/docs.plain – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
  • Name: Build&Test / metricbeat-windows-2022-windows-2022 / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-windows-2022-windows-2022 / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-windows-2022-windows-2022 / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
  • Name: Build&Test / metricbeat-windows-2022-windows-2022 / TestData/docs.plain – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
  • Name: Build&Test / metricbeat-windows-2016-windows-2016 / TestOpenMetrics – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-windows-2016-windows-2016 / TestOpenMetrics/Simple_field_map – github.com/elastic/beats/v7/metricbeat/helper/openmetrics
  • Name: Build&Test / metricbeat-windows-2016-windows-2016 / TestData – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector
  • Name: Build&Test / metricbeat-windows-2016-windows-2016 / TestData/docs.plain – github.com/elastic/beats/v7/metricbeat/module/openmetrics/collector

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

@gsantoro
Copy link
Contributor Author

Sample log entry formatted for readability

{
  "log.level": "debug",
  "@timestamp": "2023-12-12T10:50:03.576Z",
  "log.logger": "kubernetes",
  "log.origin":
    {
      "function": "github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies",
      "file.name": "prometheus/textparse.go",
      "file.line": 506,
    },
  "message": 'Ignored Parsing error from Prometheus : invalid metric type "info" ',
  "service.name": "metricbeat",
  "ecs.version": "1.6.0",
}

@elasticmachine
Copy link
Collaborator

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

  • Duration: 62 min 34 sec

Pipeline error 1

This error is likely related to the pipeline itself. Click here
and then you will see the error (either incorrect syntax or an invalid configuration).

❕ Flaky test report

No test was executed to be analysed.

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

Either there was a build timeout or someone aborted the build.

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

  • Duration: 7 min 12 sec

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

@elasticmachine
Copy link
Collaborator

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

Expand to view the summary

Build stats

  • Duration: 71 min 20 sec

❕ Flaky test report

No test was executed to be analysed.

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

@gsantoro gsantoro disabled auto-merge December 13, 2023 15:03
@gsantoro
Copy link
Contributor Author

gsantoro commented Dec 13, 2023

Reusing the same prometheus logger I get this debug log

{
  "log.level": "debug",
  "@timestamp": "2023-12-13T15:52:40.083Z",
  "log.logger": "kubernetes.state_cronjob",
  "log.origin":
    {
      "function": "github.com/elastic/beats/v7/metricbeat/helper/prometheus.ParseMetricFamilies",
      "file.name": "prometheus/textparse.go",
      "file.line": 503,
    },
  "message": 'Ignored invalid metric type : invalid metric type "info" ',
  "service.name": "metricbeat",
  "ecs.version": "1.6.0",
}

to notice that the log.logger is different now. it returns the base.Logger() as the prometheus logger.

https://github.com/gsantoro/beats/blob/b2637e897363a4ca201d77c1972c546700ec86a7/metricbeat/helper/prometheus/prometheus.go#L66

@elasticmachine
Copy link
Collaborator

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

Expand to view the summary

Build stats

  • Duration: 68 min 23 sec

❕ Flaky test report

No test was executed to be analysed.

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

@elasticmachine
Copy link
Collaborator

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

Expand to view the summary

Build stats

  • Duration: 69 min 11 sec

❕ Flaky test report

No test was executed to be analysed.

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

There is a new build on-going so the previous on-going builds have been aborted.

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

  • Start Time: 2023-12-14T13:38:55.925+0000

  • Duration: 8 min 55 sec

Steps errors 1

Expand to view the steps failures

Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error 'org.jenkinsci.plugins.workflow.steps.FlowInterruptedException'

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

There is a new build on-going so the previous on-going builds have been aborted.

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

  • Start Time: 2023-12-14T13:23:43.172+0000

  • Duration: 25 min 48 sec

Test stats 🧪

Test Results
Failed 0
Passed 1558
Skipped 50
Total 1608

Steps errors 1

Expand to view the steps failures

Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error 'org.jenkinsci.plugins.workflow.steps.FlowInterruptedException'

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

Either there was a build timeout or someone aborted the build.

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

  • Duration: 37 min 9 sec

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

@elasticmachine
Copy link
Collaborator

❕ Build Aborted

Either there was a build timeout or someone aborted the build.

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

  • Duration: 31 min 37 sec

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

@elasticmachine
Copy link
Collaborator

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

Expand to view the summary

Build stats

  • Duration: 71 min 11 sec

❕ Flaky test report

No test was executed to be analysed.

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

@elasticmachine
Copy link
Collaborator

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

Expand to view the summary

Build stats

  • Start Time: 2024-01-04T09:44:16.857+0000

  • Duration: 73 min 8 sec

Test stats 🧪

Test Results
Failed 0
Passed 5115
Skipped 1051
Total 6166

💚 Flaky test report

Tests succeeded.

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

@gsantoro gsantoro merged commit 6f13899 into elastic:main Jan 4, 2024
@gsantoro gsantoro deleted the feature/ksm-custom-resource branch January 4, 2024 17:48
mergify bot pushed a commit that referenced this pull request Jan 4, 2024
* ignore prometheus parsing errors

(cherry picked from commit 6f13899)
gsantoro added a commit that referenced this pull request Jan 5, 2024
* ignore prometheus parsing errors

(cherry picked from commit 6f13899)

Co-authored-by: Giuseppe Santoro <[email protected]>
Scholar-Li pushed a commit to Scholar-Li/beats that referenced this pull request Feb 5, 2024
* ignore prometheus parsing errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-v8.11.0 Automated backport with mergify bug Team:Elastic-Agent Label for the Agent team Team:obs-ds-hosted-services Label for the Observability Hosted Services team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Missing datasets that are relying on kube-state-metrics in case custom resource state metrics are enabled
6 participants