Skip to content

Commit c8d3d07

Browse files
Merge branch '7.6' into backport/7.6/pr-62515
2 parents d9cdaa3 + dbbd39c commit c8d3d07

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

docs/visualize/for-dashboard.asciidoc

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,29 @@ on a dashboard.
1313

1414
You can add two types of interactive inputs:
1515

16-
* *Options list* - Filters content based on one or more specified options. The dropdown menu is dynamically populated with the results of a terms aggregation. For example, use the options list on the sample flight dashboard when you want to filter the data by origin city and destination city.
16+
* *Options list* — Filters content based on one or more specified options. The dropdown menu is dynamically populated with the results of a terms aggregation. For example, use the options list on the sample flight dashboard when you want to filter the data by origin city and destination city.
1717

18-
* *Range slider* - Filters data within a specified range of numbers. The minimum and maximum values are dynamically populated with the results of a min and max aggregation. For example, use the range slider when you want to filter the sample flight dashboard by a specific average ticket price.
18+
* *Range slider* — Filters data within a specified range of numbers. The minimum and maximum values are dynamically populated with the results of a min and max aggregation. For example, use the range slider when you want to filter the sample flight dashboard by a specific average ticket price.
1919

2020
[role="screenshot"]
2121
image::images/dashboard-controls.png[]
2222

23+
[float]
24+
[[controls-options]]
25+
==== Controls options
26+
27+
Configure the settings that apply to the interactive inputs on a dashboard.
28+
29+
. Click *Options*, then configure the following:
30+
31+
* *Update {kib} filters on each change* — When selected, all interactive inputs create filters that refresh the dashboard. When unselected, {kib} filters are created only when you click *Apply changes*.
32+
33+
* *Use time filter* &mdash; When selected, the aggregations that generate the options list and time range are connected to the <<set-time-filter,time filter>>.
34+
35+
* *Pin filters to global state* &mdash; When selected, all filters created by interacting with the inputs are automatically pinned.
36+
37+
. Click *Update*.
38+
2339
[float]
2440
[[markdown-widget]]
2541
=== Markdown

test/functional/apps/context/_date_nanos.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export default function({ getService, getPageObjects }) {
4343
return esArchiver.unload('date_nanos');
4444
});
4545

46-
it('displays predessors - anchor - successors in right order ', async function() {
46+
// https://github.com/elastic/kibana/issues/58815
47+
it.skip('displays predessors - anchor - successors in right order ', async function() {
4748
await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, 'AU_x3-TaGFA8no6Qj999Z');
4849
const actualRowsText = await docTable.getRowsText();
4950
const expectedRowsText = [

test/functional/apps/discover/_discover_histogram.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export default function({ getService, getPageObjects }) {
3131
'dateFormat:tz': 'Europe/Berlin',
3232
};
3333

34-
describe('discover histogram', function describeIndexTests() {
34+
// https://github.com/elastic/kibana/issues/63928
35+
describe.skip('discover histogram', function describeIndexTests() {
3536
before(async function() {
3637
log.debug('load kibana index with default index pattern');
3738
await PageObjects.common.navigateToApp('home');

test/functional/apps/timelion/_expression_typeahead.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import expect from '@kbn/expect';
2222
export default function({ getPageObjects }) {
2323
const PageObjects = getPageObjects(['common', 'timelion', 'settings', 'timePicker']);
2424

25-
describe('expression typeahead', () => {
25+
// https://github.com/elastic/kibana/issues/58817
26+
describe.skip('expression typeahead', () => {
2627
before(async () => {
2728
await PageObjects.timelion.initTests();
2829
await PageObjects.timePicker.setDefaultAbsoluteRange();

x-pack/test/functional/apps/canvas/custom_elements.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ export default function canvasCustomElementTest({
1919
const PageObjects = getPageObjects(['canvas', 'common']);
2020
const find = getService('find');
2121

22-
describe('custom elements', function() {
22+
// FLAKY: https://github.com/elastic/kibana/issues/62927
23+
describe.skip('custom elements', function() {
2324
this.tags('skipFirefox');
2425

2526
before(async () => {
@@ -55,7 +56,8 @@ export default function canvasCustomElementTest({
5556
});
5657
});
5758

58-
it('adds the custom element to the workpad when prompted', async () => {
59+
// https://github.com/elastic/kibana/issues/63339
60+
it.skip('adds the custom element to the workpad when prompted', async () => {
5961
await PageObjects.canvas.openAddElementModal();
6062

6163
// open the custom elements tab

0 commit comments

Comments
 (0)