File tree Expand file tree Collapse file tree
kibana_usage_collection/server/collectors/management
unified_field_list/common
test/api_integration/apis/unified_field_list
x-pack/plugins/lens/public/indexpattern_datasource Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ export const stackManagementSchema: MakeSchemaFrom<UsageStats> = {
498498 type : 'boolean' ,
499499 _meta : { description : 'Non-default value of setting.' } ,
500500 } ,
501- 'unifiedFieldList :useFieldExistenceSampling' : {
501+ 'lens :useFieldExistenceSampling' : {
502502 type : 'boolean' ,
503503 _meta : { description : 'Non-default value of setting.' } ,
504504 } ,
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ export interface UsageStats {
135135 'discover:rowHeightOption' : number ;
136136 hideAnnouncements : boolean ;
137137 isDefaultIndexMigrated : boolean ;
138- 'unifiedFieldList :useFieldExistenceSampling' : boolean ;
138+ 'lens :useFieldExistenceSampling' : boolean ;
139139 'metrics:allowCheckingForFailedShards' : boolean ;
140140 'observability:apmOperationsTab' : boolean ;
141141 'observability:apmProgressiveLoading' : string ;
Original file line number Diff line number Diff line change 85158515 "description" : " Non-default value of setting."
85168516 }
85178517 },
8518- "unifiedFieldList :useFieldExistenceSampling" : {
8518+ "lens :useFieldExistenceSampling" : {
85198519 "type" : " boolean" ,
85208520 "_meta" : {
85218521 "description" : " Non-default value of setting."
Original file line number Diff line number Diff line change 77 */
88
99export const PLUGIN_ID = 'unifiedFieldList' ;
10- export const FIELD_EXISTENCE_SETTING = 'unifiedFieldList :useFieldExistenceSampling' ;
10+ export const FIELD_EXISTENCE_SETTING = 'lens :useFieldExistenceSampling' ;
Original file line number Diff line number Diff line change @@ -171,15 +171,15 @@ export default ({ getService }: FtrProviderContext) => {
171171 'x-pack/test/functional/fixtures/kbn_archiver/visualize/default'
172172 ) ;
173173 await kibanaServer . uiSettings . update ( {
174- 'unifiedFieldList :useFieldExistenceSampling' : true ,
174+ 'lens :useFieldExistenceSampling' : true ,
175175 } ) ;
176176 } ) ;
177177 after ( async ( ) => {
178178 await esArchiver . unload ( 'x-pack/test/functional/es_archives/logstash_functional' ) ;
179179 await esArchiver . unload ( 'x-pack/test/functional/es_archives/visualize/default' ) ;
180180 await kibanaServer . savedObjects . cleanStandardList ( ) ;
181181 await kibanaServer . uiSettings . update ( {
182- 'unifiedFieldList :useFieldExistenceSampling' : false ,
182+ 'lens :useFieldExistenceSampling' : false ,
183183 } ) ;
184184 } ) ;
185185
Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ export const InnerIndexPatternDataPanel = function InnerIndexPatternDataPanel({
357357 } ) ,
358358 } ;
359359
360- const isUsingSampling = core . uiSettings . get ( 'unifiedFieldList :useFieldExistenceSampling' ) ;
360+ const isUsingSampling = core . uiSettings . get ( 'lens :useFieldExistenceSampling' ) ;
361361
362362 const fieldGroupDefinitions : FieldGroups = {
363363 SpecialFields : {
Original file line number Diff line number Diff line change @@ -367,9 +367,7 @@ function FieldItemPopoverContents(props: FieldItemProps) {
367367 }
368368
369369 if ( params ?. noDataFound ) {
370- const isUsingSampling = core . uiSettings . get (
371- 'unifiedFieldList:useFieldExistenceSampling'
372- ) ;
370+ const isUsingSampling = core . uiSettings . get ( 'lens:useFieldExistenceSampling' ) ;
373371 return (
374372 < >
375373 < EuiText size = "s" >
You can’t perform that action at this time.
0 commit comments