Skip to content

Commit

Permalink
fix database and schema aggregation key (#19100)
Browse files Browse the repository at this point in the history
  • Loading branch information
karanh37 authored Dec 16, 2024
1 parent b40dc01 commit c41b4c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,6 @@ export const navbarSearchItems = [
searchIndex: 'api_collection_search_index',
isScrollRequired: true,
},
{
label: 'Metric',
searchIndex: 'metric_search_index',
isScrollRequired: true,
},
];

export const selectOption = async (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ export enum EntityFields {
TIER = 'tier.tagFQN',
CERTIFICATION = 'certification.tagLabel.tagFQN',
SERVICE = 'service.displayName.keyword',
DATABASE = 'database.displayName.keyword',
DATABASE_SCHEMA = 'databaseSchema.displayName.keyword',
DATABASE_DISPLAY_NAME = 'database.displayName',
DATABASE_SCHEMA_DISPLAY_NAME = 'databaseSchema.displayName',
DATABASE = 'database.displayName',
DATABASE_SCHEMA = 'databaseSchema.displayName',
COLUMN = 'columns.name.keyword',
CHART = 'charts.displayName.keyword',
TASK = 'tasks.displayName.keyword',
Expand Down

0 comments on commit c41b4c4

Please sign in to comment.