diff --git a/x-pack/legacy/plugins/monitoring/common/constants.js b/x-pack/legacy/plugins/monitoring/common/constants.js
index 2ccce3de7a6a5..9824614113094 100644
--- a/x-pack/legacy/plugins/monitoring/common/constants.js
+++ b/x-pack/legacy/plugins/monitoring/common/constants.js
@@ -4,8 +4,6 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { i18n } from '@kbn/i18n';
-
/**
* Helper string to add as a tag in every logging call
*/
@@ -133,16 +131,6 @@ export const LOGSTASH = {
}
};
-export const DEFAULT_NO_DATA_MESSAGE = i18n.translate('xpack.monitoring.defaultNoDataMessage', {
- defaultMessage: 'There are no records that match your query. Try changing the time range selection.' });
-export const DEFAULT_NO_DATA_MESSAGE_WITH_FILTER = i18n.translate('xpack.monitoring.defaultNoDataWithFilterMessage', {
- defaultMessage:
- 'There are no records that match your query with the filter [{filter}]. Try changing the filter or the time range selection.',
- values: { filter: '{{FILTER}}' } });
-
-export const TABLE_ACTION_UPDATE_FILTER = 'UPDATE_FILTER';
-export const TABLE_ACTION_RESET_PAGING = 'RESET_PAGING';
-
export const DEBOUNCE_SLOW_MS = 17; // roughly how long it takes to render a frame at 60fps
export const DEBOUNCE_FAST_MS = 10; // roughly how long it takes to render a frame at 100fps
diff --git a/x-pack/legacy/plugins/monitoring/public/components/elasticsearch/indices/system_indices_checkbox.js b/x-pack/legacy/plugins/monitoring/public/components/elasticsearch/indices/system_indices_checkbox.js
deleted file mode 100644
index 4d341f00b4c93..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/elasticsearch/indices/system_indices_checkbox.js
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React from 'react';
-import {
- KuiToolBarSection,
- KuiToolBarText,
-} from '@kbn/ui-framework/components';
-import {
- EuiSwitch,
-} from '@elastic/eui';
-import { TABLE_ACTION_RESET_PAGING } from '../../../../common/constants';
-import { FormattedMessage } from '@kbn/i18n/react';
-
-export class SystemIndicesCheckbox extends React.Component {
- constructor(props) {
- super(props);
- this.state = { showSystemIndices: props.showSystemIndices };
- this.toggleShowSystemIndices = this.toggleShowSystemIndices.bind(this);
- }
- toggleShowSystemIndices(e) {
- const isChecked = Boolean(e.target.checked);
- this.setState({ showSystemIndices: isChecked });
- this.props.toggleShowSystemIndices(isChecked);
- this.props.dispatchTableAction(TABLE_ACTION_RESET_PAGING);
- }
- render() {
- return (
-
-
-
- )}
- onChange={this.toggleShowSystemIndices}
- checked={this.state.showSystemIndices}
- />
-
-
- );
- }
-}
diff --git a/x-pack/legacy/plugins/monitoring/public/components/logstash/node/index.js b/x-pack/legacy/plugins/monitoring/public/components/logstash/node/index.js
deleted file mode 100644
index b219992287408..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/logstash/node/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-export { Node } from './node';
diff --git a/x-pack/legacy/plugins/monitoring/public/components/logstash/node/node.js b/x-pack/legacy/plugins/monitoring/public/components/logstash/node/node.js
deleted file mode 100644
index 75e36d1b243c8..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/logstash/node/node.js
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React, { PureComponent } from 'react';
-import { EuiPage, EuiPageBody, EuiPageContent, EuiPanel, EuiSpacer, EuiFlexGrid, EuiFlexItem } from '@elastic/eui';
-import { DetailStatus } from '../detail_status';
-import { MonitoringTimeseriesContainer } from '../../chart';
-
-export class Node extends PureComponent {
- render() {
- const { stats, metrics, ...rest } = this.props;
-
- const metricsToShow = [
- metrics.logstash_events_input_rate,
- metrics.logstash_jvm_usage,
- metrics.logstash_events_output_rate,
- metrics.logstash_node_cpu_metric,
- metrics.logstash_events_latency,
- metrics.logstash_os_load,
- ];
-
- return (
-
-
-
-
-
-
-
-
- {metricsToShow.map((metric, index) => (
-
-
-
-
- ))}
-
-
-
-
- );
- }
-}
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/_table.scss b/x-pack/legacy/plugins/monitoring/public/components/table/_table.scss
index 5d3b0db28c10a..9995a8bf8350a 100644
--- a/x-pack/legacy/plugins/monitoring/public/components/table/_table.scss
+++ b/x-pack/legacy/plugins/monitoring/public/components/table/_table.scss
@@ -3,9 +3,6 @@
* The .monitoringTable class is on the KuiControlledTable instance.
* The table within it requires the shrinkToContent flag as well as width set to 100%
*/
-.monTable .kuiTable {
- width: 100%;
-}
.monTableCell__clusterCellExpired,
.monTableCell__offline {
@@ -21,8 +18,7 @@
}
.monTableCell__name,
-.monTableCell__status,
-.monTableCell__version {
+.monTableCell__status {
@include euiFontSizeM;
}
@@ -43,22 +39,3 @@
.monTableCell__splitNumber {
@include euiFontSizeM;
}
-
-.monTableCell__metricCellMetric {
- display: inline-block;
- @include euiFontSizeXL;
-}
-
-.monTableCell__metricCellSlopeArrow {
- display: inline-block;
- margin-left: $euiSizeXS;
- @include euiFontSizeXL;
-}
-
-.monTableCell__metricCellMixMax {
- display: inline-block;
- text-align: right;
- margin-left: $euiSizeXS;
- color: $euiColorDarkShade;
- @include euiFontSizeS;
-}
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/footer.js b/x-pack/legacy/plugins/monitoring/public/components/table/footer.js
deleted file mode 100644
index 8a54a3782c2b3..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/table/footer.js
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React from 'react';
-import {
- KuiToolBarFooter,
- KuiToolBarFooterSection,
- KuiToolBarText
-} from '@kbn/ui-framework/components';
-import { FormattedMessage } from '@kbn/i18n/react';
-
-export function MonitoringTableFooter({ pageIndexFirstRow, pageIndexLastRow, rowsFiltered, paginationControls }) {
- return (
-
-
-
-
-
-
- { paginationControls }
-
-
- );
-}
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/index.js b/x-pack/legacy/plugins/monitoring/public/components/table/index.js
index 85900144cd57f..d807352ff14c8 100644
--- a/x-pack/legacy/plugins/monitoring/public/components/table/index.js
+++ b/x-pack/legacy/plugins/monitoring/public/components/table/index.js
@@ -4,6 +4,5 @@
* you may not use this file except in compliance with the Elastic License.
*/
-export { MonitoringTable } from './table';
export { EuiMonitoringTable } from './eui_table';
export { tableStorageGetter, tableStorageSetter, euiTableStorageGetter, euiTableStorageSetter } from './storage';
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/no_data.js b/x-pack/legacy/plugins/monitoring/public/components/table/no_data.js
deleted file mode 100644
index 0f0a059fa03cf..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/table/no_data.js
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React from 'react';
-import {
- KuiEmptyTablePromptPanel,
- KuiTableInfo
-} from '@kbn/ui-framework/components';
-
-export function MonitoringTableNoData({ message }) {
- return (
-
-
- { message }
-
-
- );
-}
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/table.js b/x-pack/legacy/plugins/monitoring/public/components/table/table.js
deleted file mode 100644
index b016e2a59b680..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/table/table.js
+++ /dev/null
@@ -1,476 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React from 'react';
-import { camelCase, isEqual, sortByOrder, get, includes } from 'lodash';
-import {
- DEFAULT_NO_DATA_MESSAGE,
- DEFAULT_NO_DATA_MESSAGE_WITH_FILTER,
- TABLE_ACTION_UPDATE_FILTER,
- TABLE_ACTION_RESET_PAGING,
-} from '../../../common/constants';
-import {
- KuiControlledTable,
- KuiPagerButtonGroup,
- KuiTable,
- KuiTableHeaderCell
-} from '@kbn/ui-framework/components';
-import { MonitoringTableToolBar } from './toolbar';
-import { MonitoringTableNoData } from './no_data';
-import { MonitoringTableFooter } from './footer';
-import classNames from 'classnames';
-import { FormattedMessage } from '@kbn/i18n/react';
-import { i18n } from '@kbn/i18n';
-
-/*
- * State and data management for Monitoring Tables
- * To be used when all the data is loaded at once and must be paged in the browser
- * - Sort the data
- * - Show the data
- * - Allow the user to change how the data is sorted
- * - Allow the user to filter the data
- * - Allow the user to page through the data
- *
- * Guide to column configuration:
- * const columns = [
- * {
- * title: 'Name', // visible title string
- * sortKey: 'metadata.name', // sorting this column sorts by the `metadata.name` field in the data
- * secondarySortOrder: 1, // optional field, makes the column secondarily sorted by default
- * },
- * {
- * title: 'Status', // visible title string
- * sortKey: 'status', // sorting this column sorts by the `metadata.name` field in the data
- * sortOrder: -1, // optional field, makes the column sorted by default
- * }
- * ];
- */
-export class MonitoringTable extends React.Component {
- constructor(props) {
- super(props);
-
- let sortKey = props.sortKey;
- let sortOrder = props.sortOrder;
- if (props.sortKey === undefined || props.sortOrder === undefined) {
- // find the col to sort by per table config
- const defaultSortColumn = props.columns.find(c => c.hasOwnProperty('sortOrder'));
- sortKey = defaultSortColumn ? defaultSortColumn.sortKey : null;
- sortOrder = defaultSortColumn ? defaultSortColumn.sortOrder : null;
- }
-
- // find the secondary col to sort by per table config
- const secondarySortColumn = props.columns.find(c => c.hasOwnProperty('secondarySortOrder'));
- const secondarySortKey = secondarySortColumn ? secondarySortColumn.sortKey : null;
- const secondarySortOrder = secondarySortColumn ? secondarySortColumn.secondarySortOrder : null;
-
- this.state = {
- rows: props.rows,
- sortKey,
- sortOrder,
- secondarySortKey,
- secondarySortOrder,
- filterText: props.filterText || '',
- pageIndex: props.pageIndex || 1
- };
-
- this.paginationOnPrevious = this.paginationOnPrevious.bind(this);
- this.paginationOnNext = this.paginationOnNext.bind(this);
- this.onFilterChange = this.onFilterChange.bind(this);
- this.dispatchTableAction = this.dispatchTableAction.bind(this);
- }
-
- setFilter(filterText) {
- this.setState(prevState => {
- const newState = {
- ...prevState,
- pageIndex: 1,
- filterText
- };
-
- this.onNewState(newState);
- return newState;
- });
- }
-
- resetPaging() {
- this.setState(prevState => {
- const newState = {
- ...prevState,
- pageIndex: 1
- };
-
- this.onNewState(newState);
- return newState;
- });
- }
-
- /*
- * This function is passed to child components, and called when something in
- * this state needs to change
- * @param {String} action - A constant to identify the action
- * @param {Any} value - Payload data for the action, if any is needed
- */
- dispatchTableAction(action, value) {
- // handle the action
- switch (action) {
- case TABLE_ACTION_UPDATE_FILTER:
- this.setFilter(value);
- break;
- case TABLE_ACTION_RESET_PAGING:
- this.resetPaging();
- break;
- default:
- throw new Error(
- i18n.translate('xpack.monitoring.table.unknownTableActionTypeErrorMessage', {
- defaultMessage: `Unknown table action type {action}! This shouldn't happen!`,
-
- values: {
- action
- }
- })
- );
- }
- }
-
- /*
- * Handle an interaction in the UI by calling to the external function (from
- * angular controller) that does something extra
- */
- onNewState(newState) {
- if (this.props.onNewState) {
- this.props.onNewState(newState); // call top-level function
- }
- }
-
- shouldComponentUpdate(nextProps, nextState) {
- const diffRows = !isEqual(nextProps.rows, this.props.rows);
- const diffState = !isEqual(nextState, this.state);
-
- if (diffRows || diffState) {
- return true;
- }
- return false;
- }
-
- componentWillReceiveProps({ rows }) {
- // Any prop change will cause a re-render, as long as it's the `rows` prop :)
- this.setState({ rows });
- }
-
- /*
- * Return true if the row matches the filter value
- * @param {Object} row - Data object for which the table is configured to display
- */
- checkRowFilterMatch(row) {
- const values = this.props.filterFields.map(field => get(row, field)); // find the values of the filterable fields
- return includes(values.join(' ').toLowerCase(), this.state.filterText.toLowerCase());
- }
-
- /*
- * Return a filtered set of rows that have data that match the filter text
- * @param {Array} rows
- */
- getFilteredRows(rows = []) {
- if (!this.state.filterText) {
- return rows; // filter is cleared, no rows are filtered out
- }
- return rows.filter(row => this.checkRowFilterMatch(row));
- }
-
- /*
- * Handle UI event of entering text in the Filter text input box
- * @param {Object} event - UI event data
- */
- onFilterChange(filterText) {
- this.setFilter(filterText);
- }
-
- paginationHasPrevious() {
- return this.state.pageIndex > 1;
- }
-
- paginationOnPrevious() {
- this.setState(prevState => {
- const newState = {
- ...prevState,
- pageIndex: prevState.pageIndex - 1
- };
-
- this.onNewState(newState);
- return newState;
- });
-
- }
-
- paginationHasNext(numAvailableRows) {
- const pageIndex = this.state.pageIndex;
- const numPages = Math.ceil(numAvailableRows / this.props.rowsPerPage);
- return pageIndex < numPages;
- }
-
- paginationOnNext() {
- this.setState(prevState => {
- const newState = {
- ...prevState,
- pageIndex: prevState.pageIndex + 1
- };
-
- this.onNewState(newState);
- return newState;
- });
- }
-
- /*
- * @param {Number} numAvailableRows - total number of rows in the table
- */
- getPaginationControls(numAvailableRows, alwaysShowPageControls) {
- let shouldShow = false;
- if (this.isPaginationRequired(numAvailableRows) || alwaysShowPageControls) {
- shouldShow = true;
- }
-
- if (!shouldShow) {
- return null;
- }
-
- const hasPrevious = this.paginationHasPrevious();
- const hasNext = this.paginationHasNext(numAvailableRows);
-
- return (
-
- );
- }
-
- calculateFirstRow() {
- return (this.state.pageIndex * this.props.rowsPerPage) - this.props.rowsPerPage;
- }
-
- /*
- * @param {Array} visibleRows - rows of data after they've been filtered and sorted
- * @param {Number} numAvailableRows - number of rows total on all the pages
- */
- getToolBar(numVisibleRows, numAvailableRows) {
- const firstRow = this.calculateFirstRow();
-
- return (
-
- );
- }
-
- /*
- * Update state based on how the user wants to sort/resort data per column sorting
- * Note: secondary sort is not apparent to the user through icons. Secondary
- * sort order is discarded when the user changes the sorting state.
- * @param {Object} col - Column configuration object
- */
- setSortColumn({ sortKey }) {
- // clicking the column that is already sorted reverses the sort order
- this.setState(prevState => {
- let newSortOrder;
-
- if (sortKey === this.state.sortKey) {
- // same column, reverse the sort
- newSortOrder = prevState.sortOrder * -1;
- } else {
- // new column, set to ASC sort
- newSortOrder = 1;
- }
-
- const newState = {
- ...prevState,
- sortOrder: newSortOrder,
- sortKey
- };
-
- this.onNewState(newState);
- return newState;
- });
- }
-
- /*
- * Render the table header cells
- */
- getTableHeader() {
- return this.props.columns.map(col => {
- const headerCellProps = {};
- if (col.headerCellProps) {
- Object.assign(headerCellProps, col.headerCellProps);
- }
-
- const colKey = camelCase(col.title);
- // if onSort is null, then col is not sortable
- return (
- 0 : true}
- data-test-subj={`tableHeaderCell-${colKey}`}
- {...headerCellProps}
- >
- { col.title }
-
- );
- });
- }
-
- /*
- * @param {Array} visibleRows - rows of data after they've been filtered and sorted
- * @param {Number} numAvailableRows - number of rows total on all the pages
- */
- getFooter(numVisibleRows, numAvailableRows, alwaysShowPageControls) {
- if (!this.isPaginationRequired(numAvailableRows)) {
- return null;
- }
-
- const firstRow = this.calculateFirstRow();
- return (
-
- );
- }
-
- /*
- * @param {Array} rows - rows of data that need to be sorted
- */
- sortRows(rows = []) {
- if (!this.state.sortKey) {
- return rows;
- }
-
- const _sortOrder = this.state.sortOrder > 0 ? 'asc' : 'desc';
- let _secondarySortOrder;
- if (this.state.secondarySortOrder) {
- _secondarySortOrder = this.state.secondarySortOrder > 0 ? 'asc' : 'desc';
- }
-
- return sortByOrder(rows, [this.state.sortKey, this.state.secondarySortKey], [_sortOrder, _secondarySortOrder]);
- }
-
- /*
- * Filter the rows, sort the rows, get the rows to show for the current page
- * Important: Should be only called from render
- * @param {Array} rows - rows of data for which the table is meant to display
- */
- getVisibleRows(rows) {
- // [1] filter the rows
- const filteredRows = this.getFilteredRows(rows);
- const numAvailableRows = filteredRows.length;
- // [2] sort the filtered rows
- const sortedRows = this.sortRows(filteredRows);
- // [3] paginate the sorted filtered rows
- const firstRow = this.calculateFirstRow();
- const visibleRows = sortedRows.slice(firstRow, firstRow + this.props.rowsPerPage) || [];
-
- return {
- numAvailableRows,
- visibleRows
- };
- }
-
- isPaginationRequired(numAvailableRows) {
- const hasPrevious = this.paginationHasPrevious();
- const hasNext = this.paginationHasNext(numAvailableRows);
-
- return hasPrevious || hasNext;
- }
-
- isSearchBoxShown() {
- return Boolean(this.props.filterFields) && (this.props.filterFields.length > 0);
- }
-
- render() {
- const classes = classNames(this.props.className, 'monTable');
-
- let table; // This will come out to either be the KuiTable or a "No Data" message
-
- // guard the possibility that rows are null (data is loading)
- const { visibleRows, numAvailableRows } = this.getVisibleRows(this.state.rows || []);
- const numVisibleRows = visibleRows.length;
-
- if (this.state.rows === null) {
- // rows are null, show loading message
- table = (
- )}
- />);
- } else if (numVisibleRows > 0) {
- // data has some rows, show them
- const RowComponent = this.props.rowComponent;
- const tBody = visibleRows.map((rowData, rowIndex) => {
- return (
-
- );
- });
-
- table = (
-
-
-
- { this.getTableHeader() }
-
-
-
- { tBody }
-
-
- );
- } else {
- table = ;
- }
-
- return (
-
- { this.getToolBar(numVisibleRows, numAvailableRows) }
- { table }
- { this.getFooter(numVisibleRows, numAvailableRows, this.props.alwaysShowPageControls) }
-
- );
- }
-}
-
-const defaultGetNoDataMessage = filterText => {
- if (filterText) {
- return DEFAULT_NO_DATA_MESSAGE_WITH_FILTER.replace('{{FILTER}}', filterText.trim());
- }
- return DEFAULT_NO_DATA_MESSAGE;
-};
-
-MonitoringTable.defaultProps = {
- rows: [],
- filterFields: [],
- getNoDataMessage: defaultGetNoDataMessage,
- alwaysShowPageControls: false,
- rowsPerPage: 20
-};
diff --git a/x-pack/legacy/plugins/monitoring/public/components/table/toolbar.js b/x-pack/legacy/plugins/monitoring/public/components/table/toolbar.js
deleted file mode 100644
index 5f75a1898f1f0..0000000000000
--- a/x-pack/legacy/plugins/monitoring/public/components/table/toolbar.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import { noop } from 'lodash';
-import React from 'react';
-import {
- KuiToolBar,
- KuiToolBarSearchBox,
- KuiToolBarSection,
- KuiToolBarText
-} from '@kbn/ui-framework/components';
-import { FormattedMessage } from '@kbn/i18n/react';
-
-export function MonitoringTableToolBar(props) {
- const searchBox = props.showSearchBox
- ? (
-
- )
- : null;
-
- const paginationSection = Boolean(props.paginationControls)
- ? (
-
-
- { props.pageIndexFirstRow } – { props.pageIndexLastRow } of { props.rowsFiltered }
-
-
- { props.paginationControls }
-
- )
- : null;
-
- const totalRows = Boolean(props.showTotalRows)
- ? (
-
-
-
- )
- : null;
-
- return (
-
- { searchBox }
- { totalRows }
- { props.renderToolBarSections(props) }
- { paginationSection }
-
- );
-}
-MonitoringTableToolBar.defaultProps = {
- renderToolBarSections: noop,
- showSearchBox: true,
- showTotalRows: true
-};
diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json
index abac338aa35af..e98ef3fb68d56 100644
--- a/x-pack/plugins/translations/translations/ja-JP.json
+++ b/x-pack/plugins/translations/translations/ja-JP.json
@@ -7603,8 +7603,6 @@
"xpack.monitoring.clustersNavigation.clustersLinkText": "クラスター",
"xpack.monitoring.clusterStats.uuidNotFoundErrorMessage": "選択された時間範囲にクラスターが見つかりませんでした。UUID: {clusterUuid}",
"xpack.monitoring.clusterStats.uuidNotSpecifiedErrorMessage": "{clusterUuid} が指定されていません",
- "xpack.monitoring.defaultNoDataMessage": "クエリに一致する記録がありません。時間範囲を変更してみてください。",
- "xpack.monitoring.defaultNoDataWithFilterMessage": "フィルター [{filter}] でクエリに一致する記録がありません。時間範囲を変更してみてください。",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.errorColumnTitle": "エラー",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.followsColumnTitle": "フォロー",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.indexColumnTitle": "インデックス",
@@ -8484,10 +8482,6 @@
"xpack.monitoring.summaryStatus.statusDescription": "ステータス",
"xpack.monitoring.summaryStatus.statusIconLabel": "ステータス: {status}",
"xpack.monitoring.summaryStatus.statusIconTitle": "ステータス: {statusIcon}",
- "xpack.monitoring.table.footer.pageRowsDescription": "{pageIndexFirstRow} – {pageIndexLastRow} / {rowsFiltered}",
- "xpack.monitoring.table.loadingTitle": "読み込み中…",
- "xpack.monitoring.table.toolbar.totalRowsDescription": "合計 {totalRows}",
- "xpack.monitoring.table.unknownTableActionTypeErrorMessage": "不明な表アクションタイプ {action}!こんなことが起こるはずはありません!",
"xpack.monitoring.uiExportsDescription": "Elastic Stack の監視です",
"xpack.remoteClusters.addAction.clusterNameAlreadyExistsErrorMessage": "「{clusterName}」という名前のクラスターが既に存在します。",
"xpack.remoteClusters.addAction.errorTitle": "クラスターの追加中にエラーが発生",
diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json
index 7cbd1feadc3ab..65a83344d9c47 100644
--- a/x-pack/plugins/translations/translations/zh-CN.json
+++ b/x-pack/plugins/translations/translations/zh-CN.json
@@ -7746,8 +7746,6 @@
"xpack.monitoring.clustersNavigation.clustersLinkText": "集群",
"xpack.monitoring.clusterStats.uuidNotFoundErrorMessage": "在选定时间范围内找不到该集群。UUID:{clusterUuid}",
"xpack.monitoring.clusterStats.uuidNotSpecifiedErrorMessage": "{clusterUuid} 未指定",
- "xpack.monitoring.defaultNoDataMessage": "没有记录匹配您的查询。请尝试更改时间范围选择。",
- "xpack.monitoring.defaultNoDataWithFilterMessage": "在使用筛选 “[{filter}]” 的情况下,没有记录匹配您的查询。请尝试更改筛选或所选时间范围。",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.errorColumnTitle": "错误",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.followsColumnTitle": "跟随",
"xpack.monitoring.elasticsearch.ccr.ccrListingTable.indexColumnTitle": "索引",
@@ -8627,10 +8625,6 @@
"xpack.monitoring.summaryStatus.statusDescription": "状态",
"xpack.monitoring.summaryStatus.statusIconLabel": "状态:{status}",
"xpack.monitoring.summaryStatus.statusIconTitle": "状态:{statusIcon}",
- "xpack.monitoring.table.footer.pageRowsDescription": "{pageIndexFirstRow} – {pageIndexLastRow},共 {rowsFiltered}",
- "xpack.monitoring.table.loadingTitle": "正在加载……",
- "xpack.monitoring.table.toolbar.totalRowsDescription": "合计 {totalRows}",
- "xpack.monitoring.table.unknownTableActionTypeErrorMessage": "未知表操作类型 {action}!这不应该发生!",
"xpack.monitoring.uiExportsDescription": "Elastic Stack 的 Monitoring 组件",
"xpack.remoteClusters.addAction.clusterNameAlreadyExistsErrorMessage": "名为 “{clusterName}” 的集群已存在。",
"xpack.remoteClusters.addAction.errorTitle": "添加集群时出错",