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

Remove use of beats_stats.metrics.apm-server.server.response.errors.concurrency #187882

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 0 additions & 15 deletions x-pack/plugins/monitoring/server/lib/metrics/apm/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,21 +318,6 @@ export const metrics = {
}
),
}),
apm_responses_errors_concurrency: new ApmEventsRateClusterMetric({
field: 'beats_stats.metrics.apm-server.server.response.errors.concurrency',
title: i18n.translate('xpack.monitoring.metrics.apm.responseErrors.concurrencyTitle', {
defaultMessage: 'Concurrency',
}),
label: i18n.translate('xpack.monitoring.metrics.apm.responseErrors.concurrencyLabel', {
defaultMessage: 'Concurrency',
}),
description: i18n.translate(
'xpack.monitoring.metrics.apm.responseErrors.concurrencyDescription',
{
defaultMessage: 'HTTP Requests rejected due to overall concurrency limit breach',
}
),
}),
apm_responses_errors_closed: new ApmEventsRateClusterMetric({
field: 'beats_stats.metrics.apm-server.server.response.errors.closed',
title: i18n.translate('xpack.monitoring.metrics.apm.responseErrors.closedTitle', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const metricSet: NamedMetricDescriptor[] = [
'apm_responses_errors_queue',
'apm_responses_errors_decode',
'apm_responses_errors_forbidden',
'apm_responses_errors_concurrency',
'apm_responses_errors_closed',
'apm_responses_errors_internal',
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const metricSet: NamedMetricDescriptor[] = [
'apm_responses_errors_queue',
'apm_responses_errors_decode',
'apm_responses_errors_forbidden',
'apm_responses_errors_concurrency',
'apm_responses_errors_closed',
'apm_responses_errors_internal',
],
Expand Down
3 changes: 0 additions & 3 deletions x-pack/plugins/translations/translations/fr-FR.json
Original file line number Diff line number Diff line change
Expand Up @@ -28881,9 +28881,6 @@
"xpack.monitoring.metrics.apm.responseErrors.closedDescription": "Requêtes HTTP rejetées lors de l'arrêt du serveur",
"xpack.monitoring.metrics.apm.responseErrors.closedLabel": "Fermé",
"xpack.monitoring.metrics.apm.responseErrors.closedTitle": "Fermé",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyDescription": "Requêtes HTTP rejetées en raison d'une violation des limites de simultanéité globale",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyLabel": "Simultanéité",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyTitle": "Simultanéité",
"xpack.monitoring.metrics.apm.responseErrors.decodeDescription": "Requêtes HTTP rejetées en raison d'erreurs de décodage - json non valide, type de données incorrect pour l'entité",
"xpack.monitoring.metrics.apm.responseErrors.decodeLabel": "Décoder",
"xpack.monitoring.metrics.apm.responseErrors.decodeTitle": "Décoder",
Expand Down
3 changes: 0 additions & 3 deletions x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -28858,9 +28858,6 @@
"xpack.monitoring.metrics.apm.responseErrors.closedDescription": "サーバーのシャットダウン中に拒否された HTTP リクエストです",
"xpack.monitoring.metrics.apm.responseErrors.closedLabel": "終了",
"xpack.monitoring.metrics.apm.responseErrors.closedTitle": "終了",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyDescription": "全体的な同時実行制限を超えたため拒否された HTTP リクエストです",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyLabel": "同時実行",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyTitle": "同時実行",
"xpack.monitoring.metrics.apm.responseErrors.decodeDescription": "デコードエラーのためHTTPリクエストが拒否されました - 無効な JSON、エンティティに対し誤ったデータ型",
"xpack.monitoring.metrics.apm.responseErrors.decodeLabel": "デコード",
"xpack.monitoring.metrics.apm.responseErrors.decodeTitle": "デコード",
Expand Down
3 changes: 0 additions & 3 deletions x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -28898,9 +28898,6 @@
"xpack.monitoring.metrics.apm.responseErrors.closedDescription": "服务器关闭期间拒绝的 HTTP 请求",
"xpack.monitoring.metrics.apm.responseErrors.closedLabel": "已关闭",
"xpack.monitoring.metrics.apm.responseErrors.closedTitle": "已关闭",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyDescription": "由于违反总体并发限制而拒绝的 HTTP 请求",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyLabel": "并发",
"xpack.monitoring.metrics.apm.responseErrors.concurrencyTitle": "并发",
"xpack.monitoring.metrics.apm.responseErrors.decodeDescription": "由于解码错误而拒绝的 HTTP 请求 - json 无效、实体的数据类型不正确",
"xpack.monitoring.metrics.apm.responseErrors.decodeLabel": "解码",
"xpack.monitoring.metrics.apm.responseErrors.decodeTitle": "解码",
Expand Down
Loading