Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Synthetics] Remove dead code #193335

Merged
merged 4 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@

import { i18n } from '@kbn/i18n';

export const URL_LABEL = i18n.translate('xpack.synthetics.monitorList.table.url.name', {
defaultMessage: 'Url',
});

export const TAGS_LABEL = i18n.translate('xpack.synthetics.monitorList.table.tags.name', {
defaultMessage: 'Tags',
});

export const PROJECT_LABEL = i18n.translate('xpack.synthetics.monitorList.table.project.name', {
defaultMessage: 'Project ID',
});

export const STATUS_UP_LABEL = i18n.translate('xpack.synthetics.monitorList.statusColumn.upLabel', {
defaultMessage: 'Up',
});
Expand All @@ -29,29 +17,3 @@ export const STATUS_DOWN_LABEL = i18n.translate(
defaultMessage: 'Down',
}
);

export const STATUS_COMPLETE_LABEL = i18n.translate(
'xpack.synthetics.monitorList.statusColumn.completeLabel',
{
defaultMessage: 'Complete',
}
);

export const STATUS_FAILED_LABEL = i18n.translate(
'xpack.synthetics.monitorList.statusColumn.failedLabel',
{
defaultMessage: 'Failed',
}
);

export const SECONDS_LABEL = i18n.translate('xpack.synthetics.seconds.label', {
defaultMessage: 'seconds',
});

export const SEC_LABEL = i18n.translate('xpack.synthetics.seconds.shortForm.label', {
defaultMessage: 'sec',
});

export const MS_LABEL = i18n.translate('xpack.synthetics.millisecond.abbreviation.label', {
defaultMessage: 'ms',
});

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
* 2.0.
*/

export * from './cert_refresh_btn';
export * from './cert_monitors';
export * from './cert_search';
export * from './cert_status';
export * from './certificates';
export * from './certificates_list';
export * from './certificate_title';
export * from './fingerprint_col';

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,6 @@ export const WEBSITE_URL_LABEL = i18n.translate(
}
);

export const WEBSITE_URL_PLACEHOLDER = i18n.translate(
'xpack.synthetics.monitorManagement.websiteUrlPlaceholder',
{
defaultMessage: 'Enter a website URL',
}
);

export const WEBSITE_URL_HELP_TEXT = i18n.translate(
'xpack.synthetics.monitorManagement.websiteUrlHelpText',
{
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading