mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 16:29:04 -04:00
Backports PR #8915 **Commit 1:** Support Cloud Kibana UI testing master * Original sha:98ba2ceec7
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-10-28T19:16:31Z **Commit 2:** Add xpack file * Original sha:adc27bacee
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-10-29T00:02:18Z **Commit 3:** cherry-pick9f63224e77
* Original sha:f4549ee003
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-10-31T17:09:57Z
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
var shield = require('./shield');
|
|
|
|
var kibanaURL = '/app/kibana';
|
|
|
|
module.exports = {
|
|
servers: {
|
|
webdriver: {
|
|
protocol: process.env.TEST_WEBDRIVER_PROTOCOL || 'http',
|
|
hostname: process.env.TEST_WEBDRIVER_HOSTNAME || 'localhost',
|
|
port: parseInt(process.env.TEST_WEBDRIVER_PORT, 10) || 4444
|
|
},
|
|
kibana: {
|
|
protocol: process.env.TEST_KIBANA_PROTOCOL || 'http',
|
|
hostname: process.env.TEST_KIBANA_HOSTNAME || 'localhost',
|
|
port: parseInt(process.env.TEST_KIBANA_PORT, 10) || 5620,
|
|
auth: shield.kibanaUser.username + ':' + shield.kibanaUser.password,
|
|
username: shield.kibanaUser.username,
|
|
password: shield.kibanaUser.password
|
|
},
|
|
elasticsearch: {
|
|
protocol: process.env.TEST_ES_PROTOCOL || 'http',
|
|
hostname: process.env.TEST_ES_HOSTNAME || 'localhost',
|
|
port: parseInt(process.env.TEST_ES_PORT, 10) || 9220,
|
|
auth: shield.admin.username + ':' + shield.admin.password,
|
|
username: shield.admin.username,
|
|
password: shield.admin.password
|
|
}
|
|
},
|
|
apps: {
|
|
status_page: {
|
|
pathname: 'status'
|
|
},
|
|
discover: {
|
|
pathname: kibanaURL,
|
|
hash: '/discover',
|
|
},
|
|
visualize: {
|
|
pathname: kibanaURL,
|
|
hash: '/visualize',
|
|
},
|
|
dashboard: {
|
|
pathname: kibanaURL,
|
|
hash: '/dashboard',
|
|
},
|
|
settings: {
|
|
pathname: kibanaURL,
|
|
hash: '/management'
|
|
},
|
|
console: {
|
|
pathname: kibanaURL,
|
|
hash: '/dev_tools/console',
|
|
}
|
|
}
|
|
};
|