2023-07-07 15:49:35 +03:00
|
|
|
import { Col, Row } from 'antd';
|
2023-08-30 20:24:16 +05:30
|
|
|
import ExplorerCard from 'components/ExplorerCard/ExplorerCard';
|
2023-07-07 15:49:35 +03:00
|
|
|
import LogExplorerQuerySection from 'container/LogExplorerQuerySection';
|
2023-06-23 11:19:53 +03:00
|
|
|
import LogsExplorerViews from 'container/LogsExplorerViews';
|
2023-08-29 15:23:22 +03:00
|
|
|
import LogsTopNav from 'container/LogsTopNav';
|
2023-08-30 20:24:16 +05:30
|
|
|
import { DataSource } from 'types/common/queryBuilder';
|
2023-06-16 13:38:39 +03:00
|
|
|
|
2023-07-07 15:49:35 +03:00
|
|
|
import { WrapperStyled } from './styles';
|
2023-06-16 13:38:39 +03:00
|
|
|
|
2023-06-23 21:39:59 +03:00
|
|
|
function LogsExplorer(): JSX.Element {
|
2023-06-16 13:38:39 +03:00
|
|
|
return (
|
2023-08-29 15:23:22 +03:00
|
|
|
<>
|
|
|
|
|
<LogsTopNav />
|
|
|
|
|
<WrapperStyled>
|
|
|
|
|
<Row gutter={[0, 16]}>
|
|
|
|
|
<Col xs={24}>
|
2023-08-30 20:24:16 +05:30
|
|
|
<ExplorerCard sourcepage={DataSource.LOGS}>
|
2023-08-29 15:23:22 +03:00
|
|
|
<LogExplorerQuerySection />
|
|
|
|
|
</ExplorerCard>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col xs={24}>
|
|
|
|
|
<LogsExplorerViews />
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</WrapperStyled>
|
|
|
|
|
</>
|
2023-06-16 13:38:39 +03:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-23 21:39:59 +03:00
|
|
|
export default LogsExplorer;
|