rails_error_dashboard 0.8.3 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +35 -0
- data/app/controllers/rails_error_dashboard/application_controller.rb +156 -0
- data/app/controllers/rails_error_dashboard/errors_controller.rb +95 -73
- data/app/controllers/rails_error_dashboard/locales_controller.rb +87 -0
- data/app/helpers/rails_error_dashboard/application_helper.rb +20 -14
- data/app/helpers/rails_error_dashboard/backtrace_helper.rb +15 -6
- data/app/helpers/rails_error_dashboard/i18n_helper.rb +154 -0
- data/app/helpers/rails_error_dashboard/mailer_i18n_helper.rb +69 -0
- data/app/helpers/rails_error_dashboard/overview_helper.rb +18 -6
- data/app/helpers/rails_error_dashboard/user_agent_helper.rb +25 -11
- data/app/jobs/rails_error_dashboard/application_job.rb +5 -0
- data/app/jobs/rails_error_dashboard/baseline_alert_job.rb +18 -16
- data/app/jobs/rails_error_dashboard/concerns/localized_job.rb +83 -0
- data/app/jobs/rails_error_dashboard/discord_error_notification_job.rb +4 -2
- data/app/jobs/rails_error_dashboard/email_error_notification_job.rb +4 -2
- data/app/jobs/rails_error_dashboard/pagerduty_error_notification_job.rb +6 -2
- data/app/jobs/rails_error_dashboard/scheduled_digest_job.rb +8 -3
- data/app/jobs/rails_error_dashboard/slack_error_notification_job.rb +6 -4
- data/app/jobs/rails_error_dashboard/storm_notification_job.rb +26 -8
- data/app/jobs/rails_error_dashboard/webhook_error_notification_job.rb +4 -2
- data/app/mailers/rails_error_dashboard/application_mailer.rb +14 -0
- data/app/mailers/rails_error_dashboard/digest_mailer.rb +18 -2
- data/app/mailers/rails_error_dashboard/error_notification_mailer.rb +19 -2
- data/app/views/layouts/rails_error_dashboard.html.erb +255 -92
- data/app/views/rails_error_dashboard/digest_mailer/digest_summary.html.erb +23 -22
- data/app/views/rails_error_dashboard/digest_mailer/digest_summary.text.erb +30 -19
- data/app/views/rails_error_dashboard/error_notification_mailer/error_alert.html.erb +18 -16
- data/app/views/rails_error_dashboard/error_notification_mailer/error_alert.text.erb +21 -14
- data/app/views/rails_error_dashboard/errors/_ai_help_panel.html.erb +11 -7
- data/app/views/rails_error_dashboard/errors/_breadcrumbs_group.html.erb +45 -38
- data/app/views/rails_error_dashboard/errors/_co_occurring_errors.html.erb +17 -14
- data/app/views/rails_error_dashboard/errors/_discussion.html.erb +27 -9
- data/app/views/rails_error_dashboard/errors/_error_cascades.html.erb +25 -21
- data/app/views/rails_error_dashboard/errors/_error_info.html.erb +25 -22
- data/app/views/rails_error_dashboard/errors/_error_row.html.erb +24 -12
- data/app/views/rails_error_dashboard/errors/_instance_variables.html.erb +12 -11
- data/app/views/rails_error_dashboard/errors/_issue_section.html.erb +19 -13
- data/app/views/rails_error_dashboard/errors/_llm_summary.html.erb +14 -14
- data/app/views/rails_error_dashboard/errors/_local_variables.html.erb +8 -8
- data/app/views/rails_error_dashboard/errors/_modals.html.erb +60 -52
- data/app/views/rails_error_dashboard/errors/_pattern_insights.html.erb +59 -49
- data/app/views/rails_error_dashboard/errors/_request_context.html.erb +23 -20
- data/app/views/rails_error_dashboard/errors/_show_scripts.html.erb +14 -14
- data/app/views/rails_error_dashboard/errors/_sidebar_metadata.html.erb +118 -93
- data/app/views/rails_error_dashboard/errors/_similar_errors.html.erb +18 -12
- data/app/views/rails_error_dashboard/errors/_source_code.html.erb +20 -5
- data/app/views/rails_error_dashboard/errors/_stats.html.erb +5 -5
- data/app/views/rails_error_dashboard/errors/_timeline.html.erb +7 -7
- data/app/views/rails_error_dashboard/errors/_user_errors_table.html.erb +15 -12
- data/app/views/rails_error_dashboard/errors/actioncable_health_summary.html.erb +25 -25
- data/app/views/rails_error_dashboard/errors/activestorage_health_summary.html.erb +28 -28
- data/app/views/rails_error_dashboard/errors/analytics.html.erb +82 -82
- data/app/views/rails_error_dashboard/errors/cache_health_summary.html.erb +27 -27
- data/app/views/rails_error_dashboard/errors/correlation.html.erb +61 -57
- data/app/views/rails_error_dashboard/errors/database_health_summary.html.erb +64 -65
- data/app/views/rails_error_dashboard/errors/deprecations.html.erb +23 -23
- data/app/views/rails_error_dashboard/errors/diagnostic_dumps.html.erb +48 -36
- data/app/views/rails_error_dashboard/errors/index.html.erb +121 -70
- data/app/views/rails_error_dashboard/errors/job_health_summary.html.erb +30 -30
- data/app/views/rails_error_dashboard/errors/llm_health_summary.html.erb +38 -39
- data/app/views/rails_error_dashboard/errors/n_plus_one_summary.html.erb +28 -25
- data/app/views/rails_error_dashboard/errors/overview.html.erb +45 -39
- data/app/views/rails_error_dashboard/errors/platform_comparison.html.erb +45 -44
- data/app/views/rails_error_dashboard/errors/rack_attack_summary.html.erb +39 -28
- data/app/views/rails_error_dashboard/errors/releases.html.erb +46 -47
- data/app/views/rails_error_dashboard/errors/settings/_value_badge.html.erb +48 -44
- data/app/views/rails_error_dashboard/errors/settings.html.erb +122 -112
- data/app/views/rails_error_dashboard/errors/show.html.erb +44 -37
- data/app/views/rails_error_dashboard/errors/storms.html.erb +30 -24
- data/app/views/rails_error_dashboard/errors/swallowed_exceptions.html.erb +26 -26
- data/app/views/rails_error_dashboard/errors/user_impact.html.erb +31 -30
- data/config/locales/de.yml +2007 -0
- data/config/locales/en.yml +2719 -0
- data/config/locales/es.yml +2079 -0
- data/config/locales/fr.yml +2082 -0
- data/config/locales/it.yml +2060 -0
- data/config/locales/ja.yml +1802 -0
- data/config/locales/pl.yml +2108 -0
- data/config/locales/pt-BR.yml +2064 -0
- data/config/locales/ru.yml +2109 -0
- data/config/locales/uk.yml +2106 -0
- data/config/locales/zh-CN.yml +1791 -0
- data/config/routes.rb +5 -0
- data/db/migrate/20260325000001_fix_swallowed_exceptions_index_for_mysql.rb +9 -3
- data/lib/rails_error_dashboard/commands/batch_delete_errors.rb +3 -1
- data/lib/rails_error_dashboard/commands/batch_mute_errors.rb +4 -2
- data/lib/rails_error_dashboard/commands/batch_resolve_errors.rb +4 -2
- data/lib/rails_error_dashboard/commands/batch_unmute_errors.rb +4 -2
- data/lib/rails_error_dashboard/commands/create_issue.rb +5 -3
- data/lib/rails_error_dashboard/commands/link_existing_issue.rb +4 -2
- data/lib/rails_error_dashboard/commands/log_error.rb +1 -1
- data/lib/rails_error_dashboard/configuration.rb +23 -0
- data/lib/rails_error_dashboard/current.rb +56 -0
- data/lib/rails_error_dashboard/i18n_store.rb +293 -0
- data/lib/rails_error_dashboard/private_backend.rb +213 -0
- data/lib/rails_error_dashboard/services/baseline_alert_payload_builder.rb +89 -22
- data/lib/rails_error_dashboard/services/digest_builder.rb +21 -7
- data/lib/rails_error_dashboard/services/discord_payload_builder.rb +27 -15
- data/lib/rails_error_dashboard/services/error_notification_dispatcher.rb +10 -5
- data/lib/rails_error_dashboard/services/localized_time_formatter.rb +117 -0
- data/lib/rails_error_dashboard/services/notification_helpers.rb +87 -4
- data/lib/rails_error_dashboard/services/pagerduty_payload_builder.rb +22 -5
- data/lib/rails_error_dashboard/services/slack_payload_builder.rb +48 -28
- data/lib/rails_error_dashboard/services/storm_protection/gate.rb +2 -1
- data/lib/rails_error_dashboard/services/webhook_payload_builder.rb +15 -1
- data/lib/rails_error_dashboard/translation.rb +39 -0
- data/lib/rails_error_dashboard/version.rb +1 -1
- data/lib/rails_error_dashboard.rb +4 -0
- data/lib/tasks/error_dashboard.rake +5 -1
- metadata +24 -4
|
@@ -0,0 +1,1791 @@
|
|
|
1
|
+
# RED dashboard translations — zh-CN
|
|
2
|
+
#
|
|
3
|
+
# MACHINE-TRANSLATED AND NOT REVIEWED BY A NATIVE SPEAKER.
|
|
4
|
+
# See docs/guides/TRANSLATIONS.md. Corrections are welcome, and a one-key
|
|
5
|
+
# pull request is a perfectly good pull request.
|
|
6
|
+
#
|
|
7
|
+
# Structure is derived from en.yml, which is authoritative. Do not add keys
|
|
8
|
+
# here that do not exist there — run bin/i18n-check after editing.
|
|
9
|
+
zh-CN:
|
|
10
|
+
red:
|
|
11
|
+
common:
|
|
12
|
+
not_available: 不适用
|
|
13
|
+
close: 关闭
|
|
14
|
+
unknown: 未知
|
|
15
|
+
severity:
|
|
16
|
+
critical: 严重
|
|
17
|
+
high: 高
|
|
18
|
+
medium: 中
|
|
19
|
+
low: 低
|
|
20
|
+
days_filter:
|
|
21
|
+
'7': 7 天
|
|
22
|
+
'14': 14 天
|
|
23
|
+
'30': 30 天
|
|
24
|
+
'90': 90 天
|
|
25
|
+
frame_category:
|
|
26
|
+
app: 你的代码
|
|
27
|
+
gem: Gem
|
|
28
|
+
framework: Rails 框架
|
|
29
|
+
ruby_core: Ruby 核心
|
|
30
|
+
unknown: 未知
|
|
31
|
+
trend:
|
|
32
|
+
increasing: 上升
|
|
33
|
+
decreasing: 下降
|
|
34
|
+
stable: 平稳
|
|
35
|
+
health_status:
|
|
36
|
+
healthy: "✅ 正常"
|
|
37
|
+
warning: "⚠️ 警告"
|
|
38
|
+
critical: "\U0001F534 严重"
|
|
39
|
+
device_type:
|
|
40
|
+
mobile: Mobile
|
|
41
|
+
tablet: Tablet
|
|
42
|
+
bot: Bot
|
|
43
|
+
desktop: Desktop
|
|
44
|
+
nav:
|
|
45
|
+
sections:
|
|
46
|
+
core: 核心
|
|
47
|
+
health: 系统状态
|
|
48
|
+
diagnostics: 诊断
|
|
49
|
+
insights: 洞察
|
|
50
|
+
overview: 概览
|
|
51
|
+
errors: 错误
|
|
52
|
+
analytics: 分析
|
|
53
|
+
platform: 平台
|
|
54
|
+
cache: Cache
|
|
55
|
+
jobs: Jobs
|
|
56
|
+
database: 数据库
|
|
57
|
+
rate_limits: 限流
|
|
58
|
+
actioncable: ActionCable
|
|
59
|
+
activestorage: ActiveStorage
|
|
60
|
+
llm: LLM
|
|
61
|
+
n_plus_one: N+1 查询
|
|
62
|
+
deprecations: Deprecations
|
|
63
|
+
swallowed: 被吞异常
|
|
64
|
+
diagnostic_dumps: 诊断
|
|
65
|
+
storms: 风暴
|
|
66
|
+
correlation: 关联分析
|
|
67
|
+
releases: Releases
|
|
68
|
+
user_impact: 用户影响
|
|
69
|
+
settings: 设置
|
|
70
|
+
sidebar:
|
|
71
|
+
back_to_app: 返回 %{app}
|
|
72
|
+
back_to_app_home: 返回应用首页
|
|
73
|
+
navbar:
|
|
74
|
+
search_placeholder: 搜索错误... /
|
|
75
|
+
toggle_sidebar: 切换侧边栏 (S)
|
|
76
|
+
toggle_theme: 切换主题
|
|
77
|
+
keyboard_shortcuts_title: 键盘快捷键 (?)
|
|
78
|
+
all_applications: 全部应用
|
|
79
|
+
language: 语言
|
|
80
|
+
choose_language: 选择面板语言
|
|
81
|
+
all_apps: 全部应用 (%{count})
|
|
82
|
+
banners:
|
|
83
|
+
credentials:
|
|
84
|
+
label: 安全警告:
|
|
85
|
+
body_html: 你正在使用默认凭据(gandalf/youshallnotpass)。请设置环境变量 <code>ERROR_DASHBOARD_USER</code>
|
|
86
|
+
和 <code>ERROR_DASHBOARD_PASSWORD</code>,或在初始化文件中配置 <code>authenticate_with</code>。
|
|
87
|
+
dismiss: 本次会话内不再提示
|
|
88
|
+
storm:
|
|
89
|
+
active_title: 错误风暴进行中
|
|
90
|
+
recent_title: 近期触发过风暴保护
|
|
91
|
+
active_paused: "(自 %{time} 起)— 已触发风暴保护。出现次数仍精确计数;详情采集已暂停(仅计数模式)。"
|
|
92
|
+
active_sampled: "(自 %{time} 起)— 已触发风暴保护。出现次数仍精确计数;上下文采集改为抽样。"
|
|
93
|
+
recent_body: "(已于 %{time} 结束)— %{count} 次出现以精确计数记录,详情为抽样采集。"
|
|
94
|
+
view_history: 查看风暴历史
|
|
95
|
+
footer:
|
|
96
|
+
built_with: 构建于
|
|
97
|
+
credit_html: 由 %{author} 用 ❤️ 打造
|
|
98
|
+
shortcuts:
|
|
99
|
+
title: 键盘快捷键
|
|
100
|
+
refresh: 刷新页面
|
|
101
|
+
focus_search: 定位到搜索框
|
|
102
|
+
analytics: 分析
|
|
103
|
+
toggle_sidebar: 切换侧边栏
|
|
104
|
+
show_shortcuts: 显示快捷键
|
|
105
|
+
errors:
|
|
106
|
+
index:
|
|
107
|
+
title: 错误
|
|
108
|
+
last_updated_html: 最近更新:%{time}
|
|
109
|
+
live: 实时
|
|
110
|
+
summary:
|
|
111
|
+
errors_html:
|
|
112
|
+
other: "%{value} 个错误"
|
|
113
|
+
unresolved_html: "%{value} 个未解决"
|
|
114
|
+
all_time: 全部时间
|
|
115
|
+
spike:
|
|
116
|
+
critical: 检测到严重的错误激增!
|
|
117
|
+
high: 检测到明显的错误激增
|
|
118
|
+
elevated: 错误活动高于正常水平
|
|
119
|
+
today:
|
|
120
|
+
other: 今日:%{count} 个错误
|
|
121
|
+
average: "(7 日均值:%{avg})"
|
|
122
|
+
multiplier: 为正常水平的 %{multiplier} 倍
|
|
123
|
+
filters:
|
|
124
|
+
search_placeholder: 搜索错误...
|
|
125
|
+
more: 更多筛选
|
|
126
|
+
apply: 应用筛选
|
|
127
|
+
clear: 清除
|
|
128
|
+
clear_all: 全部清除
|
|
129
|
+
active_label: 筛选条件:
|
|
130
|
+
status:
|
|
131
|
+
all: 全部
|
|
132
|
+
unresolved: 未解决
|
|
133
|
+
resolved: 已解决
|
|
134
|
+
assigned: 已指派
|
|
135
|
+
reopened: 已重新打开
|
|
136
|
+
severity:
|
|
137
|
+
any: 任意严重程度
|
|
138
|
+
all_apps: 全部应用
|
|
139
|
+
all_platforms: 全部平台
|
|
140
|
+
all_types: 全部类型
|
|
141
|
+
all_timeframes: 全部时间
|
|
142
|
+
all_frequencies: 全部频率
|
|
143
|
+
all_priorities: 全部优先级
|
|
144
|
+
all_assignments: 全部指派情况
|
|
145
|
+
all_assignees: 全部负责人
|
|
146
|
+
unassigned: 未指派
|
|
147
|
+
assigned: 已指派
|
|
148
|
+
unresolved_only: 仅未解决
|
|
149
|
+
hide_snoozed: 隐藏已延后
|
|
150
|
+
hide_muted: 隐藏已静音
|
|
151
|
+
timeframes:
|
|
152
|
+
last_hour: 最近一小时
|
|
153
|
+
today: 今天
|
|
154
|
+
yesterday: 昨天
|
|
155
|
+
last_7_days: 最近 7 天
|
|
156
|
+
last_30_days: 最近 30 天
|
|
157
|
+
last_90_days: 最近 90 天
|
|
158
|
+
frequencies:
|
|
159
|
+
once: 1 次
|
|
160
|
+
few: 2–9 次
|
|
161
|
+
frequent: 10–99 次
|
|
162
|
+
very_frequent: 100 次以上
|
|
163
|
+
recurring: 反复出现
|
|
164
|
+
chips:
|
|
165
|
+
search: 搜索:%{value}
|
|
166
|
+
application: 应用:%{value}
|
|
167
|
+
platform: 平台:%{value}
|
|
168
|
+
error_type: 类型:%{value}
|
|
169
|
+
severity: 严重程度:%{value}
|
|
170
|
+
timeframe: 时间范围:%{value}
|
|
171
|
+
frequency: 频率:%{value}
|
|
172
|
+
status: 状态:%{value}
|
|
173
|
+
priority: 优先级:%{value}
|
|
174
|
+
remove: 移除筛选条件
|
|
175
|
+
columns:
|
|
176
|
+
error: 错误
|
|
177
|
+
status: 状态
|
|
178
|
+
events: 事件
|
|
179
|
+
users: 用户
|
|
180
|
+
last_seen: 最近出现
|
|
181
|
+
application: 应用
|
|
182
|
+
platform: 平台
|
|
183
|
+
select_all: 选择全部错误
|
|
184
|
+
batch:
|
|
185
|
+
selected:
|
|
186
|
+
other: 已选择 %{count} 项
|
|
187
|
+
resolve: 解决
|
|
188
|
+
delete: 删除
|
|
189
|
+
confirm_delete: 确定要删除所选错误吗?
|
|
190
|
+
pagination: 显示第 %{from}–%{to} 条,共 %{count} 条错误
|
|
191
|
+
empty:
|
|
192
|
+
filtered_title: 没有符合筛选条件的错误
|
|
193
|
+
filtered_message: 可以尝试调整搜索关键词或筛选条件。
|
|
194
|
+
filtered_cta: 清除全部筛选条件
|
|
195
|
+
clear_title: 一切正常!
|
|
196
|
+
clear_message: 尚未记录任何错误,你的应用运行良好。错误一旦发生就会自动出现在这里。
|
|
197
|
+
show:
|
|
198
|
+
page_title: '错误 #%{id}'
|
|
199
|
+
breadcrumb_errors: 错误
|
|
200
|
+
hero:
|
|
201
|
+
reopened: 已重新打开
|
|
202
|
+
occurrences_html:
|
|
203
|
+
other: "%{value} 次出现"
|
|
204
|
+
user_html: 用户 %{value}
|
|
205
|
+
first_seen_html: 首次出现于 %{time}
|
|
206
|
+
last_seen_html: 最近出现于 %{time}
|
|
207
|
+
actions:
|
|
208
|
+
resolve: 解决
|
|
209
|
+
assign: 指派
|
|
210
|
+
copy_for_llm: 复制给 LLM
|
|
211
|
+
ai_help: AI 助手
|
|
212
|
+
export_json: 导出 JSON
|
|
213
|
+
tabs:
|
|
214
|
+
details: 详情
|
|
215
|
+
context: 上下文
|
|
216
|
+
history: 历史
|
|
217
|
+
issues: 工单
|
|
218
|
+
coverage:
|
|
219
|
+
active_label: 覆盖率已启用
|
|
220
|
+
active_body: 展开源代码即可查看已执行的行
|
|
221
|
+
inactive_label: 代码路径覆盖率
|
|
222
|
+
inactive_body: 启用后可查看已执行的行
|
|
223
|
+
enable: 启用
|
|
224
|
+
disable: 停用
|
|
225
|
+
baselines:
|
|
226
|
+
title: 基线统计
|
|
227
|
+
anomaly_label: 异常:
|
|
228
|
+
anomaly_body: 高于基线 %{sigma}σ(%{level})
|
|
229
|
+
levels:
|
|
230
|
+
elevated: 偏高
|
|
231
|
+
high: 高
|
|
232
|
+
critical: 严重
|
|
233
|
+
hourly: 按小时
|
|
234
|
+
daily: 按天
|
|
235
|
+
weekly: 按周
|
|
236
|
+
mean: 均值:
|
|
237
|
+
std_dev: σ:
|
|
238
|
+
percentile_95: P95:
|
|
239
|
+
quick_actions:
|
|
240
|
+
title: 快捷操作
|
|
241
|
+
view_similar: 查看相似错误
|
|
242
|
+
view_user_errors: 查看该用户的错误
|
|
243
|
+
view_platform_errors: 查看 %{platform} 的错误
|
|
244
|
+
analytics: 分析
|
|
245
|
+
variables:
|
|
246
|
+
local_title: 局部变量
|
|
247
|
+
local_hint: 来自抛出异常的那个栈帧的变量
|
|
248
|
+
instance_title: 实例变量
|
|
249
|
+
instance_hint_html: 来自抛出异常处 %{klass} 的实例变量
|
|
250
|
+
instance_hint_generic: 来自抛出异常的那个对象的实例变量
|
|
251
|
+
captured:
|
|
252
|
+
other: 已捕获 %{count} 个
|
|
253
|
+
column_variable: 变量
|
|
254
|
+
column_type: 类型
|
|
255
|
+
column_value: 值
|
|
256
|
+
filtered: "[已过滤]"
|
|
257
|
+
truncated: 已截断
|
|
258
|
+
deprecations:
|
|
259
|
+
title: 废弃警告
|
|
260
|
+
hint: 本次请求中检测到的 Rails 废弃警告
|
|
261
|
+
column_warning: 警告
|
|
262
|
+
column_source: 来源
|
|
263
|
+
footer_tip: 升级 Rails 前请先处理废弃项,以免遇到不兼容的变更。
|
|
264
|
+
upgrade_guide: Rails 升级指南
|
|
265
|
+
n_plus_one:
|
|
266
|
+
title: N+1 查询检测
|
|
267
|
+
hint: 在本次请求的 SQL breadcrumbs 中检测到的重复查询模式
|
|
268
|
+
patterns:
|
|
269
|
+
other: "%{count} 种模式"
|
|
270
|
+
column_repeats: 重复次数
|
|
271
|
+
column_query: 查询模式
|
|
272
|
+
column_total_time: 总耗时
|
|
273
|
+
fingerprint: 指纹:%{fingerprint}
|
|
274
|
+
tip_preload_html: 提示:用 %{includes} 或 %{preload} 预加载 %{table}
|
|
275
|
+
tip_generic_html: 提示:使用 %{includes} 或 %{preload} 预加载关联数据
|
|
276
|
+
eager_loading_guide: Rails 预加载指南
|
|
277
|
+
cache_health:
|
|
278
|
+
title: 缓存状态
|
|
279
|
+
operations:
|
|
280
|
+
other: "%{count} 次操作"
|
|
281
|
+
hint: 基于本次请求 breadcrumbs 的缓存活动分析
|
|
282
|
+
reads: 读取
|
|
283
|
+
writes: 写入
|
|
284
|
+
hit_rate: 命中率
|
|
285
|
+
hits:
|
|
286
|
+
other: "%{count} 次命中"
|
|
287
|
+
misses:
|
|
288
|
+
other: "%{count} 次未命中"
|
|
289
|
+
unknown_status:
|
|
290
|
+
other: "%{count} 次读取的命中状态未知(较早的 breadcrumbs)"
|
|
291
|
+
total_time_html: 缓存总耗时:%{duration}
|
|
292
|
+
slowest_html: 最慢:%{duration}
|
|
293
|
+
low_hit_rate: 命中率偏低 — 建议检查缓存键的设计与 TTL 设置。
|
|
294
|
+
moderate_hit_rate: 命中率中等 — 可以考虑预热缓存或调整过期时间。
|
|
295
|
+
caching_guide: Rails 缓存指南
|
|
296
|
+
breadcrumbs:
|
|
297
|
+
title: Breadcrumbs
|
|
298
|
+
events:
|
|
299
|
+
other: "%{count} 个事件"
|
|
300
|
+
hint: 导致此错误的活动轨迹
|
|
301
|
+
column_category: 类别
|
|
302
|
+
column_message: 消息
|
|
303
|
+
column_duration: 耗时
|
|
304
|
+
patterns:
|
|
305
|
+
title: 出现规律
|
|
306
|
+
window: "(最近 %{days} 天)"
|
|
307
|
+
pattern_type: 规律类型
|
|
308
|
+
types:
|
|
309
|
+
business_hours:
|
|
310
|
+
label: 工作时段规律
|
|
311
|
+
description: 错误高峰出现在工作时段(9:00–17:00),说明与用户活动相关
|
|
312
|
+
night:
|
|
313
|
+
label: 夜间规律
|
|
314
|
+
description: 错误高峰出现在夜间(0:00–6:00),可能来自后台任务或定时作业
|
|
315
|
+
weekend:
|
|
316
|
+
label: 周末规律
|
|
317
|
+
description: 错误大多出现在周末,说明周末的使用方式有其特点
|
|
318
|
+
uniform:
|
|
319
|
+
label: 分布均匀
|
|
320
|
+
description: 错误在全天分布均匀,没有明显规律
|
|
321
|
+
none:
|
|
322
|
+
label: 未发现规律
|
|
323
|
+
description: 数据不足,无法识别明确的出现规律
|
|
324
|
+
strength: 规律强度
|
|
325
|
+
strengths:
|
|
326
|
+
strong:
|
|
327
|
+
label: 规律明显
|
|
328
|
+
description: 错误高度集中在特定时段
|
|
329
|
+
moderate:
|
|
330
|
+
label: 规律中等
|
|
331
|
+
description: 在特定时段有一定集中
|
|
332
|
+
weak:
|
|
333
|
+
label: 规律较弱
|
|
334
|
+
description: 错误分布相对均匀
|
|
335
|
+
heatmap_title: 按小时分布的热力图
|
|
336
|
+
heatmap_legend: 颜色越深表示错误越多。红色边框标示高峰时段(超过平均值的 %{multiplier} 倍)。
|
|
337
|
+
heatmap_cell:
|
|
338
|
+
other: "%{hour} — %{count} 个错误"
|
|
339
|
+
peak_hours: 高峰时段:
|
|
340
|
+
peak_hours_hint: 这些时段的错误率超过平均值的两倍。建议关注此时的发布与负载情况。
|
|
341
|
+
bursts_title: 错误突发
|
|
342
|
+
bursts_window: "(最近 %{days} 天)"
|
|
343
|
+
bursts_hint: 错误突发是指数分钟内接连出现多个错误。这可能意味着级联故障或负载激增。
|
|
344
|
+
column_start_time: 开始时间
|
|
345
|
+
column_duration: 持续时间
|
|
346
|
+
column_error_count: 错误数量
|
|
347
|
+
column_intensity: 强度
|
|
348
|
+
burst_duration: "%{minutes} 分钟"
|
|
349
|
+
burst_duration_seconds: "(%{seconds} 秒)"
|
|
350
|
+
burst_errors_html:
|
|
351
|
+
other: "%{value} 个错误"
|
|
352
|
+
intensity_high: 高(20 个以上错误)
|
|
353
|
+
intensity_medium: 中(10–19 个错误)
|
|
354
|
+
intensity_low: 低(5–9 个错误)
|
|
355
|
+
bursts_truncated: 显示 %{total} 次突发中的 %{shown} 次
|
|
356
|
+
recommendation_label: 建议:
|
|
357
|
+
recommendation_intro: 检测到多次错误突发。建议排查:
|
|
358
|
+
recommendation_deploys: 突发前后是否有发布或配置变更
|
|
359
|
+
recommendation_load: 负载激增或流量变化
|
|
360
|
+
recommendation_cascades: 由相关错误引发的级联故障
|
|
361
|
+
recommendation_jobs: 后台任务失败或重试风暴
|
|
362
|
+
empty: 未发现出现规律或突发。规律分析可能需要更多数据。
|
|
363
|
+
providers:
|
|
364
|
+
github: GitHub
|
|
365
|
+
gitlab: GitLab
|
|
366
|
+
bitbucket: Bitbucket
|
|
367
|
+
jira: Jira
|
|
368
|
+
linear: Linear
|
|
369
|
+
generic: 平台
|
|
370
|
+
generic_lowercase: 该平台
|
|
371
|
+
discussion:
|
|
372
|
+
title: 讨论
|
|
373
|
+
activity_log: 活动记录
|
|
374
|
+
reply_on: 在 %{provider} 上回复
|
|
375
|
+
start_on: 在 %{provider} 上发起讨论
|
|
376
|
+
empty: 还没有评论。来做第一个在 %{provider} 上讨论这个错误的人吧。
|
|
377
|
+
issue_section:
|
|
378
|
+
title: 工单系统
|
|
379
|
+
view_issue: 查看工单
|
|
380
|
+
linked: 已关联
|
|
381
|
+
issue_reference: "%{provider} #%{number}"
|
|
382
|
+
states:
|
|
383
|
+
open: 开启
|
|
384
|
+
closed: 已关闭
|
|
385
|
+
merged: 已合并
|
|
386
|
+
assignees: 负责人
|
|
387
|
+
unassigned: 未指派
|
|
388
|
+
labels: 标签
|
|
389
|
+
no_labels: 暂无标签
|
|
390
|
+
create_new: 新建工单
|
|
391
|
+
create_issue: 在 %{provider} 创建工单
|
|
392
|
+
configure_html: 在初始化文件中配置 %{token} 和 %{url},即可启用工单创建功能。
|
|
393
|
+
link_existing: 关联已有工单
|
|
394
|
+
link: 关联
|
|
395
|
+
cascades:
|
|
396
|
+
title: 错误级联
|
|
397
|
+
hint: 错误之间的因果关系
|
|
398
|
+
triggered_by: 由以下错误引发
|
|
399
|
+
triggered_by_hint: "(导致此错误的错误)"
|
|
400
|
+
triggers: 引发以下错误
|
|
401
|
+
triggers_hint: "(由此错误导致的错误)"
|
|
402
|
+
column_error_type: 错误类型
|
|
403
|
+
column_message: 消息
|
|
404
|
+
column_probability: 概率
|
|
405
|
+
column_frequency: 频率
|
|
406
|
+
column_avg_delay: 平均间隔
|
|
407
|
+
view: 查看
|
|
408
|
+
footnote: 级联模式反映因果关系。概率高(≥%{probability}%)且频率高(≥%{frequency})表示级联关系较强。
|
|
409
|
+
llm_summary:
|
|
410
|
+
title: LLM 调用
|
|
411
|
+
hint: 根据请求的 breadcrumbs 汇总
|
|
412
|
+
calls: 调用次数
|
|
413
|
+
tokens: Token
|
|
414
|
+
cost: 费用
|
|
415
|
+
input: 输入
|
|
416
|
+
output: 输出
|
|
417
|
+
tool_calls: 工具调用
|
|
418
|
+
total_time: 总耗时
|
|
419
|
+
errors: 错误
|
|
420
|
+
by_model: 按模型
|
|
421
|
+
failed_calls:
|
|
422
|
+
other: "%{count} 次调用失败 — 详情请查看 breadcrumbs 轨迹。"
|
|
423
|
+
timeline:
|
|
424
|
+
title: 时间线
|
|
425
|
+
hint: 近期的相关错误
|
|
426
|
+
current_error: 当前错误
|
|
427
|
+
user: 用户:%{id}
|
|
428
|
+
resolved: 已解决
|
|
429
|
+
notes_label: 解决说明:
|
|
430
|
+
notes_tooltip: 解决说明:%{notes}
|
|
431
|
+
user_errors_table:
|
|
432
|
+
column_rank: 排名
|
|
433
|
+
column_user: 用户
|
|
434
|
+
column_error_type_count: 不同错误类型数
|
|
435
|
+
column_error_count: 错误数量
|
|
436
|
+
column_percentage: 占比
|
|
437
|
+
column_error_types: 错误类型
|
|
438
|
+
column_actions: 操作
|
|
439
|
+
types:
|
|
440
|
+
other: "%{count} 种类型"
|
|
441
|
+
more:
|
|
442
|
+
other: 另有 %{count} 项
|
|
443
|
+
view_errors: 查看错误
|
|
444
|
+
co_occurring:
|
|
445
|
+
title: 同时出现的错误
|
|
446
|
+
badge: 时间规律
|
|
447
|
+
hint: 在该错误前后 %{minutes} 分钟内出现的错误
|
|
448
|
+
column_error_type: 错误类型
|
|
449
|
+
column_message: 消息
|
|
450
|
+
column_platform: 平台
|
|
451
|
+
column_frequency: 频率
|
|
452
|
+
column_avg_delay: 平均间隔
|
|
453
|
+
times:
|
|
454
|
+
other: "%{count} 次"
|
|
455
|
+
before: 早 %{duration}
|
|
456
|
+
after: 晚 %{duration}
|
|
457
|
+
simultaneous: 同时
|
|
458
|
+
view: 查看
|
|
459
|
+
modals:
|
|
460
|
+
cancel: 取消
|
|
461
|
+
name_placeholder: 例如:张三
|
|
462
|
+
resolve:
|
|
463
|
+
title: 将错误标记为已解决
|
|
464
|
+
name_label: 你的姓名
|
|
465
|
+
name_hint: 由谁解决这个错误?
|
|
466
|
+
reference_label: 关联引用(选填)
|
|
467
|
+
reference_placeholder: '例如:JIRA-123、PR #456、GitHub Issue #789'
|
|
468
|
+
reference_hint: 指向工单、PR 或 issue 的链接
|
|
469
|
+
notes_label: 解决说明(选填)
|
|
470
|
+
notes_placeholder: 描述为修复此错误做了哪些处理...
|
|
471
|
+
notes_hint: 为解决这个错误做了什么?
|
|
472
|
+
submit: 标记为已解决
|
|
473
|
+
assign:
|
|
474
|
+
title: 指派错误
|
|
475
|
+
label: 指派给
|
|
476
|
+
hint: 该由谁来排查这个错误?
|
|
477
|
+
submit: 指派
|
|
478
|
+
priority:
|
|
479
|
+
title: 更新优先级
|
|
480
|
+
label: 优先级
|
|
481
|
+
current: 当前:%{value}
|
|
482
|
+
submit: 更新优先级
|
|
483
|
+
snooze:
|
|
484
|
+
title: 延后错误
|
|
485
|
+
label: 延后时长
|
|
486
|
+
hint: 在活动视图中隐藏此错误
|
|
487
|
+
reason_label: 原因(选填)
|
|
488
|
+
reason_placeholder: 为什么要延后这个错误?
|
|
489
|
+
reason_hint: 原因将作为评论添加
|
|
490
|
+
submit: 延后
|
|
491
|
+
hours:
|
|
492
|
+
other: "%{count} 小时"
|
|
493
|
+
days:
|
|
494
|
+
other: "%{count} 天"
|
|
495
|
+
weeks:
|
|
496
|
+
other: "%{count} 周"
|
|
497
|
+
hours_with_equivalent: "%{hours}(%{equivalent})"
|
|
498
|
+
mute:
|
|
499
|
+
title: 静音通知
|
|
500
|
+
description: 被静音的错误仍会显示在面板中,但不会触发任何通知(Slack、邮件、Discord、PagerDuty、webhooks)。
|
|
501
|
+
name_label: 你的姓名(选填)
|
|
502
|
+
reason_label: 原因(选填)
|
|
503
|
+
reason_placeholder: 为什么要静音这个错误?
|
|
504
|
+
reason_hint: 原因将作为评论添加
|
|
505
|
+
submit: 静音通知
|
|
506
|
+
request_context:
|
|
507
|
+
title: 请求上下文
|
|
508
|
+
url: 请求 URL:
|
|
509
|
+
hostname: 主机名:
|
|
510
|
+
content_type: 内容类型:
|
|
511
|
+
duration: 请求耗时:
|
|
512
|
+
params: 请求参数:
|
|
513
|
+
user_agent: User Agent:
|
|
514
|
+
ip_address: IP 地址:
|
|
515
|
+
replay: 重放请求:
|
|
516
|
+
raw_user_agent: 原始 User Agent
|
|
517
|
+
duration_seconds: "%{value} 秒"
|
|
518
|
+
duration_ms: "%{value} 毫秒"
|
|
519
|
+
copy_curl: 复制为 curl
|
|
520
|
+
copy_curl_title: 复制 curl 命令到剪贴板
|
|
521
|
+
copy_rspec: 复制为 RSpec
|
|
522
|
+
copy_rspec_title: 复制 RSpec request spec 到剪贴板
|
|
523
|
+
similar_errors:
|
|
524
|
+
title: 相似错误
|
|
525
|
+
badge: 模糊匹配
|
|
526
|
+
hint: backtrace 与消息相似的错误(相似度 %{threshold}% 以上)
|
|
527
|
+
column_similarity: 相似度
|
|
528
|
+
column_error_type: 错误类型
|
|
529
|
+
column_message: 消息
|
|
530
|
+
column_platform: 平台
|
|
531
|
+
column_occurrences: 出现次数
|
|
532
|
+
occurrences:
|
|
533
|
+
other: "%{count} 次"
|
|
534
|
+
view: 查看
|
|
535
|
+
source_code:
|
|
536
|
+
view_on: 在 %{host} 上查看
|
|
537
|
+
view_source: 查看源码
|
|
538
|
+
coverage_legend_html: 覆盖率已启用 — %{executed} = 已执行,%{not_executed} = 未执行
|
|
539
|
+
coverage_green: 绿色
|
|
540
|
+
coverage_gray: 灰色
|
|
541
|
+
read_failed: 无法读取源码:%{message}
|
|
542
|
+
ai_help:
|
|
543
|
+
title: AI 助手
|
|
544
|
+
providers:
|
|
545
|
+
openai: OpenAI
|
|
546
|
+
anthropic: Anthropic
|
|
547
|
+
close: 关闭 AI 助手
|
|
548
|
+
empty: 可以询问根本原因、复现步骤、可能的修复方式,或接下来该检查什么。
|
|
549
|
+
question_label: 问题
|
|
550
|
+
question_placeholder: 最可能的根本原因是什么?
|
|
551
|
+
ask: 提问
|
|
552
|
+
sidebar:
|
|
553
|
+
title: 元数据
|
|
554
|
+
occurrence_count: 出现次数
|
|
555
|
+
occurred_times:
|
|
556
|
+
other: 此错误已出现 %{count} 次
|
|
557
|
+
first_seen: 首次出现
|
|
558
|
+
last_seen: 最近出现
|
|
559
|
+
jump_to_timeline: 跳转到时间线
|
|
560
|
+
severity_level: 严重程度
|
|
561
|
+
view_all_severity: 查看所有 %{severity} 级错误
|
|
562
|
+
severity_badges:
|
|
563
|
+
critical: 严重
|
|
564
|
+
high: 高
|
|
565
|
+
medium: 中
|
|
566
|
+
low: 低
|
|
567
|
+
platform: 平台
|
|
568
|
+
view_all_platform: 查看 %{platform} 的所有错误
|
|
569
|
+
user: 用户
|
|
570
|
+
view_user_errors: 查看该用户的所有错误
|
|
571
|
+
user_id: ID:%{id}
|
|
572
|
+
user_id_label: 用户 ID:%{id}
|
|
573
|
+
guest: 访客 / 未认证
|
|
574
|
+
issue_tracking_linked_html: 状态、指派和优先级通过你的%{link}管理。
|
|
575
|
+
issue_tracking_link_text: 关联工单
|
|
576
|
+
issue_tracking_unlinked: 状态、指派和优先级通过你的工单系统管理。关联一个工单即可查看详情。
|
|
577
|
+
workflow_status: 流程状态
|
|
578
|
+
resolved: 已解决
|
|
579
|
+
unresolved: 未解决
|
|
580
|
+
reopened: 已重新打开
|
|
581
|
+
assigned_to: 指派给
|
|
582
|
+
assign: 指派
|
|
583
|
+
remove_assignment: 取消指派?
|
|
584
|
+
priority: 优先级
|
|
585
|
+
snooze: 延后
|
|
586
|
+
snoozed: 已延后
|
|
587
|
+
snoozed_until_html: 至 %{time}
|
|
588
|
+
unsnooze: 取消延后
|
|
589
|
+
notifications: 通知
|
|
590
|
+
muted: 已静音
|
|
591
|
+
muted_by: 操作人:%{name}
|
|
592
|
+
muted_since_html: 自 %{time} 起
|
|
593
|
+
mute: 静音
|
|
594
|
+
unmute: 取消静音
|
|
595
|
+
resolved_by: 解决人
|
|
596
|
+
reference: 关联引用
|
|
597
|
+
resolution_notes: 解决说明
|
|
598
|
+
error_id: 错误 ID
|
|
599
|
+
copy_error_id: 复制错误 ID
|
|
600
|
+
environment:
|
|
601
|
+
title: 运行环境
|
|
602
|
+
hint: 错误发生时的运行上下文
|
|
603
|
+
app_version: 应用版本:
|
|
604
|
+
view_all_version: 查看 %{version} 中的所有错误
|
|
605
|
+
git_sha: Git SHA:
|
|
606
|
+
rails: Rails:
|
|
607
|
+
ruby: Ruby:
|
|
608
|
+
environment: 环境:
|
|
609
|
+
server: 服务器:
|
|
610
|
+
database: 数据库:
|
|
611
|
+
key_gems: 主要 gems:
|
|
612
|
+
health:
|
|
613
|
+
title: 系统状态
|
|
614
|
+
hint: 错误触发时的运行状态
|
|
615
|
+
memory_rss: 内存(RSS):
|
|
616
|
+
process_swap: 进程交换空间:
|
|
617
|
+
peak_rss: 峰值 RSS:
|
|
618
|
+
os_threads: 系统线程:
|
|
619
|
+
threads: 线程:
|
|
620
|
+
file_descriptors: 文件描述符:
|
|
621
|
+
load_average: 平均负载:
|
|
622
|
+
system_memory: 系统内存:
|
|
623
|
+
system_swap: 系统交换空间:
|
|
624
|
+
tcp_connections: TCP 连接:
|
|
625
|
+
gc_live_objects: GC 存活对象:
|
|
626
|
+
major_gc_runs: Major GC 次数:
|
|
627
|
+
last_gc: 上次 GC:
|
|
628
|
+
connection_pool: 连接池:
|
|
629
|
+
puma_threads: Puma 线程:
|
|
630
|
+
job_queue: 任务队列(%{adapter}):
|
|
631
|
+
vm_cache_invalidations: VM 缓存失效次数:
|
|
632
|
+
vm_cache_misses: VM 缓存未命中:
|
|
633
|
+
shape_cache_size: Shape 缓存大小:
|
|
634
|
+
yjit_compiled: YJIT 已编译:
|
|
635
|
+
yjit_invalidations: YJIT 失效次数:
|
|
636
|
+
yjit_code_size: YJIT 代码大小:
|
|
637
|
+
yjit_compile_time: YJIT 编译耗时:
|
|
638
|
+
ruby_threads: "(Ruby:%{count})"
|
|
639
|
+
info:
|
|
640
|
+
new_badge: 新
|
|
641
|
+
new_tooltip: 该错误出现在最近一小时内
|
|
642
|
+
reopened: 已重新打开
|
|
643
|
+
reopened_tooltip: 此前已解决,于 %{time} 再次出现
|
|
644
|
+
copy_error_type: 复制错误类型
|
|
645
|
+
message_label: 错误消息:
|
|
646
|
+
copy_message: 复制错误消息
|
|
647
|
+
copy: 复制
|
|
648
|
+
cause_chain:
|
|
649
|
+
title: 异常成因链
|
|
650
|
+
caused_by: 起因:
|
|
651
|
+
caused_by_indexed: 起因(#%{index}):
|
|
652
|
+
backtrace: Backtrace
|
|
653
|
+
backtrace:
|
|
654
|
+
label: Backtrace:
|
|
655
|
+
frame_counts: "(%{app} 属于你的代码,%{framework} 属于框架/gems)"
|
|
656
|
+
copy_full: 复制完整 backtrace
|
|
657
|
+
copy_full_title: 复制完整 backtrace
|
|
658
|
+
your_code: 你的代码
|
|
659
|
+
framework_code: 框架与 gems 的代码
|
|
660
|
+
frames:
|
|
661
|
+
other: "%{count} 个栈帧"
|
|
662
|
+
click_to_expand: "(点击展开)"
|
|
663
|
+
view_source: 查看源码
|
|
664
|
+
none: 无可用的 backtrace
|
|
665
|
+
row:
|
|
666
|
+
new_badge: 新
|
|
667
|
+
reopened: 已重新打开
|
|
668
|
+
view_user_errors: 查看用户 %{user} 的所有错误
|
|
669
|
+
status:
|
|
670
|
+
unresolved: 未解决
|
|
671
|
+
resolved: 已解决
|
|
672
|
+
in_progress: 处理中
|
|
673
|
+
investigating: 排查中
|
|
674
|
+
wont_fix: 不予修复
|
|
675
|
+
assigned: 已指派
|
|
676
|
+
snoozed: 已延后
|
|
677
|
+
muted: 已静音
|
|
678
|
+
stats:
|
|
679
|
+
today: 今天
|
|
680
|
+
this_week: 本周
|
|
681
|
+
unresolved: 未解决
|
|
682
|
+
resolved: 已解决
|
|
683
|
+
reopened: 已重新打开
|
|
684
|
+
pages:
|
|
685
|
+
percent: "%{value}%"
|
|
686
|
+
column_errors: 错误
|
|
687
|
+
column_occurrences: 出现次数
|
|
688
|
+
column_last_seen: 最近出现
|
|
689
|
+
total_occurrences: 总出现次数
|
|
690
|
+
affected_errors: 受影响的错误
|
|
691
|
+
more_errors:
|
|
692
|
+
other: 另有 %{count} 项
|
|
693
|
+
none_in_last_days: 最近 %{days} 天内未检测到任何结果。
|
|
694
|
+
how_breadcrumbs_html: 必须启用 breadcrumbs(%{option})
|
|
695
|
+
deprecations_page:
|
|
696
|
+
title: 废弃警告
|
|
697
|
+
empty_title: 未找到废弃警告
|
|
698
|
+
empty_body: 最近 %{days} 天的错误 breadcrumbs 中未检测到废弃警告。
|
|
699
|
+
how_title: 废弃警告的记录方式:
|
|
700
|
+
how_captured: Rails 的废弃警告会自动记录为 breadcrumbs
|
|
701
|
+
how_appear: 当带有废弃警告的请求发生错误时,警告就会显示在这里
|
|
702
|
+
unique_warnings: 警告种类
|
|
703
|
+
all_title: 全部废弃警告
|
|
704
|
+
column_warning: 警告
|
|
705
|
+
column_source: 来源
|
|
706
|
+
n_plus_one_page:
|
|
707
|
+
title: N+1 查询模式
|
|
708
|
+
empty_title: 未找到 N+1 查询模式
|
|
709
|
+
empty_body: 最近 %{days} 天的错误 breadcrumbs 中未检测到 N+1 查询模式。
|
|
710
|
+
how_title: N+1 检测的工作方式:
|
|
711
|
+
how_captured: 在产生错误的请求中,SQL 查询会被记录为 breadcrumbs
|
|
712
|
+
how_threshold_html: 形态相同且出现次数达到 %{threshold} 次及以上的查询会被标记
|
|
713
|
+
how_default:
|
|
714
|
+
other: 默认阈值为 %{count} 次重复
|
|
715
|
+
unique_patterns: 模式数量
|
|
716
|
+
all_title: 全部 N+1 查询模式
|
|
717
|
+
duration_ms: "%{value} 毫秒"
|
|
718
|
+
footer_tip_html: 可使用 %{includes}、%{preload} 或 %{eager_load} 修复 N+1 查询。
|
|
719
|
+
swallowed_page:
|
|
720
|
+
title: 被吞异常
|
|
721
|
+
empty_title: 未检测到被吞异常
|
|
722
|
+
empty_body: 最近 %{days} 天内未检测到 rescue 比例超过 %{threshold}% 的异常。
|
|
723
|
+
how_title: 被吞异常的检测方式:
|
|
724
|
+
how_raise: TracePoint(:raise) 统计每一次抛出的异常
|
|
725
|
+
how_rescue: TracePoint(:rescue) 统计每一次被捕获的异常
|
|
726
|
+
how_ratio: rescue 与 raise 的比例偏高 = 很可能被吞掉(被静默捕获)
|
|
727
|
+
how_requires_html: 需要 Ruby 3.3 及以上版本,以及 %{option}
|
|
728
|
+
swallowed_patterns: 被吞模式
|
|
729
|
+
total_rescues: rescue 总数
|
|
730
|
+
total_raises: raise 总数
|
|
731
|
+
all_title: 被吞异常的模式
|
|
732
|
+
column_exception_class: 异常类
|
|
733
|
+
column_raise_location: 抛出位置
|
|
734
|
+
column_rescue_location: 捕获位置
|
|
735
|
+
column_raises: 抛出
|
|
736
|
+
column_rescues: 捕获
|
|
737
|
+
column_ratio: 比例
|
|
738
|
+
view_unrescued: 查看未被捕获、已进入 error_log 的 %{exception} 错误
|
|
739
|
+
footer_tip: 被吞异常先被抛出,随后被静默捕获,可能掩盖真正的缺陷。
|
|
740
|
+
rack_attack_page:
|
|
741
|
+
title: 限流事件
|
|
742
|
+
missing_title: 尚未安装 Rack Attack
|
|
743
|
+
missing_body_html: 跟踪已启用,但本应用未加载 %{gem} gem — 因此无法记录任何事件。请将其加入 Gemfile 并至少配置一条规则,事件便会显示在这里。
|
|
744
|
+
empty_title: 未找到限流事件
|
|
745
|
+
empty_body: 最近 %{days} 天内未记录任何 Rack Attack 的 throttle、blocklist 或 track 事件。
|
|
746
|
+
how_title: Rack Attack 跟踪的工作方式:
|
|
747
|
+
how_enabled_html: 必须启用 Rack Attack 跟踪(%{option})
|
|
748
|
+
how_installed: 应用中必须已安装并配置 Rack Attack
|
|
749
|
+
how_recorded: 只要规则命中,throttle、blocklist 和 track 事件就会被记录 — 无需发生错误
|
|
750
|
+
how_buffered: 事件会先缓冲,每 %{seconds} 秒写入一次,因此显示会略有延迟
|
|
751
|
+
unique_rules: 规则数
|
|
752
|
+
total_events: 事件总数
|
|
753
|
+
unique_ips: 独立 IP 数
|
|
754
|
+
all_title: 按规则查看限流事件
|
|
755
|
+
column_rule: 规则
|
|
756
|
+
column_type: 类型
|
|
757
|
+
column_count: 数量
|
|
758
|
+
column_ips: IP 地址
|
|
759
|
+
column_top_path: 主要路径
|
|
760
|
+
match_type:
|
|
761
|
+
blocklist: blocklist
|
|
762
|
+
throttle: throttle
|
|
763
|
+
track: track
|
|
764
|
+
footer_tip: 数量偏高可能意味着存在滥用,或规则配置有误。
|
|
765
|
+
docs: Rack Attack 文档
|
|
766
|
+
diagnostic_dumps_page:
|
|
767
|
+
title: 诊断转储
|
|
768
|
+
capture: 创建转储
|
|
769
|
+
empty_title: 尚无诊断转储
|
|
770
|
+
empty_body: 按需创建系统状态快照,便于排查问题。
|
|
771
|
+
how_title: 诊断转储的工作方式:
|
|
772
|
+
how_capture_html: 点击上方的%{button},或执行 %{command}
|
|
773
|
+
how_captures: 记录内容:运行环境、GC 统计、线程、连接池、内存、任务队列
|
|
774
|
+
how_saved: 每次转储都会保存到数据库,便于历史对比
|
|
775
|
+
how_use: 可用转储排查生产问题,或确认系统状态
|
|
776
|
+
total_dumps: 转储总数
|
|
777
|
+
threads_latest: 线程(最新)
|
|
778
|
+
memory_latest: 内存(最新)
|
|
779
|
+
history_title: 转储历史
|
|
780
|
+
details: 详情
|
|
781
|
+
pid: PID:%{pid}
|
|
782
|
+
uptime: 运行时长:%{minutes} 分钟
|
|
783
|
+
section_environment: 运行环境
|
|
784
|
+
section_system_health: 系统状态
|
|
785
|
+
section_gc: GC
|
|
786
|
+
section_job_queue: 任务队列
|
|
787
|
+
env_versions: Ruby %{ruby} / Rails %{rails}
|
|
788
|
+
memory_mb: "%{value} MB"
|
|
789
|
+
threads:
|
|
790
|
+
other: "%{count} 个线程"
|
|
791
|
+
pool: 连接池:%{busy}/%{size}
|
|
792
|
+
gc_stats: 存活:%{live} / Major GC:%{major}
|
|
793
|
+
jobs_failed: 失败:%{count}
|
|
794
|
+
footer_tip_html: 也可以通过以下方式创建转储:%{command}
|
|
795
|
+
footer_note_html: 添加备注:%{command}
|
|
796
|
+
unknown_short: "?"
|
|
797
|
+
storms_page:
|
|
798
|
+
title: 风暴历史
|
|
799
|
+
intro_html: 当错误率骤增时(发布出问题、依赖服务故障),风暴保护会限制 gem 自身的数据库写入,以免加剧事故。出现次数始终精确计数 —
|
|
800
|
+
只有单条事件的详情会被抽样。阈值可通过 %{options} 选项按进程配置。
|
|
801
|
+
active_html: "%{label},始于 %{time} — 峰值速率 %{rate}。"
|
|
802
|
+
active_label: 风暴进行中
|
|
803
|
+
empty_title: 未记录到风暴
|
|
804
|
+
empty_body: 风暴保护已就绪。若本应用遭遇错误洪峰,相关事件会连同被丢弃内容的精确计数一并显示在这里。
|
|
805
|
+
column_started: 开始时间
|
|
806
|
+
column_duration: 持续时间
|
|
807
|
+
column_peak_rate: 峰值速率
|
|
808
|
+
column_mode: 模式
|
|
809
|
+
column_counted: 已计数(精确)
|
|
810
|
+
column_overflow: 溢出
|
|
811
|
+
column_top_errors: 主要错误
|
|
812
|
+
active_badge: 进行中
|
|
813
|
+
mode_count_only: 仅计数
|
|
814
|
+
mode_shedding: 丢弃
|
|
815
|
+
rate_per_minute: "%{value}/分钟"
|
|
816
|
+
occurrence_multiplier: "×%{count}"
|
|
817
|
+
overview_page:
|
|
818
|
+
page_title: 面板
|
|
819
|
+
title: 概览
|
|
820
|
+
last_updated_html: 最近更新:%{time}
|
|
821
|
+
alert_banner:
|
|
822
|
+
other: 最近一小时出现 %{count} 个严重/高优先级错误
|
|
823
|
+
alert_occurrences:
|
|
824
|
+
other: "%{count} 次出现"
|
|
825
|
+
alert_view: 查看
|
|
826
|
+
error_rate: 错误率
|
|
827
|
+
error_rate_hint: 今日每小时错误数
|
|
828
|
+
unresolved: 未解决
|
|
829
|
+
unresolved_hint: 等待处理
|
|
830
|
+
resolution_rate: 解决率
|
|
831
|
+
resolution_hint: 已解决 %{total} 个中的 %{resolved} 个
|
|
832
|
+
affected_users: 受影响用户(今日)
|
|
833
|
+
users_change: 较昨日 %{count}
|
|
834
|
+
avg_resolution: 平均解决时长
|
|
835
|
+
avg_resolution_hint: 从发生到解决的平均时长
|
|
836
|
+
hours_short: "%{value} 小时"
|
|
837
|
+
error_trend: 错误趋势
|
|
838
|
+
top_errors: 影响最大的错误
|
|
839
|
+
view_all: 查看全部 →
|
|
840
|
+
users:
|
|
841
|
+
other: "%{count} 位用户"
|
|
842
|
+
platform_health: 平台健康度
|
|
843
|
+
full_comparison: 完整对比 →
|
|
844
|
+
stability_score_html: "%{score}/100"
|
|
845
|
+
platform_summary: "%{total} 个错误 · %{critical} 个严重 · %{unresolved} 个未处理"
|
|
846
|
+
correlation_title: 关联分析洞察
|
|
847
|
+
full_analysis: 完整分析 →
|
|
848
|
+
problematic_releases: 有问题的发布版本
|
|
849
|
+
release_errors:
|
|
850
|
+
other: "%{count} 个错误"
|
|
851
|
+
time_correlated: 时间上相关
|
|
852
|
+
correlation_value_html: 相关度 %{percent}(%{strength})
|
|
853
|
+
multi_error_users: 遇到多种错误的用户
|
|
854
|
+
user_types_html: 用户 %{user} · %{types}
|
|
855
|
+
types:
|
|
856
|
+
other: "%{count} 种类型"
|
|
857
|
+
settings:
|
|
858
|
+
title: 设置
|
|
859
|
+
version: v%{version}
|
|
860
|
+
intro_html: 当前配置的只读视图。请通过 %{file} 或环境变量修改。
|
|
861
|
+
option_count:
|
|
862
|
+
other: "%{count} 项配置"
|
|
863
|
+
plugins:
|
|
864
|
+
title: 已启用的插件
|
|
865
|
+
column_name: 插件名称
|
|
866
|
+
column_version: 版本
|
|
867
|
+
column_description: 说明
|
|
868
|
+
column_status: 状态
|
|
869
|
+
active: 已启用
|
|
870
|
+
inactive: 未启用
|
|
871
|
+
empty: 当前没有注册任何插件。你可以创建自定义插件来扩展功能。
|
|
872
|
+
test_error:
|
|
873
|
+
title: 测试通知
|
|
874
|
+
description_html: 通过完整的捕获与通知链路发送一个测试错误。这会在错误日志中创建一个 %{error_class},并向所有已配置的渠道(Slack、Discord、PagerDuty、邮件、webhooks)发送通知。测试错误会被明确标记,可以放心解决或删除。
|
|
875
|
+
confirm: 此操作将创建一个测试错误,并向所有已配置的渠道发送通知。是否继续?
|
|
876
|
+
submit: 发送测试错误
|
|
877
|
+
help:
|
|
878
|
+
title: 需要修改这些设置?
|
|
879
|
+
edit_html: 请在 %{file} 中修改配置,然后重启应用。
|
|
880
|
+
docs_html: 更多信息请参阅%{docs}。
|
|
881
|
+
docs_link: 文档
|
|
882
|
+
groups:
|
|
883
|
+
core_features: 核心功能
|
|
884
|
+
multi_app: 多应用支持
|
|
885
|
+
user_integration: 用户集成
|
|
886
|
+
performance: 性能设置
|
|
887
|
+
notifications: 通知渠道
|
|
888
|
+
analytics: 高级分析功能
|
|
889
|
+
source_code: 源代码集成
|
|
890
|
+
breadcrumbs: Breadcrumbs
|
|
891
|
+
system_health: 系统状态
|
|
892
|
+
enhanced_metrics: 增强指标
|
|
893
|
+
issue_tracking: 工单跟踪
|
|
894
|
+
deep_debugging: 深度调试
|
|
895
|
+
event_tracking: 事件跟踪
|
|
896
|
+
advanced: 高级配置
|
|
897
|
+
internal_logging: 内部日志
|
|
898
|
+
units:
|
|
899
|
+
lines:
|
|
900
|
+
other: "%{count} 行"
|
|
901
|
+
minutes:
|
|
902
|
+
other: "%{count} 分钟"
|
|
903
|
+
seconds:
|
|
904
|
+
other: "%{count} 秒"
|
|
905
|
+
events:
|
|
906
|
+
other: "%{count} 个事件"
|
|
907
|
+
queries:
|
|
908
|
+
other: "%{count} 条查询"
|
|
909
|
+
std_devs: "%{count}σ"
|
|
910
|
+
values:
|
|
911
|
+
enabled: 已启用
|
|
912
|
+
disabled: 已停用
|
|
913
|
+
not_set: 未设置
|
|
914
|
+
not_found: 未找到
|
|
915
|
+
not_available: 不可用
|
|
916
|
+
empty: 空
|
|
917
|
+
unknown: 未知
|
|
918
|
+
set: 已设置
|
|
919
|
+
auto_detected: 自动检测
|
|
920
|
+
configured: "(已配置)"
|
|
921
|
+
items:
|
|
922
|
+
other: "%{count} 项"
|
|
923
|
+
rules:
|
|
924
|
+
other: "%{count} 条规则"
|
|
925
|
+
users:
|
|
926
|
+
other: "%{formatted} 位用户"
|
|
927
|
+
days:
|
|
928
|
+
other: "%{count} 天"
|
|
929
|
+
rails_app_name_unavailable: 无法获取 Rails 应用名称
|
|
930
|
+
separate_db: 独立数据库:%{name}
|
|
931
|
+
configured_but_not_found: 已配置但未找到
|
|
932
|
+
shared_db_primary: 共享数据库(主库)
|
|
933
|
+
shared_db: 共享数据库
|
|
934
|
+
unable_to_detect: 无法检测
|
|
935
|
+
no_user_model: 未检测到 User 模型
|
|
936
|
+
unable_to_query_count: 无法查询数量
|
|
937
|
+
manual_cleanup_required: 需要手动清理
|
|
938
|
+
keep_forever: 永久保留
|
|
939
|
+
no_automatic_deletion: 不自动删除
|
|
940
|
+
run_command: 执行:
|
|
941
|
+
to_cleanup: 如需清理:
|
|
942
|
+
options:
|
|
943
|
+
enable_middleware: 捕获未处理的异常
|
|
944
|
+
enable_error_subscriber: 订阅 Rails 错误事件
|
|
945
|
+
retention_days: 仅手动清理(执行:rails error_dashboard:cleanup_resolved DAYS=90)
|
|
946
|
+
max_backtrace_lines: 堆栈跟踪深度上限
|
|
947
|
+
sampling_rate: 错误捕获的采样比例
|
|
948
|
+
application_name: 本应用的名称(未设置时自动检测)
|
|
949
|
+
database: 错误日志使用的数据库
|
|
950
|
+
use_separate_database: 为错误日志使用独立数据库
|
|
951
|
+
user_model: 用户关联所用的模型名(未设置时自动检测)
|
|
952
|
+
total_users_for_impact: 用于计算影响百分比(未设置时自动检测)
|
|
953
|
+
async_logging: 在后台任务中处理
|
|
954
|
+
async_adapter: 任务队列适配器
|
|
955
|
+
enable_rate_limiting: 对 API 请求限流
|
|
956
|
+
rate_limit_per_minute: 每个 IP 每分钟的请求数
|
|
957
|
+
enable_slack_notifications: 实时通知
|
|
958
|
+
slack_webhook_url: Slack webhook 地址
|
|
959
|
+
enable_email_notifications: 邮件告警
|
|
960
|
+
notification_email_recipients: 收件人地址
|
|
961
|
+
notification_email_from: 发件人地址
|
|
962
|
+
enable_discord_notifications: 通过 Discord webhook 通知
|
|
963
|
+
discord_webhook_url: Discord webhook 地址
|
|
964
|
+
enable_pagerduty_notifications: 严重错误升级
|
|
965
|
+
pagerduty_integration_key: PagerDuty API 密钥
|
|
966
|
+
enable_webhook_notifications: 通用 webhook 地址
|
|
967
|
+
webhook_urls: 自定义 webhook 地址
|
|
968
|
+
enable_scheduled_digests: 每日/每周摘要邮件。可通过 SolidQueue、Sidekiq 或 cron 调度
|
|
969
|
+
digest_frequency: 摘要邮件的发送频率
|
|
970
|
+
digest_recipients: 邮件地址(默认使用通知收件人)
|
|
971
|
+
enable_similar_errors: 按相似度查找相关错误
|
|
972
|
+
enable_co_occurring_errors: 同时发生的错误
|
|
973
|
+
enable_error_cascades: 父级→子级错误链
|
|
974
|
+
enable_error_correlation: 按版本/用户/时间分析
|
|
975
|
+
enable_platform_comparison: iOS 与 Android 对比分析
|
|
976
|
+
enable_occurrence_patterns: 周期性与突发检测
|
|
977
|
+
enable_baseline_alerts: 异常检测
|
|
978
|
+
baseline_alert_threshold_std_devs: 触发告警的标准差倍数
|
|
979
|
+
baseline_alert_severities: 需要告警的严重程度
|
|
980
|
+
baseline_alert_cooldown_minutes: 同一错误类型两次告警之间的间隔分钟数
|
|
981
|
+
enable_source_code_integration: 在堆栈跟踪中显示代码
|
|
982
|
+
source_code_context_lines: 目标行前后显示的行数
|
|
983
|
+
enable_git_blame: 显示 git blame 信息
|
|
984
|
+
source_code_cache_ttl: 源代码缓存时长
|
|
985
|
+
only_show_app_code_source: 出于安全考虑隐藏 gems/stdlib
|
|
986
|
+
git_branch_strategy: 分支解析策略
|
|
987
|
+
enable_breadcrumbs: 记录请求的活动轨迹
|
|
988
|
+
breadcrumb_buffer_size: 每个请求最多记录的 breadcrumbs 数
|
|
989
|
+
enable_n_plus_one_detection: 在 breadcrumbs 中检测重复查询
|
|
990
|
+
n_plus_one_threshold: 判定为 N+1 的最少重复次数
|
|
991
|
+
enable_system_health: 在错误发生时记录 GC、内存、线程和连接池
|
|
992
|
+
app_version: 应用当前版本
|
|
993
|
+
git_sha: 已部署的提交
|
|
994
|
+
git_repository_url: GitHub/GitLab 仓库地址
|
|
995
|
+
dashboard_base_url: 面板链接的基础地址
|
|
996
|
+
enable_issue_tracking: GitHub/GitLab/Codeberg 集成 — 一个开关启用全部功能:创建工单、自动创建、生命周期同步、平台状态镜像、评论展示。以平台状态取代工作流控制。
|
|
997
|
+
issue_tracker_token: RED 机器人令牌(请设置环境变量 RED_BOT_TOKEN)
|
|
998
|
+
issue_tracker_provider: 从 git_repository_url 自动检测
|
|
999
|
+
issue_tracker_repo: 从 git_repository_url 自动检测
|
|
1000
|
+
issue_tracker_labels: 新建工单时添加的标签
|
|
1001
|
+
issue_webhook_secret: 设置后启用双向同步(HMAC 校验)
|
|
1002
|
+
enable_local_variables: TracePoint(:raise) — 在异常发生时捕获局部变量
|
|
1003
|
+
enable_instance_variables: 在异常发生时捕获 self 的实例变量
|
|
1004
|
+
detect_swallowed_exceptions: TracePoint(:raise) + (:rescue) — 检测被静默捕获的异常(Ruby
|
|
1005
|
+
3.3+)
|
|
1006
|
+
enable_diagnostic_dump: 按需生成系统状态快照
|
|
1007
|
+
enable_crash_capture: 用 at_exit 钩子捕获未处理的崩溃
|
|
1008
|
+
enable_coverage_tracking: 诊断模式 — 在面板中启用后,可在源码视图中看到已执行的行(Ruby 3.2+)
|
|
1009
|
+
enable_rack_attack_tracking: 将 throttle/blocklist 事件记录到独立数据表
|
|
1010
|
+
enable_actioncable_tracking: 将 WebSocket 频道事件记录为 breadcrumbs
|
|
1011
|
+
enable_activestorage_tracking: 将上传/下载/删除记录为 breadcrumbs
|
|
1012
|
+
custom_severity_rules: 错误类型到严重程度的映射
|
|
1013
|
+
ignored_exceptions: 需要忽略的异常
|
|
1014
|
+
enable_internal_logging: gem 的调试输出
|
|
1015
|
+
log_level: 日志详细程度
|
|
1016
|
+
flash:
|
|
1017
|
+
locale:
|
|
1018
|
+
unavailable: 该语言不可用,将使用默认语言。
|
|
1019
|
+
batch:
|
|
1020
|
+
resolved:
|
|
1021
|
+
other: 已成功解决 %{count} 个错误
|
|
1022
|
+
muted:
|
|
1023
|
+
other: 已成功静音 %{count} 个错误
|
|
1024
|
+
unmuted:
|
|
1025
|
+
other: 已成功取消静音 %{count} 个错误
|
|
1026
|
+
deleted:
|
|
1027
|
+
other: 已成功删除 %{count} 个错误
|
|
1028
|
+
failed: 批量操作失败:%{reason}
|
|
1029
|
+
issue:
|
|
1030
|
+
created: 工单创建成功
|
|
1031
|
+
linked: 工单关联成功
|
|
1032
|
+
create_failed: 创建工单失败:%{reason}
|
|
1033
|
+
link_failed: 关联工单失败:%{reason}
|
|
1034
|
+
not_enabled: "%{feature}未启用。请在 %{file} 中启用。"
|
|
1035
|
+
not_enabled_plural: "%{feature}未启用。请在 %{file} 中启用。"
|
|
1036
|
+
not_enabled_options: "%{feature}未启用。请在 %{file} 中启用 %{options}。"
|
|
1037
|
+
not_enabled_set_options: "%{feature}未启用。请在 %{file} 中设置 %{options}。"
|
|
1038
|
+
features:
|
|
1039
|
+
platform_comparison: 平台对比
|
|
1040
|
+
error_correlation: 错误关联分析
|
|
1041
|
+
breadcrumbs: Breadcrumbs
|
|
1042
|
+
system_health: 系统状态
|
|
1043
|
+
swallowed_exceptions: 被吞异常检测
|
|
1044
|
+
rack_attack: Rack Attack 跟踪
|
|
1045
|
+
actioncable: ActionCable 跟踪
|
|
1046
|
+
activestorage: ActiveStorage 跟踪
|
|
1047
|
+
diagnostic_dumps: 诊断转储
|
|
1048
|
+
diagnostic_dump:
|
|
1049
|
+
disabled: 诊断转储未启用。
|
|
1050
|
+
captured: 诊断转储创建成功。
|
|
1051
|
+
failed: 创建诊断转储失败:%{message}
|
|
1052
|
+
coverage:
|
|
1053
|
+
not_enabled: 配置中未启用覆盖率跟踪。
|
|
1054
|
+
enabled: 已启用代码路径覆盖率。请复现该错误,然后查看源代码以了解哪些行被执行。
|
|
1055
|
+
disabled: 已停用代码路径覆盖率。
|
|
1056
|
+
unavailable: 无法启用覆盖率,需要 Ruby 3.2 及以上版本。
|
|
1057
|
+
test_error:
|
|
1058
|
+
logged: 测试错误已记录。请检查你的通知渠道(Slack、Discord、邮件等)以确认送达。
|
|
1059
|
+
failed: 记录测试错误失败:%{message}
|
|
1060
|
+
swallowed_requires_ruby: 被吞异常检测需要 Ruby 3.3 及以上版本(当前为 %{version})。请升级 Ruby 以使用此功能。
|
|
1061
|
+
ai_help:
|
|
1062
|
+
not_configured: AI 助手尚未配置
|
|
1063
|
+
blank_question: 问题不能为空
|
|
1064
|
+
question_too_long: 问题过长,请控制在 %{limit} 个字符以内。
|
|
1065
|
+
commands:
|
|
1066
|
+
no_error_ids: 未提供错误 ID
|
|
1067
|
+
invalid_action: 操作类型无效
|
|
1068
|
+
issue:
|
|
1069
|
+
not_configured: 工单跟踪尚未配置
|
|
1070
|
+
already_linked: 该错误已关联工单:%{url}
|
|
1071
|
+
url_required: 必须提供工单 URL
|
|
1072
|
+
error_not_found: 未找到错误:%{id}
|
|
1073
|
+
batch_failed:
|
|
1074
|
+
mute:
|
|
1075
|
+
other: 静音 %{count} 个错误失败
|
|
1076
|
+
unmute:
|
|
1077
|
+
other: 取消静音 %{count} 个错误失败
|
|
1078
|
+
resolve:
|
|
1079
|
+
other: 解决 %{count} 个错误失败
|
|
1080
|
+
mailers:
|
|
1081
|
+
shared:
|
|
1082
|
+
product_name: Rails Error Dashboard
|
|
1083
|
+
unknown_application: 未知
|
|
1084
|
+
error_alert:
|
|
1085
|
+
subject: "\U0001F6A8 [%{application}] %{error_type}:%{message}"
|
|
1086
|
+
heading: "\U0001F6A8 错误告警"
|
|
1087
|
+
labels:
|
|
1088
|
+
application: 应用
|
|
1089
|
+
error_type: 错误类型
|
|
1090
|
+
platform: 平台
|
|
1091
|
+
occurred_at: 发生时间
|
|
1092
|
+
user_id: 用户 ID
|
|
1093
|
+
ip_address: IP 地址
|
|
1094
|
+
request_url: 请求 URL
|
|
1095
|
+
message: 消息
|
|
1096
|
+
error_id: 错误 ID
|
|
1097
|
+
stack_trace:
|
|
1098
|
+
other: 堆栈跟踪(前 %{count} 行)
|
|
1099
|
+
view_details: 在面板中查看完整详情
|
|
1100
|
+
view_details_text: 在面板中查看完整详情:
|
|
1101
|
+
footer: 这是来自 %{product} 的自动错误通知。
|
|
1102
|
+
digest:
|
|
1103
|
+
subject:
|
|
1104
|
+
other: RED 摘要 — %{count} 个新错误(%{period})
|
|
1105
|
+
heading: RED 错误摘要
|
|
1106
|
+
periods:
|
|
1107
|
+
daily: 最近 24 小时
|
|
1108
|
+
weekly: 最近 7 天
|
|
1109
|
+
generated_at: 生成时间
|
|
1110
|
+
summary: 摘要
|
|
1111
|
+
stats:
|
|
1112
|
+
new_errors: 新错误
|
|
1113
|
+
total_occurrences: 出现次数
|
|
1114
|
+
total_occurrences_text: 总出现次数
|
|
1115
|
+
resolved: 已解决
|
|
1116
|
+
unresolved: 未解决
|
|
1117
|
+
critical_high: 严重/高
|
|
1118
|
+
resolution_rate: 解决率
|
|
1119
|
+
comparison:
|
|
1120
|
+
heading: 与上一周期对比
|
|
1121
|
+
versus: 与上一周期(%{period})相比:
|
|
1122
|
+
current: 本期
|
|
1123
|
+
previous: 上期
|
|
1124
|
+
change: 变化
|
|
1125
|
+
delta:
|
|
1126
|
+
other: "%{delta} 个错误"
|
|
1127
|
+
critical_unresolved: 未解决的严重与高优先级错误
|
|
1128
|
+
top_errors: 出现次数最多的错误
|
|
1129
|
+
columns:
|
|
1130
|
+
severity: 严重程度
|
|
1131
|
+
error: 错误
|
|
1132
|
+
error_type: 错误类型
|
|
1133
|
+
count: 次数
|
|
1134
|
+
view: 查看
|
|
1135
|
+
open_dashboard: 打开面板
|
|
1136
|
+
view_dashboard_text: 查看完整面板:
|
|
1137
|
+
manage_settings: 管理摘要设置
|
|
1138
|
+
footer: 来自 RED 的自动摘要(%{product})
|
|
1139
|
+
notifications:
|
|
1140
|
+
shared:
|
|
1141
|
+
product_name: Rails Error Dashboard
|
|
1142
|
+
unknown: 未知
|
|
1143
|
+
not_available: 不适用
|
|
1144
|
+
error_alert:
|
|
1145
|
+
fallback: "\U0001F6A8 新错误告警"
|
|
1146
|
+
heading: "\U0001F6A8 错误告警"
|
|
1147
|
+
discord_title: "\U0001F6A8 新错误:%{error_type}"
|
|
1148
|
+
pagerduty_summary: "[%{application}] 严重错误:%{platform} 中的 %{error_type}"
|
|
1149
|
+
labels:
|
|
1150
|
+
application: 应用
|
|
1151
|
+
error_type: 错误类型
|
|
1152
|
+
platform: 平台
|
|
1153
|
+
occurred: 发生时间
|
|
1154
|
+
message: 消息
|
|
1155
|
+
user: 用户
|
|
1156
|
+
ip_address: IP 地址
|
|
1157
|
+
request_url: 请求 URL
|
|
1158
|
+
occurrences: 出现次数
|
|
1159
|
+
controller: 控制器
|
|
1160
|
+
action: 动作
|
|
1161
|
+
first_seen: 首次出现
|
|
1162
|
+
location: 位置
|
|
1163
|
+
user_fallback: '用户 #%{id}'
|
|
1164
|
+
view_details: 查看详情
|
|
1165
|
+
view_in_dashboard: 在 Error Dashboard 中查看
|
|
1166
|
+
error_id: 错误 ID:%{id}
|
|
1167
|
+
baseline_alert:
|
|
1168
|
+
fallback: "\U0001F6A8 基线异常告警"
|
|
1169
|
+
heading: "\U0001F6A8 检测到基线异常"
|
|
1170
|
+
labels:
|
|
1171
|
+
severity: 严重程度
|
|
1172
|
+
std_devs: 标准差
|
|
1173
|
+
threshold: 阈值
|
|
1174
|
+
baseline_type: 基线类型
|
|
1175
|
+
baseline_info: 基线信息
|
|
1176
|
+
level:
|
|
1177
|
+
critical: 严重
|
|
1178
|
+
high: 高
|
|
1179
|
+
elevated: 偏高
|
|
1180
|
+
unknown: 未知
|
|
1181
|
+
std_devs_above: 高于基线 %{value}σ
|
|
1182
|
+
threshold_errors:
|
|
1183
|
+
other: "%{value} 个错误"
|
|
1184
|
+
view_in_dashboard: 在面板中查看
|
|
1185
|
+
storm:
|
|
1186
|
+
detected: 在 %{application} 于 %{started_at} 检测到错误风暴。
|
|
1187
|
+
mode:
|
|
1188
|
+
open: 仅计数模式(统计出现次数,暂停详情采集)
|
|
1189
|
+
shedding: 丢弃模式(已启用上下文抽样)
|
|
1190
|
+
engaged: 已触发风暴保护 — %{mode}。
|
|
1191
|
+
suppressed: 在风暴结束前,单条错误通知将被抑制;精确计数会予以保留。
|
|
1192
|
+
dashboard: 面板:%{url}
|
|
1193
|
+
time:
|
|
1194
|
+
ago: "%{duration}前"
|
|
1195
|
+
formats:
|
|
1196
|
+
full: "%Y年%m月%d日 %H:%M:%S"
|
|
1197
|
+
short: "%m/%d %H:%M"
|
|
1198
|
+
date_only: "%Y年%m月%d日"
|
|
1199
|
+
time_only: "%H:%M:%S"
|
|
1200
|
+
datetime: "%Y年%m月%d日 %H:%M"
|
|
1201
|
+
health:
|
|
1202
|
+
columns:
|
|
1203
|
+
error: 错误
|
|
1204
|
+
last_seen: 最近出现
|
|
1205
|
+
database:
|
|
1206
|
+
title: 数据库状态
|
|
1207
|
+
stats:
|
|
1208
|
+
errors_with_pool: 含连接池数据的错误
|
|
1209
|
+
peak_utilization: 峰值使用率
|
|
1210
|
+
total_dead: 失效连接总数
|
|
1211
|
+
total_waiting: 等待总数
|
|
1212
|
+
live:
|
|
1213
|
+
title: 数据库实时状态
|
|
1214
|
+
non_postgresql: 检测到非 PostgreSQL 适配器(%{adapter})。
|
|
1215
|
+
non_postgresql_hint: 表、索引和活动的实时统计需要 PostgreSQL。连接池与历史数据仍可在下方查看。
|
|
1216
|
+
pool_size: 连接池大小
|
|
1217
|
+
busy: 忙碌
|
|
1218
|
+
idle: 空闲
|
|
1219
|
+
dead: 失效
|
|
1220
|
+
waiting: 等待中
|
|
1221
|
+
summary:
|
|
1222
|
+
total_db_size: 数据库总大小
|
|
1223
|
+
tables: 数据表
|
|
1224
|
+
unused_indexes: 未使用的索引
|
|
1225
|
+
active_connections: 活跃连接
|
|
1226
|
+
host_tables:
|
|
1227
|
+
title: 宿主应用的数据表
|
|
1228
|
+
gem_tables:
|
|
1229
|
+
title: Error Dashboard 的数据表
|
|
1230
|
+
unused_indexes:
|
|
1231
|
+
title: 未使用的索引
|
|
1232
|
+
column_index: 索引
|
|
1233
|
+
column_table: 数据表
|
|
1234
|
+
column_size: 大小
|
|
1235
|
+
activity:
|
|
1236
|
+
title: 连接活动
|
|
1237
|
+
total_badge: 共 %{count} 个
|
|
1238
|
+
waiting_badge: "%{count} 个等待中"
|
|
1239
|
+
column_state: 状态
|
|
1240
|
+
column_count: 数量
|
|
1241
|
+
column_waiting: 等待中
|
|
1242
|
+
table_columns:
|
|
1243
|
+
table: 数据表
|
|
1244
|
+
est_rows: 预估行数
|
|
1245
|
+
size: 大小
|
|
1246
|
+
seq_scans: 顺序扫描
|
|
1247
|
+
idx_scans: 索引扫描
|
|
1248
|
+
dead_tuples: 死元组
|
|
1249
|
+
last_vacuum: 上次 vacuum
|
|
1250
|
+
never_vacuumed: 从未
|
|
1251
|
+
pool_history:
|
|
1252
|
+
title: 按错误查看连接池
|
|
1253
|
+
empty_title: 未找到连接池数据
|
|
1254
|
+
empty_message_html: 最近 %{days} 天的系统状态快照中未检测到连接池统计。启用 <code>enable_system_health
|
|
1255
|
+
= true</code> 以在错误发生时采集连接池数据。
|
|
1256
|
+
column_error: 错误
|
|
1257
|
+
column_error_type: 错误类型
|
|
1258
|
+
column_utilization: 使用率
|
|
1259
|
+
column_busy: 忙碌
|
|
1260
|
+
column_idle: 空闲
|
|
1261
|
+
column_dead: 失效
|
|
1262
|
+
column_waiting: 等待中
|
|
1263
|
+
column_pool_size: 连接池大小
|
|
1264
|
+
column_last_seen: 最近出现
|
|
1265
|
+
tip: 错误期间使用率偏高,可能意味着连接池耗尽或存在长时间运行的查询。
|
|
1266
|
+
guide_link: 数据库指南
|
|
1267
|
+
llm:
|
|
1268
|
+
title: LLM 状态
|
|
1269
|
+
disabled:
|
|
1270
|
+
title: 尚未启用 LLM 可观测性
|
|
1271
|
+
message: 要在此查看各模型的 LLM 统计,请启用 LLM 可观测性和 breadcrumbs。
|
|
1272
|
+
enable_in_html: 在 <code>config/initializers/rails_error_dashboard.rb</code>
|
|
1273
|
+
中启用:
|
|
1274
|
+
empty:
|
|
1275
|
+
title: 未检测到 LLM 调用
|
|
1276
|
+
message: 最近 %{days} 天的错误 breadcrumbs 中未捕获任何 LLM API 调用。可通过以下三种方式之一进行埋点:
|
|
1277
|
+
tab_otel: OpenTelemetry
|
|
1278
|
+
tab_faraday: Faraday / RubyLLM
|
|
1279
|
+
tab_manual: 手动
|
|
1280
|
+
otel_hint: 已经在运行 OTel collector?引入这个 gem,我们会自动订阅。
|
|
1281
|
+
otel_requires_html: 需要 <code>enable_llm_observability = true</code>。
|
|
1282
|
+
faraday_hint: 在用 <code>ruby_llm</code>、<code>openai</code>、<code>anthropic</code>
|
|
1283
|
+
或其他基于 Faraday 的 SDK?只需插入一次中间件。
|
|
1284
|
+
faraday_note: RED 会从请求与响应中自动识别提供方、模型和 token 数。
|
|
1285
|
+
manual_hint: 直接使用 <code>Net::HTTP</code>、gRPC、本地推理或其他方式 — 请手动埋点。
|
|
1286
|
+
manual_note_html: 费用会根据 token 自动估算 — payload 可通过 <code>cost_usd_estimate:</code>
|
|
1287
|
+
覆盖。
|
|
1288
|
+
stats:
|
|
1289
|
+
calls: LLM 调用
|
|
1290
|
+
models: 模型
|
|
1291
|
+
errors_with_llm: 涉及 LLM 的错误(%{rate}%)
|
|
1292
|
+
total_cost: 总费用
|
|
1293
|
+
by_model:
|
|
1294
|
+
title: 各模型的表现
|
|
1295
|
+
column_provider_model: 提供方 · 模型
|
|
1296
|
+
column_calls: 调用次数
|
|
1297
|
+
column_tools: 工具
|
|
1298
|
+
column_avg_tokens: 平均 token
|
|
1299
|
+
column_avg_latency: 平均延迟
|
|
1300
|
+
column_error_rate: 错误率
|
|
1301
|
+
column_cost: 费用
|
|
1302
|
+
column_top_error: 最常见错误
|
|
1303
|
+
column_last_seen: 最近出现
|
|
1304
|
+
avg_tokens_in: 输入
|
|
1305
|
+
avg_tokens_out: 输出
|
|
1306
|
+
failed_count: "%{count} 次失败"
|
|
1307
|
+
tip_html: 某个模型错误率偏高,通常意味着配额或限流问题。延迟过高(>5 秒)则提示提供方服务降级。
|
|
1308
|
+
guide_link: 埋点指南
|
|
1309
|
+
cache:
|
|
1310
|
+
title: 缓存状态
|
|
1311
|
+
empty:
|
|
1312
|
+
title: 未找到缓存活动
|
|
1313
|
+
message: 最近 %{days} 天的错误 breadcrumbs 中未检测到缓存操作。
|
|
1314
|
+
how_it_works: 缓存跟踪的工作方式:
|
|
1315
|
+
step_breadcrumbs_html: 必须启用 breadcrumbs(<code>enable_breadcrumbs = true</code>)
|
|
1316
|
+
step_capture: 在产生错误的请求中,缓存的读写会被记录为 breadcrumbs
|
|
1317
|
+
step_hit_status: 读操作会记录命中与未命中状态
|
|
1318
|
+
step_sort: 本页按错误展示缓存表现,最差的排在最前
|
|
1319
|
+
stats:
|
|
1320
|
+
errors_with_cache: 涉及缓存的错误
|
|
1321
|
+
avg_hit_rate: 平均命中率
|
|
1322
|
+
total_ops: 缓存操作总数
|
|
1323
|
+
table:
|
|
1324
|
+
title: 按错误查看缓存表现
|
|
1325
|
+
column_error: 错误
|
|
1326
|
+
column_reads: 读取
|
|
1327
|
+
column_writes: 写入
|
|
1328
|
+
column_hit_rate: 命中率
|
|
1329
|
+
column_total_time: 总耗时
|
|
1330
|
+
column_slowest_op: 最慢操作
|
|
1331
|
+
column_last_seen: 最近出现
|
|
1332
|
+
tip: 命中率偏低可能说明缓存键过期太快,或者没有被正确写入。
|
|
1333
|
+
guide_link: Rails 缓存指南
|
|
1334
|
+
job:
|
|
1335
|
+
title: 任务状态
|
|
1336
|
+
empty:
|
|
1337
|
+
title: 未找到任务队列数据
|
|
1338
|
+
message: 最近 %{days} 天的系统状态快照中未检测到任务队列统计。
|
|
1339
|
+
how_it_works: 任务状态跟踪的工作方式:
|
|
1340
|
+
step_enable_html: 必须启用系统状态(<code>enable_system_health = true</code>)
|
|
1341
|
+
step_capture: 检测到 Sidekiq、SolidQueue 或 GoodJob 时会自动采集任务队列统计
|
|
1342
|
+
step_collected: 统计数据在捕获时按错误逐条收集
|
|
1343
|
+
step_sort: 本页按错误展示任务队列状态,并按失败数量排序
|
|
1344
|
+
stats:
|
|
1345
|
+
errors_with_jobs: 含任务数据的错误
|
|
1346
|
+
total_failed: 失败任务总数
|
|
1347
|
+
adapters_detected: 已检测到的适配器
|
|
1348
|
+
table:
|
|
1349
|
+
title: 按错误查看任务队列状态
|
|
1350
|
+
column_error: 错误
|
|
1351
|
+
column_adapter: 适配器
|
|
1352
|
+
column_failed: 失败
|
|
1353
|
+
column_queued: 排队中
|
|
1354
|
+
column_other_stats: 其他统计
|
|
1355
|
+
column_last_seen: 最近出现
|
|
1356
|
+
enqueued: 已入队
|
|
1357
|
+
ready: 就绪
|
|
1358
|
+
queued: 排队中
|
|
1359
|
+
other_stats_sidekiq: 已死亡:%{dead},重试:%{retry},worker:%{workers}
|
|
1360
|
+
other_stats_solid_queue: 已领取:%{claimed},已阻塞:%{blocked},已计划:%{scheduled}
|
|
1361
|
+
other_stats_good_job: 已完成:%{finished}
|
|
1362
|
+
tip: 错误期间失败任务偏多,可能意味着任务队列饱和或上游服务出现问题。
|
|
1363
|
+
guide_link: Active Job 指南
|
|
1364
|
+
actioncable:
|
|
1365
|
+
title: ActionCable 状态
|
|
1366
|
+
empty:
|
|
1367
|
+
title: 未找到 ActionCable 事件
|
|
1368
|
+
message: 最近 %{days} 天的错误 breadcrumbs 中未检测到 ActionCable 的频道操作、消息推送或订阅事件。
|
|
1369
|
+
how_it_works: ActionCable 跟踪的工作方式:
|
|
1370
|
+
step_breadcrumbs_html: 必须启用 breadcrumbs(<code>enable_breadcrumbs = true</code>)
|
|
1371
|
+
step_tracking_html: 必须启用 ActionCable 跟踪(<code>enable_actioncable_tracking
|
|
1372
|
+
= true</code>)
|
|
1373
|
+
step_configured: 应用中必须已配置 ActionCable
|
|
1374
|
+
step_capture: 在产生错误的请求中,频道操作、消息推送和订阅事件会被记录为 breadcrumbs
|
|
1375
|
+
stats:
|
|
1376
|
+
active_channels: 活跃频道
|
|
1377
|
+
total_events: 事件总数
|
|
1378
|
+
subscription_rejections: 订阅被拒次数
|
|
1379
|
+
table:
|
|
1380
|
+
title: 按频道查看 ActionCable 事件
|
|
1381
|
+
column_channel: 频道
|
|
1382
|
+
column_actions: 操作
|
|
1383
|
+
column_transmissions: 消息推送
|
|
1384
|
+
column_subscriptions: 订阅
|
|
1385
|
+
column_rejections: 拒绝
|
|
1386
|
+
column_errors: 错误
|
|
1387
|
+
column_last_seen: 最近出现
|
|
1388
|
+
tip: ActionCable 事件只在与错误同时发生时被记录。拒绝次数偏多可能意味着认证或授权存在问题。
|
|
1389
|
+
guide_link: ActionCable 指南
|
|
1390
|
+
activestorage:
|
|
1391
|
+
title: ActiveStorage 状态
|
|
1392
|
+
empty:
|
|
1393
|
+
title: 未找到 ActiveStorage 事件
|
|
1394
|
+
message: 最近 %{days} 天的错误 breadcrumbs 中未检测到 ActiveStorage 的服务操作。
|
|
1395
|
+
how_it_works: ActiveStorage 跟踪的工作方式:
|
|
1396
|
+
step_breadcrumbs_html: 必须启用 breadcrumbs(<code>enable_breadcrumbs = true</code>)
|
|
1397
|
+
step_tracking_html: 必须启用 ActiveStorage 跟踪(<code>enable_activestorage_tracking
|
|
1398
|
+
= true</code>)
|
|
1399
|
+
step_configured: 应用中必须已配置 ActiveStorage
|
|
1400
|
+
step_capture: 在产生错误的请求中,上传、下载和删除会被记录为 breadcrumbs
|
|
1401
|
+
stats:
|
|
1402
|
+
storage_services: 存储服务
|
|
1403
|
+
total_operations: 操作总数
|
|
1404
|
+
errors_with_storage: 涉及存储操作的错误
|
|
1405
|
+
table:
|
|
1406
|
+
title: 按服务查看存储操作
|
|
1407
|
+
column_service: 服务
|
|
1408
|
+
column_uploads: 上传
|
|
1409
|
+
column_downloads: 下载
|
|
1410
|
+
column_deletes: 删除
|
|
1411
|
+
column_exists: 存在性检查
|
|
1412
|
+
column_total: 合计
|
|
1413
|
+
column_avg_duration: 平均耗时
|
|
1414
|
+
column_slowest: 最慢
|
|
1415
|
+
column_errors: 错误
|
|
1416
|
+
column_last_seen: 最近出现
|
|
1417
|
+
tip: 存储操作缓慢可能意味着网络问题、文件过大或服务提供方限流。
|
|
1418
|
+
guide_link: ActiveStorage 指南
|
|
1419
|
+
analytics:
|
|
1420
|
+
stability:
|
|
1421
|
+
green: 绿色
|
|
1422
|
+
yellow: 黄色
|
|
1423
|
+
red: 红色
|
|
1424
|
+
trend:
|
|
1425
|
+
increasing_significantly: 显著上升
|
|
1426
|
+
increasing: 上升
|
|
1427
|
+
stable: 平稳
|
|
1428
|
+
decreasing: 下降
|
|
1429
|
+
decreasing_significantly: 显著下降
|
|
1430
|
+
correlation_strength:
|
|
1431
|
+
strong: 强
|
|
1432
|
+
moderate: 中等
|
|
1433
|
+
weak: 弱
|
|
1434
|
+
days_pill:
|
|
1435
|
+
'7': 7 天
|
|
1436
|
+
'14': 14 天
|
|
1437
|
+
'30': 30 天
|
|
1438
|
+
'60': 60 天
|
|
1439
|
+
'90': 90 天
|
|
1440
|
+
overview:
|
|
1441
|
+
title: 分析
|
|
1442
|
+
stats:
|
|
1443
|
+
total_errors: 错误总数
|
|
1444
|
+
unresolved: 未解决
|
|
1445
|
+
resolution_rate: 解决率
|
|
1446
|
+
trend_chart:
|
|
1447
|
+
title: 错误趋势(最近 %{days} 天)
|
|
1448
|
+
platform_chart:
|
|
1449
|
+
title: 按平台统计错误
|
|
1450
|
+
quick_links: 快捷链接:
|
|
1451
|
+
type_chart:
|
|
1452
|
+
title: 出现最多的 10 种错误类型
|
|
1453
|
+
hour_chart:
|
|
1454
|
+
title: 按小时统计错误
|
|
1455
|
+
top_users:
|
|
1456
|
+
title: 受影响最多的 10 位用户
|
|
1457
|
+
type_breakdown:
|
|
1458
|
+
title: 错误类型分布
|
|
1459
|
+
subtitle: 最近 %{days} 天
|
|
1460
|
+
column_rank: 排名
|
|
1461
|
+
column_error_type: 错误类型
|
|
1462
|
+
column_count: 数量
|
|
1463
|
+
column_percentage: 占比
|
|
1464
|
+
column_actions: 操作
|
|
1465
|
+
view_errors: 查看错误
|
|
1466
|
+
recurring:
|
|
1467
|
+
title: 反复出现的问题
|
|
1468
|
+
high_frequency_title: 高频错误
|
|
1469
|
+
column_error_type: 错误类型
|
|
1470
|
+
column_total_occurrences: 总出现次数
|
|
1471
|
+
column_duration: 持续时间
|
|
1472
|
+
column_first_seen: 首次出现
|
|
1473
|
+
column_last_seen: 最近出现
|
|
1474
|
+
column_status: 状态
|
|
1475
|
+
duration_days: "%{days} 天"
|
|
1476
|
+
active: 活跃
|
|
1477
|
+
inactive: 不活跃
|
|
1478
|
+
empty_high_frequency: 最近 %{days} 天未发现高频错误。
|
|
1479
|
+
persistent_title: 长期未解决的错误
|
|
1480
|
+
persistent_hint: 这些错误已超过 7 天未解决。
|
|
1481
|
+
column_message: 消息
|
|
1482
|
+
column_platform: 平台
|
|
1483
|
+
column_count: 数量
|
|
1484
|
+
column_age: 存在时长
|
|
1485
|
+
column_actions: 操作
|
|
1486
|
+
age_days: "%{days} 天"
|
|
1487
|
+
view: 查看
|
|
1488
|
+
releases:
|
|
1489
|
+
version_chart_title: 按发布版本统计错误
|
|
1490
|
+
comparison_title: 最新版与上一版对比
|
|
1491
|
+
latest_version: 最新版本
|
|
1492
|
+
latest_errors:
|
|
1493
|
+
other: "%{count} 个错误"
|
|
1494
|
+
latest_critical:
|
|
1495
|
+
other: "%{count} 个严重"
|
|
1496
|
+
previous_version: 上一版本
|
|
1497
|
+
previous_errors:
|
|
1498
|
+
other: "%{count} 个错误"
|
|
1499
|
+
previous_critical:
|
|
1500
|
+
other: "%{count} 个严重"
|
|
1501
|
+
change: 变化
|
|
1502
|
+
empty: 发布数据不足,无法进行对比。
|
|
1503
|
+
problematic_title: 检测到有问题的发布版本
|
|
1504
|
+
problematic_hint_html: 以下发布版本的错误率明显偏高(>平均值的 %{multiplier} 倍):
|
|
1505
|
+
problematic_entry: "%{count} 个错误(%{critical} 个严重,高于平均 %{deviation}%)"
|
|
1506
|
+
mttr:
|
|
1507
|
+
title: 解决效率(MTTR)
|
|
1508
|
+
overall_title: 整体 MTTR
|
|
1509
|
+
overall_hint: 平均解决时长
|
|
1510
|
+
fastest_title: 最快
|
|
1511
|
+
fastest_hint: 最短解决时长
|
|
1512
|
+
slowest_title: 最慢
|
|
1513
|
+
slowest_hint: 最长解决时长
|
|
1514
|
+
total_resolved_title: 已解决总数
|
|
1515
|
+
total_resolved_hint: 最近 %{days} 天内
|
|
1516
|
+
by_platform_title: 按平台统计 MTTR
|
|
1517
|
+
by_severity_title: 按严重程度统计 MTTR
|
|
1518
|
+
column_severity: 严重程度
|
|
1519
|
+
column_avg_time: 平均解决时长
|
|
1520
|
+
column_actions: 操作
|
|
1521
|
+
hours: "%{hours} 小时"
|
|
1522
|
+
view: 查看
|
|
1523
|
+
trend_title: MTTR 趋势(按周)
|
|
1524
|
+
correlation:
|
|
1525
|
+
title: 错误关联分析
|
|
1526
|
+
trend_analysis:
|
|
1527
|
+
title: 趋势分析
|
|
1528
|
+
current_period: 本期
|
|
1529
|
+
previous_period: 上期
|
|
1530
|
+
change: 变化
|
|
1531
|
+
period_range: "%{start} — %{end}"
|
|
1532
|
+
problematic_releases:
|
|
1533
|
+
title: 有问题的发布版本
|
|
1534
|
+
hint: 错误率超过平均值两倍的版本
|
|
1535
|
+
column_version: 版本
|
|
1536
|
+
column_error_count: 错误数量
|
|
1537
|
+
column_deviation: 与平均值的偏差
|
|
1538
|
+
column_critical: 严重错误
|
|
1539
|
+
column_unique_types: 错误类型数
|
|
1540
|
+
column_platforms: 平台
|
|
1541
|
+
column_actions: 操作
|
|
1542
|
+
view: 查看
|
|
1543
|
+
by_version:
|
|
1544
|
+
title: 按应用版本统计错误
|
|
1545
|
+
column_version: 版本
|
|
1546
|
+
column_errors: 错误
|
|
1547
|
+
column_types: 类型
|
|
1548
|
+
column_critical: 严重
|
|
1549
|
+
by_git_sha:
|
|
1550
|
+
title: 按 Git SHA 统计错误
|
|
1551
|
+
column_sha: SHA
|
|
1552
|
+
column_errors: 错误
|
|
1553
|
+
column_types: 类型
|
|
1554
|
+
column_versions: 版本
|
|
1555
|
+
multi_error_users:
|
|
1556
|
+
title: 遇到多种错误类型的用户
|
|
1557
|
+
hint: 遇到 2 种及以上不同错误类型的用户
|
|
1558
|
+
truncated: 显示 %{total} 位用户中的 %{shown} 位
|
|
1559
|
+
time_correlated:
|
|
1560
|
+
title: 时间上相关的错误
|
|
1561
|
+
hint: 在一天中相近时段出现的错误类型
|
|
1562
|
+
column_error_type_a: 错误类型 A
|
|
1563
|
+
column_error_type_b: 错误类型 B
|
|
1564
|
+
column_correlation: 相关度
|
|
1565
|
+
column_strength: 强度
|
|
1566
|
+
truncated: 显示 %{total} 组相关错误中的 %{shown} 组
|
|
1567
|
+
platform_specific:
|
|
1568
|
+
title: 平台专属错误与跨平台错误
|
|
1569
|
+
occurrences:
|
|
1570
|
+
other: "%{count} 次出现"
|
|
1571
|
+
platform_specific: 平台专属
|
|
1572
|
+
cross_platform: 跨平台
|
|
1573
|
+
also_on: 同时出现在:%{platforms}
|
|
1574
|
+
empty:
|
|
1575
|
+
title: 数据不足,无法进行关联分析
|
|
1576
|
+
message: 关联分析需要更多错误数据才能识别模式。
|
|
1577
|
+
needed_title: 需要具备:
|
|
1578
|
+
needed_version: 应用版本跟踪,用于与发布版本关联
|
|
1579
|
+
needed_user: 用户跟踪,用于按用户关联
|
|
1580
|
+
needed_types: 多种错误类型,用于时间关联
|
|
1581
|
+
hint: 待记录更多错误后再回来查看。
|
|
1582
|
+
platform_comparison:
|
|
1583
|
+
title: 平台健康度对比
|
|
1584
|
+
empty:
|
|
1585
|
+
title: 暂无平台数据
|
|
1586
|
+
message: 所选时间范围(%{days} 天)内未记录任何错误。
|
|
1587
|
+
hint: 可以尝试选择更长的时间范围,或稍后再来查看。
|
|
1588
|
+
health_card:
|
|
1589
|
+
healthy: 正常
|
|
1590
|
+
warning: 警告
|
|
1591
|
+
critical: 严重
|
|
1592
|
+
stability_score: 稳定性评分
|
|
1593
|
+
total_errors: 错误总数:
|
|
1594
|
+
critical_errors: 严重:
|
|
1595
|
+
unresolved: 未解决:
|
|
1596
|
+
resolution_rate: 解决率:
|
|
1597
|
+
error_velocity: 错误增长速度:
|
|
1598
|
+
view_errors: 查看 %{platform} 的错误
|
|
1599
|
+
error_rate_chart:
|
|
1600
|
+
title: 按平台统计错误率
|
|
1601
|
+
daily_trend_chart:
|
|
1602
|
+
title: 每日错误趋势
|
|
1603
|
+
severity_distribution:
|
|
1604
|
+
title: 严重程度分布
|
|
1605
|
+
severity_count: "%{label}:%{count}"
|
|
1606
|
+
breakdown_html: "%{critical} | %{high} | %{medium} | %{low}"
|
|
1607
|
+
empty: 暂无错误
|
|
1608
|
+
resolution_time_chart:
|
|
1609
|
+
title: 平均解决时长
|
|
1610
|
+
cross_platform:
|
|
1611
|
+
title: 跨平台错误
|
|
1612
|
+
column_error_type: 错误类型
|
|
1613
|
+
column_platforms: 平台
|
|
1614
|
+
column_total_occurrences: 总出现次数
|
|
1615
|
+
column_breakdown: 分布
|
|
1616
|
+
top_errors:
|
|
1617
|
+
title: 主要错误 — %{platform}
|
|
1618
|
+
empty: 未找到错误
|
|
1619
|
+
releases:
|
|
1620
|
+
title: Releases
|
|
1621
|
+
empty:
|
|
1622
|
+
title: 未找到发布数据
|
|
1623
|
+
message: 最近 %{days} 天的错误中未检测到版本信息。
|
|
1624
|
+
how_to_title: 如何启用发布跟踪:
|
|
1625
|
+
step_config_html: 在初始化文件中设置 %{option}
|
|
1626
|
+
step_env_html: 或者设置环境变量 %{env_var}
|
|
1627
|
+
step_git_sha_html: Git SHA 会从 %{git_sha}、%{heroku} 或 %{render} 自动识别
|
|
1628
|
+
step_captured: 错误发生时会自动记录版本与 SHA
|
|
1629
|
+
summary:
|
|
1630
|
+
releases: 发布版本
|
|
1631
|
+
current_release: 当前版本
|
|
1632
|
+
avg_errors: 每个版本的平均错误数
|
|
1633
|
+
problematic: 有问题的版本
|
|
1634
|
+
current_card:
|
|
1635
|
+
title: 当前版本:
|
|
1636
|
+
live_badge: 运行中
|
|
1637
|
+
errors: 错误
|
|
1638
|
+
error_types: 错误类型
|
|
1639
|
+
new_errors: 新增错误
|
|
1640
|
+
stability: 稳定性
|
|
1641
|
+
git_sha: Git SHA
|
|
1642
|
+
vs_previous: 与上一版对比
|
|
1643
|
+
timeline:
|
|
1644
|
+
title: 发布时间线
|
|
1645
|
+
column_version: 版本
|
|
1646
|
+
column_git_sha: Git SHA
|
|
1647
|
+
column_time_range: 时间范围
|
|
1648
|
+
column_errors: 错误
|
|
1649
|
+
column_types: 类型
|
|
1650
|
+
column_new_errors: 新增错误
|
|
1651
|
+
column_stability: 稳定性
|
|
1652
|
+
column_vs_previous: 与上一版对比
|
|
1653
|
+
current_badge: 当前
|
|
1654
|
+
problematic_badge: 有问题
|
|
1655
|
+
more_shas: "+%{count}"
|
|
1656
|
+
new_count:
|
|
1657
|
+
other: "%{count} 个新增"
|
|
1658
|
+
footer_html: 稳定性:<span class="badge bg-success">绿色</span> 不高于平均错误数,<span
|
|
1659
|
+
class="badge bg-warning">黄色</span> 为平均值的 1–2 倍,<span class="badge bg-danger">红色</span>
|
|
1660
|
+
超过平均值的 2 倍。“新增”错误是指在该版本中首次出现的错误类型。
|
|
1661
|
+
user_impact:
|
|
1662
|
+
title: 用户影响
|
|
1663
|
+
empty:
|
|
1664
|
+
title: 暂无用户影响数据
|
|
1665
|
+
message: 最近 %{days} 天内未找到关联到用户的错误。
|
|
1666
|
+
how_tracked_title: 用户影响的跟踪方式:
|
|
1667
|
+
step_user_id_html: 错误必须关联 %{attribute}
|
|
1668
|
+
step_auto_html: 通过 %{current_attributes} 或 %{current_user} 自动识别
|
|
1669
|
+
step_config_html: 或者在初始化文件中设置 %{option}
|
|
1670
|
+
summary:
|
|
1671
|
+
error_types: 关联到用户的错误类型
|
|
1672
|
+
total_users_affected: 受影响用户总数
|
|
1673
|
+
most_impactful: 影响最大的错误
|
|
1674
|
+
total_users: 用户总数(用于计算百分比)
|
|
1675
|
+
table:
|
|
1676
|
+
title: 按用户影响排序的错误
|
|
1677
|
+
column_rank: "#"
|
|
1678
|
+
column_error_type: 错误类型
|
|
1679
|
+
column_unique_users: 独立用户数
|
|
1680
|
+
column_occurrences: 出现次数
|
|
1681
|
+
column_impact_percentage: 用户影响百分比
|
|
1682
|
+
column_severity: 严重程度
|
|
1683
|
+
column_last_seen: 最近出现
|
|
1684
|
+
users:
|
|
1685
|
+
other: "%{count} 位用户"
|
|
1686
|
+
occurrences:
|
|
1687
|
+
other: "%{count} 次"
|
|
1688
|
+
footer: 按受影响的独立用户数排序,而非按出现次数。影响 1000 位用户各一次的错误,比让 1 位用户遇到 1000 次的错误更严重。
|
|
1689
|
+
js:
|
|
1690
|
+
months:
|
|
1691
|
+
- 1月
|
|
1692
|
+
- 2月
|
|
1693
|
+
- 3月
|
|
1694
|
+
- 4月
|
|
1695
|
+
- 5月
|
|
1696
|
+
- 6月
|
|
1697
|
+
- 7月
|
|
1698
|
+
- 8月
|
|
1699
|
+
- 9月
|
|
1700
|
+
- 10月
|
|
1701
|
+
- 11月
|
|
1702
|
+
- 12月
|
|
1703
|
+
months_short:
|
|
1704
|
+
- 1月
|
|
1705
|
+
- 2月
|
|
1706
|
+
- 3月
|
|
1707
|
+
- 4月
|
|
1708
|
+
- 5月
|
|
1709
|
+
- 6月
|
|
1710
|
+
- 7月
|
|
1711
|
+
- 8月
|
|
1712
|
+
- 9月
|
|
1713
|
+
- 10月
|
|
1714
|
+
- 11月
|
|
1715
|
+
- 12月
|
|
1716
|
+
days:
|
|
1717
|
+
- 星期日
|
|
1718
|
+
- 星期一
|
|
1719
|
+
- 星期二
|
|
1720
|
+
- 星期三
|
|
1721
|
+
- 星期四
|
|
1722
|
+
- 星期五
|
|
1723
|
+
- 星期六
|
|
1724
|
+
days_short:
|
|
1725
|
+
- 周日
|
|
1726
|
+
- 周一
|
|
1727
|
+
- 周二
|
|
1728
|
+
- 周三
|
|
1729
|
+
- 周四
|
|
1730
|
+
- 周五
|
|
1731
|
+
- 周六
|
|
1732
|
+
meridian:
|
|
1733
|
+
am: 上午
|
|
1734
|
+
pm: 下午
|
|
1735
|
+
intl_locale: zh-CN
|
|
1736
|
+
duration:
|
|
1737
|
+
seconds:
|
|
1738
|
+
other: "%{count} 秒"
|
|
1739
|
+
minutes:
|
|
1740
|
+
other: "%{count} 分钟"
|
|
1741
|
+
hours:
|
|
1742
|
+
other: "%{count} 小时"
|
|
1743
|
+
days:
|
|
1744
|
+
other: "%{count} 天"
|
|
1745
|
+
months:
|
|
1746
|
+
other: "%{count} 个月"
|
|
1747
|
+
years:
|
|
1748
|
+
other: "%{count} 年"
|
|
1749
|
+
selected:
|
|
1750
|
+
other: 已选择 %{count} 项
|
|
1751
|
+
titles:
|
|
1752
|
+
local_time: 你的本地时间(点击查看 UTC)
|
|
1753
|
+
utc_time: UTC 时间(点击查看本地时间)
|
|
1754
|
+
exact_time: 点击查看准确时间
|
|
1755
|
+
relative_time: 点击查看相对时间
|
|
1756
|
+
ui_js:
|
|
1757
|
+
toast:
|
|
1758
|
+
loading: 加载中...
|
|
1759
|
+
copied: 已复制!
|
|
1760
|
+
copied_to_clipboard: 已复制到剪贴板!
|
|
1761
|
+
failed: 失败
|
|
1762
|
+
copy_failed: 复制到剪贴板失败
|
|
1763
|
+
downloaded: 已下载!
|
|
1764
|
+
ai_help:
|
|
1765
|
+
question_required: 请先输入问题。
|
|
1766
|
+
streaming: 正在流式输出...
|
|
1767
|
+
streaming_unsupported: 此浏览器不支持流式输出。
|
|
1768
|
+
request_failed: 请求失败。
|
|
1769
|
+
sections:
|
|
1770
|
+
error: 错误
|
|
1771
|
+
request: 请求
|
|
1772
|
+
deprecations: Deprecations
|
|
1773
|
+
n_plus_one: N+1
|
|
1774
|
+
cache: Cache
|
|
1775
|
+
breadcrumbs: Breadcrumbs
|
|
1776
|
+
similar: 相似
|
|
1777
|
+
co_occurring: 同时出现
|
|
1778
|
+
timeline: 时间线
|
|
1779
|
+
issue: 工单
|
|
1780
|
+
discussion: 讨论
|
|
1781
|
+
cascades: 级联
|
|
1782
|
+
patterns: 模式
|
|
1783
|
+
charts:
|
|
1784
|
+
axis_date: 日期
|
|
1785
|
+
axis_hour: 小时
|
|
1786
|
+
axis_error_type: 错误类型
|
|
1787
|
+
axis_count: 数量
|
|
1788
|
+
axis_number_of_errors: 错误数量
|
|
1789
|
+
axis_hours: 小时
|
|
1790
|
+
series_total_errors: 错误总数
|
|
1791
|
+
series_hours_to_resolve: 解决耗时(小时)
|