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

Failing test: X-Pack API Integration Tests.x-pack/test/api_integration/apis/monitoring/logstash/multicluster_pipelines·js - apis Monitoring Logstash pipelines listing multicluster should get the pipelines #52471

Open
kibanamachine opened this issue Dec 8, 2019 · 10 comments
Labels
blocker failed-test A test failure on a tracked branch, potentially flaky-test Feature:Logstash Pipelines Logstash Pipeline UI related skipped-test Team:Logstash v7.7.1 v8.0.0

Comments

@kibanamachine
Copy link
Contributor

kibanamachine commented Dec 8, 2019

A test failed on a tracked branch

{ Error: expected { pipelines: 
   [ { id: 'uno',
       metrics: [Object],
       latestThroughput: null,
       latestNodesCount: 1 } ],
  clusterStatus: 
   { node_count: 1,
     events_in_total: 0,
     events_out_total: 0,
     avg_memory: 1037959168,
     avg_memory_used: 203687512,
     max_uptime: 863288,
     pipeline_count: 1,
     queue_types: { memory: 1, persisted: 0 },
     versions: [ '8.0.0' ] },
  totalPipelineCount: 1 } to sort of equal { pipelines: 
   [ { id: 'uno',
       metrics: [Object],
       latestThroughput: 0,
       latestNodesCount: 1 } ],
  clusterStatus: 
   { node_count: 1,
     events_in_total: 0,
     events_out_total: 0,
     avg_memory: 1037959168,
     avg_memory_used: 203687512,
     max_uptime: 863288,
     pipeline_count: 1,
     queue_types: { memory: 1, persisted: 0 },
     versions: [ '8.0.0' ] },
  totalPipelineCount: 1 }
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.eql (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:244:8)
    at Context.it (test/api_integration/apis/monitoring/logstash/multicluster_pipelines.js:40:23)
  actual:
   '{\n  "clusterStatus": {\n    "avg_memory": 1037959168\n    "avg_memory_used": 203687512\n    "events_in_total": 0\n    "events_out_total": 0\n    "max_uptime": 863288\n    "node_count": 1\n    "pipeline_count": 1\n    "queue_types": {\n      "memory": 1\n      "persisted": 0\n    }\n    "versions": [\n      "8.0.0"\n    ]\n  }\n  "pipelines": [\n    {\n      "id": "uno"\n      "latestNodesCount": 1\n      "latestThroughput": [null]\n      "metrics": {\n        "nodesCount": {\n          "bucket_size": "10 seconds"\n          "data": [\n            [\n              1573485230000\n              1\n            ]\n          ]\n          "metric": {\n            "app": "logstash"\n            "description": "Number of nodes on which the Logstash pipeline is running."\n            "field": "logstash_stats.logstash.uuid"\n            "format": "0,0.[00]"\n            "hasCalculation": true\n            "isDerivative": false\n            "label": "Pipeline Node Count"\n            "units": ""\n          }\n          "timeRange": {\n            "max": 1573485425399\n            "min": 1573485225266\n          }\n        }\n        "throughput": {\n          "bucket_size": "10 seconds"\n          "data": [\n            [\n              1573485230000\n              [null]\n            ]\n          ]\n          "metric": {\n            "app": "logstash"\n            "description": "Number of events emitted per second by the Logstash pipeline at the outputs stage."\n            "field": "logstash_stats.pipelines.events.out"\n            "format": "0,0.[00]"\n            "hasCalculation": true\n            "isDerivative": false\n            "label": "Pipeline Throughput"\n            "units": "e/s"\n          }\n          "timeRange": {\n            "max": 1573485425399\n            "min": 1573485225266\n          }\n        }\n      }\n    }\n  ]\n  "totalPipelineCount": 1\n}',
  expected:
   '{\n  "clusterStatus": {\n    "avg_memory": 1037959168\n    "avg_memory_used": 203687512\n    "events_in_total": 0\n    "events_out_total": 0\n    "max_uptime": 863288\n    "node_count": 1\n    "pipeline_count": 1\n    "queue_types": {\n      "memory": 1\n      "persisted": 0\n    }\n    "versions": [\n      "8.0.0"\n    ]\n  }\n  "pipelines": [\n    {\n      "id": "uno"\n      "latestNodesCount": 1\n      "latestThroughput": 0\n      "metrics": {\n        "nodesCount": {\n          "bucket_size": "10 seconds"\n          "data": [\n            [\n              1573485230000\n              1\n            ]\n          ]\n          "metric": {\n            "app": "logstash"\n            "description": "Number of nodes on which the Logstash pipeline is running."\n            "field": "logstash_stats.logstash.uuid"\n            "format": "0,0.[00]"\n            "hasCalculation": true\n            "isDerivative": false\n            "label": "Pipeline Node Count"\n            "units": ""\n          }\n          "timeRange": {\n            "max": 1573485425399\n            "min": 1573485225266\n          }\n        }\n        "throughput": {\n          "bucket_size": "10 seconds"\n          "data": [\n            [\n              1573485230000\n              0\n            ]\n          ]\n          "metric": {\n            "app": "logstash"\n            "description": "Number of events emitted per second by the Logstash pipeline at the outputs stage."\n            "field": "logstash_stats.pipelines.events.out"\n            "format": "0,0.[00]"\n            "hasCalculation": true\n            "isDerivative": false\n            "label": "Pipeline Throughput"\n            "units": "e/s"\n          }\n          "timeRange": {\n            "max": 1573485425399\n            "min": 1573485225266\n          }\n        }\n      }\n    }\n  ]\n  "totalPipelineCount": 1\n}',
  showDiff: true }

First failure: Jenkins Build

@kibanamachine kibanamachine added the failed-test A test failure on a tracked branch, potentially flaky-test label Dec 8, 2019
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-test-triage (failed-test)

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@kibanamachine
Copy link
Contributor Author

New failure: Jenkins Build

@spalger spalger added Feature:Logstash Pipelines Logstash Pipeline UI related skipped-test labels Dec 8, 2019
@spalger
Copy link
Contributor

spalger commented Dec 8, 2019

Skipped in 7.x: cd73027

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocker failed-test A test failure on a tracked branch, potentially flaky-test Feature:Logstash Pipelines Logstash Pipeline UI related skipped-test Team:Logstash v7.7.1 v8.0.0
Projects
None yet
Development

No branches or pull requests

5 participants