Skip to content

Commit f1eb8b9

Browse files
authored
Merge branch '8.19' into backport/8.19/pr-226545
2 parents 2d6bc0b + d85d475 commit f1eb8b9

29 files changed

Lines changed: 256 additions & 136 deletions

File tree

config/serverless.es.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ xpack.observabilityAiAssistantManagement.visibilityEnabled: false
104104
xpack.searchSynonyms.enabled: true
105105

106106
# Query Rules UI
107-
xpack.searchQueryRules.enabled: false
107+
xpack.searchQueryRules.enabled: true

docs/CHANGELOG.asciidoc

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ IMPORTANT: The 8.18.3 release contains fixes for potential security vulnerabilit
109109
[float]
110110
[[known-issues-8.18.3]]
111111
=== Known issues
112+
include::CHANGELOG.asciidoc[tag=known-issue-227976]
112113
include::CHANGELOG.asciidoc[tag=known-issue-1508]
113114
include::CHANGELOG.asciidoc[tag=known-issue-2088]
114115

@@ -643,10 +644,29 @@ Machine Learning::
643644
[[release-notes-8.17.8]]
644645
== {kib} 8.17.8
645646

646-
The 8.17.8 release includes the following fixes.
647+
The 8.17.8 release includes the following fixes and known issues.
647648

648649
IMPORTANT: The 8.17.8 release contains fixes for potential security vulnerabilities. Check our link:https://discuss.elastic.co/c/announcements/security-announcements/31[security advisory for more details].
649650

651+
[float]
652+
[[known-issues-8.17.8]]
653+
=== Known issues
654+
655+
// tag::known-issue-227976[]
656+
.Dashboard Copy link doesn't work when sharing from a space other than the default space
657+
[%collapsible]
658+
====
659+
**This issue is resolved in versions 8.19.0, 8.18.4, and 8.17.9** ({kibana-pull}227625[#227625]).
660+
661+
*Details* +
662+
When attempting to share a dashboard from a space that isn't the default space, the **Copy link** action never completes.
663+
664+
*Workaround* +
665+
To avoid this issue, don't upgrade {kib} to one of the affected versions, or upgrade to a higher version that includes a fix for it.
666+
667+
====
668+
// end::known-issue-227976[]
669+
650670
[float]
651671
[[fixes-v8.17.8]]
652672
=== Fixes

docs/user/dashboard/create-visualizations.asciidoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ TIP: Check the link:{ref}/esql-language.html[ES|QL reference] to get familiar wi
219219
. When editing your query or its configuration, run the query to update the preview of the visualization.
220220
+
221221
image:https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt69dcceb4f1e12bc1/66c752d6aff77d384dc44209/edit-esql-visualization.gif[Previewing an ESQL visualization]
222+
+
223+
TIP: When you edit the query and run it again, the visualization configuration persists as long as it is compatible with the query changes.
224+
222225
. You can bind controls to your ES|QL visualizations in dashboards by creating <<esql-controls,ES|QL controls>>.
223226
. Select **Apply and close** to save the visualization to the dashboard.
224227

src/platform/plugins/private/kibana_usage_collection/server/collectors/application_usage/schema.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ export const applicationUsageSchema = {
139139
searchInferenceEndpoints: commonSchema,
140140
searchPlayground: commonSchema,
141141
searchSynonyms: commonSchema,
142+
searchQueryRules: commonSchema,
142143
enterpriseSearchAnalytics: commonSchema,
143144
enterpriseSearchApplications: commonSchema,
144145
enterpriseSearchAISearch: commonSchema,

src/platform/plugins/shared/data/server/deprecations/index.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/platform/plugins/shared/data/server/deprecations/search_sessions.ts

Lines changed: 0 additions & 93 deletions
This file was deleted.

src/platform/plugins/shared/data/server/plugin.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { BfetchServerSetup } from '@kbn/bfetch-plugin/server';
1313
import { PluginStart as DataViewsServerPluginStart } from '@kbn/data-views-plugin/server';
1414
import { UsageCollectionSetup } from '@kbn/usage-collection-plugin/server';
1515
import { FieldFormatsSetup, FieldFormatsStart } from '@kbn/field-formats-plugin/server';
16-
import { createSearchSessionsDeprecationsConfig } from './deprecations';
1716
import { ConfigSchema } from './config';
1817
import type { ISearchSetup, ISearchStart } from './search';
1918
import { DatatableUtilitiesService } from './datatable_utilities';
@@ -93,7 +92,6 @@ export class DataServerPlugin
9392
this.kqlTelemetryService.setup(core, { usageCollection });
9493

9594
core.uiSettings.register(getUiSettings(core.docLinks, this.config.enableUiSettingsValidations));
96-
core.deprecations.registerDeprecations(createSearchSessionsDeprecationsConfig(core));
9795

9896
const searchSetup = this.searchService.setup(core, {
9997
bfetch,

src/platform/plugins/shared/data/tsconfig.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../../../../../tsconfig.base.json",
33
"compilerOptions": {
4-
"outDir": "target/types",
4+
"outDir": "target/types"
55
},
66
"include": [
77
"common/**/*",
@@ -56,9 +56,6 @@
5656
"@kbn/safer-lodash-set",
5757
"@kbn/esql-utils",
5858
"@kbn/shared-ux-table-persist",
59-
"@kbn/core-deprecations-common",
6059
],
61-
"exclude": [
62-
"target/**/*",
63-
]
60+
"exclude": ["target/**/*"]
6461
}

src/platform/plugins/shared/telemetry/schema/oss_platform.json

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2491,6 +2491,137 @@
24912491
}
24922492
}
24932493
},
2494+
"searchQueryRules": {
2495+
"properties": {
2496+
"appId": {
2497+
"type": "keyword",
2498+
"_meta": {
2499+
"description": "The application being tracked"
2500+
}
2501+
},
2502+
"viewId": {
2503+
"type": "keyword",
2504+
"_meta": {
2505+
"description": "Always `main`"
2506+
}
2507+
},
2508+
"clicks_total": {
2509+
"type": "long",
2510+
"_meta": {
2511+
"description": "General number of clicks in the application since we started counting them"
2512+
}
2513+
},
2514+
"clicks_7_days": {
2515+
"type": "long",
2516+
"_meta": {
2517+
"description": "General number of clicks in the application over the last 7 days"
2518+
}
2519+
},
2520+
"clicks_30_days": {
2521+
"type": "long",
2522+
"_meta": {
2523+
"description": "General number of clicks in the application over the last 30 days"
2524+
}
2525+
},
2526+
"clicks_90_days": {
2527+
"type": "long",
2528+
"_meta": {
2529+
"description": "General number of clicks in the application over the last 90 days"
2530+
}
2531+
},
2532+
"minutes_on_screen_total": {
2533+
"type": "float",
2534+
"_meta": {
2535+
"description": "Minutes the application is active and on-screen since we started counting them."
2536+
}
2537+
},
2538+
"minutes_on_screen_7_days": {
2539+
"type": "float",
2540+
"_meta": {
2541+
"description": "Minutes the application is active and on-screen over the last 7 days"
2542+
}
2543+
},
2544+
"minutes_on_screen_30_days": {
2545+
"type": "float",
2546+
"_meta": {
2547+
"description": "Minutes the application is active and on-screen over the last 30 days"
2548+
}
2549+
},
2550+
"minutes_on_screen_90_days": {
2551+
"type": "float",
2552+
"_meta": {
2553+
"description": "Minutes the application is active and on-screen over the last 90 days"
2554+
}
2555+
},
2556+
"views": {
2557+
"type": "array",
2558+
"items": {
2559+
"properties": {
2560+
"appId": {
2561+
"type": "keyword",
2562+
"_meta": {
2563+
"description": "The application being tracked"
2564+
}
2565+
},
2566+
"viewId": {
2567+
"type": "keyword",
2568+
"_meta": {
2569+
"description": "The application view being tracked"
2570+
}
2571+
},
2572+
"clicks_total": {
2573+
"type": "long",
2574+
"_meta": {
2575+
"description": "General number of clicks in the application sub view since we started counting them"
2576+
}
2577+
},
2578+
"clicks_7_days": {
2579+
"type": "long",
2580+
"_meta": {
2581+
"description": "General number of clicks in the active application sub view over the last 7 days"
2582+
}
2583+
},
2584+
"clicks_30_days": {
2585+
"type": "long",
2586+
"_meta": {
2587+
"description": "General number of clicks in the active application sub view over the last 30 days"
2588+
}
2589+
},
2590+
"clicks_90_days": {
2591+
"type": "long",
2592+
"_meta": {
2593+
"description": "General number of clicks in the active application sub view over the last 90 days"
2594+
}
2595+
},
2596+
"minutes_on_screen_total": {
2597+
"type": "float",
2598+
"_meta": {
2599+
"description": "Minutes the application sub view is active and on-screen since we started counting them."
2600+
}
2601+
},
2602+
"minutes_on_screen_7_days": {
2603+
"type": "float",
2604+
"_meta": {
2605+
"description": "Minutes the application is active and on-screen active application sub view over the last 7 days"
2606+
}
2607+
},
2608+
"minutes_on_screen_30_days": {
2609+
"type": "float",
2610+
"_meta": {
2611+
"description": "Minutes the application is active and on-screen active application sub view over the last 30 days"
2612+
}
2613+
},
2614+
"minutes_on_screen_90_days": {
2615+
"type": "float",
2616+
"_meta": {
2617+
"description": "Minutes the application is active and on-screen active application sub view over the last 90 days"
2618+
}
2619+
}
2620+
}
2621+
}
2622+
}
2623+
}
2624+
},
24942625
"enterpriseSearchAnalytics": {
24952626
"properties": {
24962627
"appId": {

x-pack/platform/plugins/private/translations/translations/fr-FR.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1743,10 +1743,6 @@
17431743
"data.advancedSettings.timepicker.today": "Aujourd'hui",
17441744
"data.aggTypes.buckets.ranges.rangesFormatMessage": "{gte} {from} et {lt} {to}",
17451745
"data.aggTypes.buckets.ranges.rangesFormatMessageArrowRight": "{from} → {to}",
1746-
"data.deprecations.scriptedFieldsMessage": "La fonctionnalité de sessions de recherche est déclassée et est désactivée par défaut dans la version 9.0. Vous avez actuellement {numberOfSearchSessions} session(s) de recherche active(s) : [Gérer les sessions de recherche]({searchSessionsLink})",
1747-
"data.deprecations.searchSessions.manualStepOneMessage": "Accédez à Gestion de la Suite > Kibana > Sessions de recherche",
1748-
"data.deprecations.searchSessions.manualStepTwoMessage": "À défaut, pour continuer à utiliser les sessions de recherche jusqu'à la version 9.1, ouvrez le fichier de configuration kibana.yml et ajoutez le texte suivant : \"data.search.sessions.enabled: true\"",
1749-
"data.deprecations.searchSessionsTitle": "Les sessions de recherche seront désactivées par défaut",
17501746
"data.filter.filterBar.fieldNotFound": "Champ {key} non trouvé dans la vue de données {dataView}",
17511747
"data.functions.esaggs.help": "Exécuter l'agrégation AggConfig",
17521748
"data.functions.esaggs.inspector.dataRequest.description": "Cette requête interroge Elasticsearch pour récupérer les données pour la visualisation.",

0 commit comments

Comments
 (0)