-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Beats instance page * Remove unused getPaginationRouteOptions Co-authored-by: Mat Schaffer <[email protected]>
- Loading branch information
1 parent
68d572a
commit 01425ef
Showing
2 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
x-pack/plugins/monitoring/public/application/pages/beats/instances.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import React, { useContext, useState, useCallback, useEffect } from 'react'; | ||
import { i18n } from '@kbn/i18n'; | ||
import { find } from 'lodash'; | ||
import { ComponentProps } from '../../route_init'; | ||
import { GlobalStateContext } from '../../global_state_context'; | ||
import { useKibana } from '../../../../../../../src/plugins/kibana_react/public'; | ||
import { useTable } from '../../hooks/use_table'; | ||
import { BeatsTemplate } from './beats_template'; | ||
// @ts-ignore | ||
import { Listing } from '../../../components/beats/listing'; | ||
import { SetupModeRenderer } from '../../setup_mode/setup_mode_renderer'; | ||
import { SetupModeContext } from '../../../components/setup_mode/setup_mode_context'; | ||
import { BreadcrumbContainer } from '../../hooks/use_breadcrumbs'; | ||
|
||
interface SetupModeProps { | ||
setupMode: any; | ||
flyoutComponent: any; | ||
bottomBarComponent: any; | ||
} | ||
|
||
export const BeatsInstancesPage: React.FC<ComponentProps> = ({ clusters }) => { | ||
const globalState = useContext(GlobalStateContext); | ||
const { services } = useKibana<{ data: any }>(); | ||
const { generate: generateBreadcrumbs } = useContext(BreadcrumbContainer.Context); | ||
const { getPaginationTableProps } = useTable('beats.instances'); | ||
const clusterUuid = globalState.cluster_uuid; | ||
const ccs = globalState.ccs; | ||
const cluster = find(clusters, { | ||
cluster_uuid: clusterUuid, | ||
}) as any; | ||
const [data, setData] = useState({} as any); | ||
|
||
const title = i18n.translate('xpack.monitoring.beats.routeTitle', { defaultMessage: 'Beats' }); | ||
|
||
const pageTitle = i18n.translate('xpack.monitoring.beats.listing.pageTitle', { | ||
defaultMessage: 'Beats listing', | ||
}); | ||
|
||
useEffect(() => { | ||
if (cluster) { | ||
generateBreadcrumbs(cluster.cluster_name, { | ||
inBeats: true, | ||
}); | ||
} | ||
}, [cluster, generateBreadcrumbs]); | ||
|
||
const getPageData = useCallback(async () => { | ||
const bounds = services.data?.query.timefilter.timefilter.getBounds(); | ||
const url = `../api/monitoring/v1/clusters/${clusterUuid}/beats/beats`; | ||
const response = await services.http?.fetch(url, { | ||
method: 'POST', | ||
body: JSON.stringify({ | ||
ccs, | ||
timeRange: { | ||
min: bounds.min.toISOString(), | ||
max: bounds.max.toISOString(), | ||
}, | ||
}), | ||
}); | ||
|
||
setData(response); | ||
}, [ccs, clusterUuid, services.data?.query.timefilter.timefilter, services.http]); | ||
|
||
return ( | ||
<BeatsTemplate | ||
title={title} | ||
pageTitle={pageTitle} | ||
getPageData={getPageData} | ||
data-test-subj="beatsListingPage" | ||
cluster={cluster} | ||
> | ||
<div data-test-subj="monitoringBeatsInstancesApp"> | ||
<SetupModeRenderer | ||
render={({ setupMode, flyoutComponent, bottomBarComponent }: SetupModeProps) => ( | ||
<SetupModeContext.Provider value={{ setupModeSupported: true }}> | ||
{flyoutComponent} | ||
<Listing | ||
stats={data.stats} | ||
data={data.listing} | ||
setupMode={setupMode} | ||
{...getPaginationTableProps()} | ||
/> | ||
{bottomBarComponent} | ||
</SetupModeContext.Provider> | ||
)} | ||
/> | ||
</div> | ||
</BeatsTemplate> | ||
); | ||
}; |