Skip to content

Commit

Permalink
[APM] Suggestion to remove "Kuery" bar from Logs view in APM service …
Browse files Browse the repository at this point in the history
…overview experience (#109733) (#109883)

* removing kuery bar from logs tab

* fixing ts issue

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Cauê Marcondes <55978943+cauemarcondes@users.noreply.github.com>
  • Loading branch information
kibanamachine and cauemarcondes authored Aug 24, 2021
1 parent 5293898 commit 8244185
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function page<TPath extends string>({
tab: React.ComponentProps<typeof ApmServiceTemplate>['selectedTab'];
element: React.ReactElement<any, any>;
searchBarOptions?: {
showKueryBar?: boolean;
showTransactionTypeSelector?: boolean;
showTimeComparison?: boolean;
hidden?: boolean;
Expand Down Expand Up @@ -245,6 +246,9 @@ export const serviceDetail = {
defaultMessage: 'Logs',
}),
element: <ServiceLogs />,
searchBarOptions: {
showKueryBar: false,
},
}),
page({
path: '/profiling',
Expand Down

0 comments on commit 8244185

Please sign in to comment.