mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Monitoring] Fix broken api integration test (#24076)
* Fix broken api integration test * Fix other test as well
This commit is contained in:
parent
713ecc1e64
commit
c38dbaa678
5 changed files with 6 additions and 6 deletions
|
@ -658,8 +658,8 @@
|
|||
},
|
||||
"data": [
|
||||
[1535723880000, null],
|
||||
[1535723910000, 0],
|
||||
[1535723940000, 0]
|
||||
[1535723910000, 12],
|
||||
[1535723940000, 8]
|
||||
]
|
||||
}, {
|
||||
"bucket_size": "30 seconds",
|
||||
|
|
|
@ -649,7 +649,7 @@
|
|||
},
|
||||
"data": [
|
||||
[1535723880000, null],
|
||||
[1535723910000, 0],
|
||||
[1535723910000, 4],
|
||||
[1535723940000, 0]
|
||||
]
|
||||
}, {
|
||||
|
|
|
@ -26,7 +26,7 @@ export default function ({ getService }) {
|
|||
return esArchiver.unload(archive);
|
||||
});
|
||||
|
||||
it.skip('should summarize beat with metrics', async () => {
|
||||
it('should get apm instance data', async () => {
|
||||
const { body } = await supertest
|
||||
.post('/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm/9b16f434-2092-4983-a401-80a2b61c79d6')
|
||||
.set('kbn-xsrf', 'xxx')
|
||||
|
|
|
@ -25,7 +25,7 @@ export default function ({ getService }) {
|
|||
return esArchiver.unload(archive);
|
||||
});
|
||||
|
||||
it.skip('should load multiple clusters', async () => {
|
||||
it('should load multiple clusters', async () => {
|
||||
const { body } = await supertest
|
||||
.post(
|
||||
'/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm/instances'
|
||||
|
|
|
@ -26,7 +26,7 @@ export default function ({ getService }) {
|
|||
return esArchiver.unload(archive);
|
||||
});
|
||||
|
||||
it.skip('should summarize apm cluster with metrics', async () => {
|
||||
it('should summarize apm cluster with metrics', async () => {
|
||||
const { body } = await supertest
|
||||
.post('/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm')
|
||||
.set('kbn-xsrf', 'xxx')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue