mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
67adddecb6
commit
2cb1f3e9db
5 changed files with 3 additions and 11 deletions
|
@ -22,7 +22,7 @@ you'll need to update your `kibana.yml` file. You can also enable SSL and set a
|
|||
`elasticsearch.customHeaders:`:: *Default: `{}`* Header names and values to send to Elasticsearch. Any custom headers
|
||||
cannot be overwritten by client-side headers, regardless of the `elasticsearch.requestHeadersWhitelist` configuration.
|
||||
|
||||
`elasticsearch.logQueries:`:: *Default: `false`* Logs queries sent to Elasticsearch. Requires `logging.verbose` set to `true`. This is useful for seeing the query DSL generated by applications that currently do not have a spy panel, for example Timelion and Monitoring.
|
||||
`elasticsearch.logQueries:`:: *Default: `false`* Logs queries sent to Elasticsearch. Requires `logging.verbose` set to `true`. This is useful for seeing the query DSL generated by applications that currently do not have an inspector, for example Timelion and Monitoring.
|
||||
|
||||
`elasticsearch.pingTimeout:`:: *Default: the value of the `elasticsearch.requestTimeout` setting* Time in milliseconds to
|
||||
wait for Elasticsearch to respond to pings.
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* The interface that the adapters used to open spy panels have to fullfill.
|
||||
* The interface that the adapters used to open an inspector have to fullfill.
|
||||
*/
|
||||
export interface Adapters {
|
||||
[key: string]: any;
|
||||
|
|
|
@ -87,7 +87,7 @@ const CourierRequestHandlerProvider = function () {
|
|||
aggs.setTimeRange(timeRange);
|
||||
|
||||
// For now we need to mirror the history of the passed search source, since
|
||||
// the spy panel wouldn't work otherwise.
|
||||
// the request inspector wouldn't work otherwise.
|
||||
Object.defineProperty(requestSearchSource, 'history', {
|
||||
get() {
|
||||
return searchSource.history;
|
||||
|
|
|
@ -185,12 +185,6 @@ describe('visualize loader', () => {
|
|||
expect(vis.attr('data-foo')).to.be('');
|
||||
expect(vis.attr('data-with-dash')).to.be('value');
|
||||
});
|
||||
|
||||
it('should hide spy panel control by default', () => {
|
||||
const vis = embedWithParams({});
|
||||
expect(vis.find('[data-test-subj="spyToggleButton"]').length).to.be(0);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
describe('embedVisualizationWithId', () => {
|
||||
|
|
|
@ -33,7 +33,6 @@ export default function ({ getService, getPageObjects }) {
|
|||
|
||||
|
||||
before(async function () {
|
||||
// Make sure the window is height enough to show the spy panel without hiding the map
|
||||
remote.setWindowSize(1280, 1000);
|
||||
|
||||
const fromTime = '2015-09-19 06:31:44.000';
|
||||
|
@ -64,7 +63,6 @@ export default function ({ getService, getPageObjects }) {
|
|||
|
||||
describe('complete config', function describeIndexTests() {
|
||||
before(async function () {
|
||||
// Make sure the window is height enough to show the spy panel without hiding the map
|
||||
remote.setWindowSize(1280, 1000);
|
||||
|
||||
const fromTime = '2015-09-19 06:31:44.000';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue