+
+ (
+
+ {flyoutComponent}
+
+ {bottomBarComponent}
+
+ )}
+ />
+
+
+ );
+};
diff --git a/x-pack/plugins/monitoring/public/application/pages/logstash/overview.tsx b/x-pack/plugins/monitoring/public/application/pages/logstash/overview.tsx
new file mode 100644
index 0000000000000..1edbe5cf71e7d
--- /dev/null
+++ b/x-pack/plugins/monitoring/public/application/pages/logstash/overview.tsx
@@ -0,0 +1,84 @@
+/*
+ * 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 } from 'react';
+import { i18n } from '@kbn/i18n';
+import { find } from 'lodash';
+import { useKibana } from '../../../../../../../src/plugins/kibana_react/public';
+import { GlobalStateContext } from '../../global_state_context';
+import { ComponentProps } from '../../route_init';
+import { useCharts } from '../../hooks/use_charts';
+// @ts-ignore
+import { Overview } from '../../../components/logstash/overview';
+import { LogstashTemplate } from './logstash_template';
+
+export const LogStashOverviewPage: React.FC