patient_http-sidekiq 1.0.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 +7 -0
- data/ARCHITECTURE.md +496 -0
- data/CHANGELOG.md +16 -0
- data/MIT-LICENSE +20 -0
- data/README.md +620 -0
- data/VERSION +1 -0
- data/lib/patient_http/sidekiq/callback_worker.rb +96 -0
- data/lib/patient_http/sidekiq/configuration.rb +175 -0
- data/lib/patient_http/sidekiq/context.rb +61 -0
- data/lib/patient_http/sidekiq/lifecycle_hooks.rb +42 -0
- data/lib/patient_http/sidekiq/processor_observer.rb +49 -0
- data/lib/patient_http/sidekiq/request_executor.rb +104 -0
- data/lib/patient_http/sidekiq/request_worker.rb +57 -0
- data/lib/patient_http/sidekiq/stats.rb +119 -0
- data/lib/patient_http/sidekiq/task_handler.rb +81 -0
- data/lib/patient_http/sidekiq/task_monitor.rb +542 -0
- data/lib/patient_http/sidekiq/task_monitor_thread.rb +154 -0
- data/lib/patient_http/sidekiq/web_ui/assets/patient-http/css/patient_http.css +249 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ar.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/cs.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/da.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/de.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/el.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/en.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/es.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/fa.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/fr.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/gd.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/he.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/hi.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/it.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ja.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ko.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/lt.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/nb.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/nl.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/pl.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/pt-BR.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/pt.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ru.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/sv.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ta.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/tr.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/uk.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/ur.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/vi.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/zh-CN.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/locales/zh-TW.yml +26 -0
- data/lib/patient_http/sidekiq/web_ui/views/patient_http.html.erb +142 -0
- data/lib/patient_http/sidekiq/web_ui.rb +69 -0
- data/lib/patient_http/sidekiq.rb +328 -0
- data/lib/patient_http-sidekiq.rb +3 -0
- data/patient_http-sidekiq.gemspec +46 -0
- metadata +140 -0
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
/* PatientHttp Dashboard Stylesheet */
|
|
2
|
+
|
|
3
|
+
.patient-http-dashboard {
|
|
4
|
+
--patient-http-primary: var(--color-brand);
|
|
5
|
+
--patient-http-success: var(--color-ok);
|
|
6
|
+
--patient-http-error: var(--color-err);
|
|
7
|
+
--patient-http-warning: var(--color-warn);
|
|
8
|
+
--patient-http-bg: var(--color-bg);
|
|
9
|
+
--patient-http-text: var(--color-fg);
|
|
10
|
+
--patient-http-border: var(--color-border);
|
|
11
|
+
--patient-http-subtle: var(--color-subtle);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.patient-http-dashboard .section {
|
|
15
|
+
margin-top: 1.5rem;
|
|
16
|
+
background: var(--patient-http-bg);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.patient-http-dashboard .header-with-button {
|
|
20
|
+
display: flex;
|
|
21
|
+
justify-content: space-between;
|
|
22
|
+
align-items: center;
|
|
23
|
+
margin-bottom: var(--space-lg, 1.5rem);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.patient-http-dashboard .header-with-button h2 {
|
|
27
|
+
margin: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.patient-http-dashboard .clear-stats-form {
|
|
31
|
+
margin: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.patient-http-dashboard .clear-stats-form .btn {
|
|
35
|
+
font-size: 0.875rem;
|
|
36
|
+
padding: 0.5rem 1rem;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.patient-http-dashboard h2 {
|
|
40
|
+
margin: 0 0 var(--space-lg, 1.5rem) 0;
|
|
41
|
+
color: var(--patient-http-text);
|
|
42
|
+
font-size: 1.75rem;
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
letter-spacing: -0.015em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.patient-http-dashboard h3 {
|
|
48
|
+
margin: var(--space-xl, 2rem) 0 var(--space-lg, 1.5rem) 0;
|
|
49
|
+
color: var(--patient-http-text);
|
|
50
|
+
font-size: 1.25rem;
|
|
51
|
+
font-weight: 600;
|
|
52
|
+
letter-spacing: -0.01em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.patient-http-dashboard h4 {
|
|
56
|
+
margin: var(--space-md, 1rem) 0 var(--space-sm, 0.75rem) 0;
|
|
57
|
+
color: var(--patient-http-text);
|
|
58
|
+
font-size: 1rem;
|
|
59
|
+
font-weight: 600;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Summary Stats Grid */
|
|
63
|
+
.stats-grid {
|
|
64
|
+
display: grid;
|
|
65
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
66
|
+
gap: var(--space-lg, 1.5rem);
|
|
67
|
+
margin-bottom: var(--space-xl, 2rem);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.stat-card {
|
|
71
|
+
padding: var(--space-lg, 1.5rem);
|
|
72
|
+
background: var(--color-card-bg, rgb(255 255 255));
|
|
73
|
+
border: 1px solid var(--patient-http-border);
|
|
74
|
+
border-radius: 0.375rem;
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: column;
|
|
77
|
+
justify-content: space-between;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.stat-label {
|
|
81
|
+
font-size: 0.875rem;
|
|
82
|
+
color: var(--color-subtle, rgb(128 128 128));
|
|
83
|
+
font-weight: 500;
|
|
84
|
+
margin-bottom: var(--space-sm, 0.75rem);
|
|
85
|
+
letter-spacing: 0.02em;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.stat-value {
|
|
89
|
+
font-size: 2rem;
|
|
90
|
+
font-weight: 700;
|
|
91
|
+
color: var(--patient-http-primary);
|
|
92
|
+
letter-spacing: -0.02em;
|
|
93
|
+
line-height: 1;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.stat-value.error {
|
|
97
|
+
color: var(--patient-http-error);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* Capacity Section */
|
|
101
|
+
.capacity-section {
|
|
102
|
+
margin: var(--space-xl, 2rem) 0;
|
|
103
|
+
padding: var(--space-lg, 1.5rem);
|
|
104
|
+
background: var(--color-card-bg, rgb(255 255 255));
|
|
105
|
+
border: 1px solid var(--patient-http-border);
|
|
106
|
+
border-radius: 0.375rem;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.capacity-cards {
|
|
110
|
+
display: grid;
|
|
111
|
+
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
112
|
+
gap: var(--space-lg, 1.5rem);
|
|
113
|
+
margin-bottom: var(--space-xl, 2rem);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.capacity-card {
|
|
117
|
+
padding: var(--space-md, 1rem);
|
|
118
|
+
background: var(--patient-http-bg, rgb(255 255 255));
|
|
119
|
+
border: 1px solid var(--patient-http-border);
|
|
120
|
+
border-radius: 0.25rem;
|
|
121
|
+
text-align: center;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.capacity-label {
|
|
125
|
+
font-size: 0.875rem;
|
|
126
|
+
color: var(--color-subtle, rgb(128 128 128));
|
|
127
|
+
font-weight: 500;
|
|
128
|
+
margin-bottom: 0.5rem;
|
|
129
|
+
display: block;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.capacity-value {
|
|
133
|
+
display: block;
|
|
134
|
+
font-size: 1.75rem;
|
|
135
|
+
font-weight: 700;
|
|
136
|
+
color: var(--patient-http-primary);
|
|
137
|
+
line-height: 1;
|
|
138
|
+
margin-bottom: 0.25rem;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.capacity-unit {
|
|
142
|
+
font-size: 0.75rem;
|
|
143
|
+
color: var(--color-subtle, rgb(128 128 128));
|
|
144
|
+
text-transform: uppercase;
|
|
145
|
+
letter-spacing: 0.05em;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/* Process Breakdown Table */
|
|
149
|
+
.process-breakdown {
|
|
150
|
+
margin-top: var(--space-lg, 1.5rem);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* Breakdown Sections (HTTP Status Codes, Error Types) */
|
|
154
|
+
.breakdown-section {
|
|
155
|
+
margin: var(--space-xl, 2rem) 0;
|
|
156
|
+
padding: var(--space-lg, 1.5rem);
|
|
157
|
+
background: var(--color-card-bg, rgb(255 255 255));
|
|
158
|
+
border: 1px solid var(--patient-http-border);
|
|
159
|
+
border-radius: 0.375rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.breakdown-section h3 {
|
|
163
|
+
margin: 0 0 var(--space-lg, 1.5rem) 0;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Table Styling */
|
|
167
|
+
.patient-http-dashboard .table {
|
|
168
|
+
width: 100%;
|
|
169
|
+
border-collapse: collapse;
|
|
170
|
+
margin-top: var(--space-md, 1rem);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.patient-http-dashboard .table thead {
|
|
174
|
+
background: var(--patient-http-bg);
|
|
175
|
+
border-bottom: 2px solid var(--patient-http-border);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.patient-http-dashboard .table th {
|
|
179
|
+
padding: var(--space-md, 1rem);
|
|
180
|
+
text-align: left;
|
|
181
|
+
font-weight: 600;
|
|
182
|
+
color: var(--patient-http-text);
|
|
183
|
+
font-size: 0.875rem;
|
|
184
|
+
letter-spacing: 0.01em;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.patient-http-dashboard .table td {
|
|
188
|
+
padding: var(--space-md, 1rem);
|
|
189
|
+
border-bottom: 1px solid var(--patient-http-border);
|
|
190
|
+
color: var(--patient-http-text);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.patient-http-dashboard .table tbody tr:hover {
|
|
194
|
+
background: var(--patient-http-bg);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.patient-http-dashboard .table .empty-state {
|
|
198
|
+
text-align: center;
|
|
199
|
+
color: var(--color-subtle, rgb(128 128 128));
|
|
200
|
+
font-style: italic;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/* Responsive Design */
|
|
204
|
+
@media (max-width: 768px) {
|
|
205
|
+
.stats-grid {
|
|
206
|
+
grid-template-columns: repeat(2, 1fr);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.capacity-cards {
|
|
210
|
+
grid-template-columns: 1fr;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.patient-http-dashboard h2 {
|
|
214
|
+
font-size: 1.5rem;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.patient-http-dashboard h3 {
|
|
218
|
+
font-size: 1.125rem;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.stat-value {
|
|
222
|
+
font-size: 1.5rem;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
@media (max-width: 480px) {
|
|
227
|
+
.stats-grid {
|
|
228
|
+
grid-template-columns: 1fr;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.capacity-bar {
|
|
232
|
+
height: 20px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.capacity-value {
|
|
236
|
+
font-size: 1.5rem;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/* Dark Mode Support (via CSS variables) */
|
|
241
|
+
@media (prefers-color-scheme: dark) {
|
|
242
|
+
.stat-card {
|
|
243
|
+
background: var(--color-card-bg);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.stat-card:hover {
|
|
247
|
+
background: var(--color-card-hover);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
ar:
|
|
2
|
+
patient_http_tab: "HTTP غير متزامن"
|
|
3
|
+
patient_http_title: "إحصائيات HTTP غير المتزامنة"
|
|
4
|
+
patient_http_total_requests: "مجموع الطلبات"
|
|
5
|
+
patient_http_average_duration: "متوسط المدة (ثواني)"
|
|
6
|
+
patient_http_total_errors: "مجموع الأخطاء"
|
|
7
|
+
patient_http_max_capacity_exceeded: "تم تجاوز السعة القصوى"
|
|
8
|
+
patient_http_connection_capacity: "سعة الاتصال"
|
|
9
|
+
patient_http_max_capacity: "السعة القصوى"
|
|
10
|
+
patient_http_connections: "اتصالات"
|
|
11
|
+
patient_http_currently_inflight: "قيد التنفيذ حالياً"
|
|
12
|
+
patient_http_requests: "طلبات"
|
|
13
|
+
patient_http_capacity_utilization: "استغلال السعة"
|
|
14
|
+
patient_http_used: "مستخدم"
|
|
15
|
+
patient_http_per_process_details: "تفاصيل كل عملية"
|
|
16
|
+
patient_http_process: "عملية"
|
|
17
|
+
patient_http_inflight: "قيد التنفيذ"
|
|
18
|
+
patient_http_utilization: "الاستغلال"
|
|
19
|
+
patient_http_no_active_processes: "لا توجد عمليات نشطة"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "رموز حالة HTTP"
|
|
23
|
+
patient_http_status_code: "رمز الحالة"
|
|
24
|
+
patient_http_count: "العدد"
|
|
25
|
+
patient_http_error_types: "أنواع الأخطاء"
|
|
26
|
+
patient_http_error_type: "نوع الخطأ"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
cs:
|
|
2
|
+
patient_http_tab: "Async HTTP"
|
|
3
|
+
patient_http_title: "Statistiky Async HTTP"
|
|
4
|
+
patient_http_total_requests: "Celkem požadavků"
|
|
5
|
+
patient_http_average_duration: "Průměrná doba trvání (sekundy)"
|
|
6
|
+
patient_http_total_errors: "Celkem chyb"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Překročená maximální kapacita"
|
|
8
|
+
patient_http_connection_capacity: "Kapacita připojení"
|
|
9
|
+
patient_http_max_capacity: "Max. kapacita"
|
|
10
|
+
patient_http_connections: "připojení"
|
|
11
|
+
patient_http_currently_inflight: "Právě probíhá"
|
|
12
|
+
patient_http_requests: "požadavků"
|
|
13
|
+
patient_http_capacity_utilization: "Využití kapacity"
|
|
14
|
+
patient_http_used: "využito"
|
|
15
|
+
patient_http_per_process_details: "Podrobnosti po procesech"
|
|
16
|
+
patient_http_process: "Proces"
|
|
17
|
+
patient_http_inflight: "Probíhá"
|
|
18
|
+
patient_http_utilization: "Využití"
|
|
19
|
+
patient_http_no_active_processes: "Žádné aktivní procesy"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP stavové kódy"
|
|
23
|
+
patient_http_status_code: "Stavový kód"
|
|
24
|
+
patient_http_count: "Počet"
|
|
25
|
+
patient_http_error_types: "Typy chyb"
|
|
26
|
+
patient_http_error_type: "Typ chyby"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
da:
|
|
2
|
+
patient_http_tab: "Async HTTP"
|
|
3
|
+
patient_http_title: "Async HTTP-statistik"
|
|
4
|
+
patient_http_total_requests: "Samlede anmodninger"
|
|
5
|
+
patient_http_average_duration: "Gennemsnitlig varighed (sekunder)"
|
|
6
|
+
patient_http_total_errors: "Samlede fejl"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Maks. kapacitet overskredet"
|
|
8
|
+
patient_http_connection_capacity: "Forbindelseskapacitet"
|
|
9
|
+
patient_http_max_capacity: "Maks. kapacitet"
|
|
10
|
+
patient_http_connections: "forbindelser"
|
|
11
|
+
patient_http_currently_inflight: "Igangværende"
|
|
12
|
+
patient_http_requests: "anmodninger"
|
|
13
|
+
patient_http_capacity_utilization: "Kapacitetsudnyttelse"
|
|
14
|
+
patient_http_used: "brugt"
|
|
15
|
+
patient_http_per_process_details: "Detaljer pr. proces"
|
|
16
|
+
patient_http_process: "Proces"
|
|
17
|
+
patient_http_inflight: "Igangværende"
|
|
18
|
+
patient_http_utilization: "Udnyttelse"
|
|
19
|
+
patient_http_no_active_processes: "Ingen aktive processer"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP-statuskoder"
|
|
23
|
+
patient_http_status_code: "Statuskode"
|
|
24
|
+
patient_http_count: "Antal"
|
|
25
|
+
patient_http_error_types: "Fejltyper"
|
|
26
|
+
patient_http_error_type: "Fejltype"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
de:
|
|
2
|
+
patient_http_tab: "Async HTTP"
|
|
3
|
+
patient_http_title: "Async HTTP-Statistiken"
|
|
4
|
+
patient_http_total_requests: "Gesamtanfragen"
|
|
5
|
+
patient_http_average_duration: "Durchschnittsdauer (Sekunden)"
|
|
6
|
+
patient_http_total_errors: "Gesamtfehler"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Max. Kapazität überschritten"
|
|
8
|
+
patient_http_connection_capacity: "Verbindungskapazität"
|
|
9
|
+
patient_http_max_capacity: "Max. Kapazität"
|
|
10
|
+
patient_http_connections: "Verbindungen"
|
|
11
|
+
patient_http_currently_inflight: "Aktuell in Bearbeitung"
|
|
12
|
+
patient_http_requests: "Anfragen"
|
|
13
|
+
patient_http_capacity_utilization: "Kapazitätsauslastung"
|
|
14
|
+
patient_http_used: "verwendet"
|
|
15
|
+
patient_http_per_process_details: "Details pro Prozess"
|
|
16
|
+
patient_http_process: "Prozess"
|
|
17
|
+
patient_http_inflight: "In Bearbeitung"
|
|
18
|
+
patient_http_utilization: "Auslastung"
|
|
19
|
+
patient_http_no_active_processes: "Keine aktiven Prozesse"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP-Statuscodes"
|
|
23
|
+
patient_http_status_code: "Statuscode"
|
|
24
|
+
patient_http_count: "Anzahl"
|
|
25
|
+
patient_http_error_types: "Fehlertypen"
|
|
26
|
+
patient_http_error_type: "Fehlertyp"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
el:
|
|
2
|
+
patient_http_tab: "Ασύγχρονο HTTP"
|
|
3
|
+
patient_http_title: "Στατιστικά Ασύγχρονου HTTP"
|
|
4
|
+
patient_http_total_requests: "Σύνολο αιτημάτων"
|
|
5
|
+
patient_http_average_duration: "Μέση διάρκεια (δευτερόλεπτα)"
|
|
6
|
+
patient_http_total_errors: "Σύνολο σφαλμάτων"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Υπέρβαση μέγιστης χωρητικότητας"
|
|
8
|
+
patient_http_connection_capacity: "Χωρητικότητα σύνδεσης"
|
|
9
|
+
patient_http_max_capacity: "Μέγιστη χωρητικότητα"
|
|
10
|
+
patient_http_connections: "συνδέσεις"
|
|
11
|
+
patient_http_currently_inflight: "Επί του παρόντος σε εξέλιξη"
|
|
12
|
+
patient_http_requests: "αιτήματα"
|
|
13
|
+
patient_http_capacity_utilization: "Χρήση χωρητικότητας"
|
|
14
|
+
patient_http_used: "χρησιμοποιείται"
|
|
15
|
+
patient_http_per_process_details: "Λεπτομέρειες ανά διεργασία"
|
|
16
|
+
patient_http_process: "Διεργασία"
|
|
17
|
+
patient_http_inflight: "Σε εξέλιξη"
|
|
18
|
+
patient_http_utilization: "Χρήση"
|
|
19
|
+
patient_http_no_active_processes: "Καμία ενεργή διεργασία"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "Κωδικοί κατάστασης HTTP"
|
|
23
|
+
patient_http_status_code: "Κωδικός κατάστασης"
|
|
24
|
+
patient_http_count: "Πλήθος"
|
|
25
|
+
patient_http_error_types: "Τύποι σφαλμάτων"
|
|
26
|
+
patient_http_error_type: "Τύπος σφάλματος"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
en:
|
|
2
|
+
patient_http_tab: "Async HTTP"
|
|
3
|
+
patient_http_title: "Async HTTP Statistics"
|
|
4
|
+
patient_http_total_requests: "Total Requests"
|
|
5
|
+
patient_http_average_duration: "Average Duration (seconds)"
|
|
6
|
+
patient_http_total_errors: "Total Errors"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Max Capacity Exceeded"
|
|
8
|
+
patient_http_connection_capacity: "Connection Capacity"
|
|
9
|
+
patient_http_max_capacity: "Max Capacity"
|
|
10
|
+
patient_http_connections: "connections"
|
|
11
|
+
patient_http_currently_inflight: "Currently Inflight"
|
|
12
|
+
patient_http_requests: "requests"
|
|
13
|
+
patient_http_capacity_utilization: "Capacity Utilization"
|
|
14
|
+
patient_http_used: "used"
|
|
15
|
+
patient_http_per_process_details: "Per-Process Details"
|
|
16
|
+
patient_http_process: "Process"
|
|
17
|
+
patient_http_inflight: "Inflight"
|
|
18
|
+
patient_http_utilization: "Utilization"
|
|
19
|
+
patient_http_no_active_processes: "No active processes"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP Status Codes"
|
|
23
|
+
patient_http_status_code: "Status Code"
|
|
24
|
+
patient_http_count: "Count"
|
|
25
|
+
patient_http_error_types: "Error Types"
|
|
26
|
+
patient_http_error_type: "Error Type"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
es:
|
|
2
|
+
patient_http_tab: "HTTP asíncrono"
|
|
3
|
+
patient_http_title: "Estadísticas de HTTP asíncrono"
|
|
4
|
+
patient_http_total_requests: "Total de solicitudes"
|
|
5
|
+
patient_http_average_duration: "Duración media (segundos)"
|
|
6
|
+
patient_http_total_errors: "Total de errores"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Capacidad máxima excedida"
|
|
8
|
+
patient_http_connection_capacity: "Capacidad de conexión"
|
|
9
|
+
patient_http_max_capacity: "Capacidad máx."
|
|
10
|
+
patient_http_connections: "conexiones"
|
|
11
|
+
patient_http_currently_inflight: "Actualmente en vuelo"
|
|
12
|
+
patient_http_requests: "solicitudes"
|
|
13
|
+
patient_http_capacity_utilization: "Utilización de la capacidad"
|
|
14
|
+
patient_http_used: "usado"
|
|
15
|
+
patient_http_per_process_details: "Detalles por proceso"
|
|
16
|
+
patient_http_process: "Proceso"
|
|
17
|
+
patient_http_inflight: "En vuelo"
|
|
18
|
+
patient_http_utilization: "Utilización"
|
|
19
|
+
patient_http_no_active_processes: "No hay procesos activos"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "Códigos de estado HTTP"
|
|
23
|
+
patient_http_status_code: "Código de estado"
|
|
24
|
+
patient_http_count: "Cantidad"
|
|
25
|
+
patient_http_error_types: "Tipos de errores"
|
|
26
|
+
patient_http_error_type: "Tipo de error"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
fa:
|
|
2
|
+
patient_http_tab: "HTTP ناهمگام"
|
|
3
|
+
patient_http_title: "آمار HTTP ناهمگام"
|
|
4
|
+
patient_http_total_requests: "مجموع درخواستها"
|
|
5
|
+
patient_http_average_duration: "مدت زمان میانگین (ثانیه)"
|
|
6
|
+
patient_http_total_errors: "مجموع خطاها"
|
|
7
|
+
patient_http_max_capacity_exceeded: "ظرفیت حداکثر تجاوز شد"
|
|
8
|
+
patient_http_connection_capacity: "ظرفیت اتصال"
|
|
9
|
+
patient_http_max_capacity: "ظرفیت حداکثر"
|
|
10
|
+
patient_http_connections: "اتصالات"
|
|
11
|
+
patient_http_currently_inflight: "در حال پردازش"
|
|
12
|
+
patient_http_requests: "درخواستها"
|
|
13
|
+
patient_http_capacity_utilization: "بهرهوری ظرفیت"
|
|
14
|
+
patient_http_used: "استفاده شده"
|
|
15
|
+
patient_http_per_process_details: "جزئیات هر پردازش"
|
|
16
|
+
patient_http_process: "پردازش"
|
|
17
|
+
patient_http_inflight: "در جریان"
|
|
18
|
+
patient_http_utilization: "بهرهوری"
|
|
19
|
+
patient_http_no_active_processes: "هیچ پردازش فعالی وجود ندارد"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "کدهای وضعیت HTTP"
|
|
23
|
+
patient_http_status_code: "کد وضعیت"
|
|
24
|
+
patient_http_count: "تعداد"
|
|
25
|
+
patient_http_error_types: "انواع خطا"
|
|
26
|
+
patient_http_error_type: "نوع خطا"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
fr:
|
|
2
|
+
patient_http_tab: "HTTP asynchrone"
|
|
3
|
+
patient_http_title: "Statistiques HTTP asynchrones"
|
|
4
|
+
patient_http_total_requests: "Total des requêtes"
|
|
5
|
+
patient_http_average_duration: "Durée moyenne (secondes)"
|
|
6
|
+
patient_http_total_errors: "Total des erreurs"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Capacité max. dépassée"
|
|
8
|
+
patient_http_connection_capacity: "Capacité de connexion"
|
|
9
|
+
patient_http_max_capacity: "Capacité max."
|
|
10
|
+
patient_http_connections: "connexions"
|
|
11
|
+
patient_http_currently_inflight: "En cours de traitement"
|
|
12
|
+
patient_http_requests: "requêtes"
|
|
13
|
+
patient_http_capacity_utilization: "Utilisation de la capacité"
|
|
14
|
+
patient_http_used: "utilisé"
|
|
15
|
+
patient_http_per_process_details: "Détails par processus"
|
|
16
|
+
patient_http_process: "Processus"
|
|
17
|
+
patient_http_inflight: "En cours"
|
|
18
|
+
patient_http_utilization: "Utilisation"
|
|
19
|
+
patient_http_no_active_processes: "Aucun processus actif"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "Codes d'état HTTP"
|
|
23
|
+
patient_http_status_code: "Code d'état"
|
|
24
|
+
patient_http_count: "Nombre"
|
|
25
|
+
patient_http_error_types: "Types d'erreurs"
|
|
26
|
+
patient_http_error_type: "Type d'erreur"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
gd:
|
|
2
|
+
patient_http_tab: "Async HTTP"
|
|
3
|
+
patient_http_title: "Staitistig Async HTTP"
|
|
4
|
+
patient_http_total_requests: "Iarrtasan gu lèir"
|
|
5
|
+
patient_http_average_duration: "Cuibheasachd faid (diogan)"
|
|
6
|
+
patient_http_total_errors: "Mearachdan gu lèir"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Comas as motha thairis"
|
|
8
|
+
patient_http_connection_capacity: "Comas ceangail"
|
|
9
|
+
patient_http_max_capacity: "Comas as motha"
|
|
10
|
+
patient_http_connections: "ceanglaichean"
|
|
11
|
+
patient_http_currently_inflight: "Ga làimhseachadh an-dràsta"
|
|
12
|
+
patient_http_requests: "iarrtasan"
|
|
13
|
+
patient_http_capacity_utilization: "Cleachdadh comais"
|
|
14
|
+
patient_http_used: "air a chleachdadh"
|
|
15
|
+
patient_http_per_process_details: "Mion-fhiosrachadh gach pròiseas"
|
|
16
|
+
patient_http_process: "Pròiseas"
|
|
17
|
+
patient_http_inflight: "Ga làimhseachadh"
|
|
18
|
+
patient_http_utilization: "Cleachdadh"
|
|
19
|
+
patient_http_no_active_processes: "Chan eil pròiseasan gnìomhach ann"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "Còdan inbhe HTTP"
|
|
23
|
+
patient_http_status_code: "Còd inbhe"
|
|
24
|
+
patient_http_count: "Cunnt"
|
|
25
|
+
patient_http_error_types: "Seòrsaichean mhearachdan"
|
|
26
|
+
patient_http_error_type: "Seòrsa mearachd"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
he:
|
|
2
|
+
patient_http_tab: "HTTP אסינכרוני"
|
|
3
|
+
patient_http_title: "סטטיסטיקות HTTP אסינכרוני"
|
|
4
|
+
patient_http_total_requests: "סה״כ בקשות"
|
|
5
|
+
patient_http_average_duration: "משך זמן ממוצע (שניות)"
|
|
6
|
+
patient_http_total_errors: "סה״כ שגיאות"
|
|
7
|
+
patient_http_max_capacity_exceeded: "עבר את הקיבולת המרבית"
|
|
8
|
+
patient_http_connection_capacity: "קיבולת חיבורים"
|
|
9
|
+
patient_http_max_capacity: "קיבולת מקסימלית"
|
|
10
|
+
patient_http_connections: "חיבורים"
|
|
11
|
+
patient_http_currently_inflight: "בתהליך כרגע"
|
|
12
|
+
patient_http_requests: "בקשות"
|
|
13
|
+
patient_http_capacity_utilization: "ניצול קיבולת"
|
|
14
|
+
patient_http_used: "בשימוש"
|
|
15
|
+
patient_http_per_process_details: "פרטים לפי תהליך"
|
|
16
|
+
patient_http_process: "תהליך"
|
|
17
|
+
patient_http_inflight: "בתהליך"
|
|
18
|
+
patient_http_utilization: "ניצול"
|
|
19
|
+
patient_http_no_active_processes: "אין תהליכים פעילים"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "קודי סטטוס HTTP"
|
|
23
|
+
patient_http_status_code: "קוד סטטוס"
|
|
24
|
+
patient_http_count: "כמות"
|
|
25
|
+
patient_http_error_types: "סוגי שגיאות"
|
|
26
|
+
patient_http_error_type: "סוג שגיאה"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
hi:
|
|
2
|
+
patient_http_tab: "अतुल्यकालिक HTTP"
|
|
3
|
+
patient_http_title: "अतुल्यकालिक HTTP सांख्यिकी"
|
|
4
|
+
patient_http_total_requests: "कुल अनुरोध"
|
|
5
|
+
patient_http_average_duration: "औसत अवधि (सेकंड)"
|
|
6
|
+
patient_http_total_errors: "कुल त्रुटियां"
|
|
7
|
+
patient_http_max_capacity_exceeded: "अधिकतम क्षमता पार हो गई"
|
|
8
|
+
patient_http_connection_capacity: "कनेक्शन क्षमता"
|
|
9
|
+
patient_http_max_capacity: "अधिकतम क्षमता"
|
|
10
|
+
patient_http_connections: "कनेक्शन"
|
|
11
|
+
patient_http_currently_inflight: "वर्तमान में जारी"
|
|
12
|
+
patient_http_requests: "अनुरोध"
|
|
13
|
+
patient_http_capacity_utilization: "क्षमता उपयोग"
|
|
14
|
+
patient_http_used: "उपयोग में"
|
|
15
|
+
patient_http_per_process_details: "प्रति-प्रक्रिया विवरण"
|
|
16
|
+
patient_http_process: "प्रक्रिया"
|
|
17
|
+
patient_http_inflight: "जारी"
|
|
18
|
+
patient_http_utilization: "उपयोग"
|
|
19
|
+
patient_http_no_active_processes: "कोई सक्रिय प्रक्रिया नहीं"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP स्थिति कोड"
|
|
23
|
+
patient_http_status_code: "स्थिति कोड"
|
|
24
|
+
patient_http_count: "गणना"
|
|
25
|
+
patient_http_error_types: "त्रुटि प्रकार"
|
|
26
|
+
patient_http_error_type: "त्रुटि प्रकार"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
it:
|
|
2
|
+
patient_http_tab: "HTTP asincrono"
|
|
3
|
+
patient_http_title: "Statistiche HTTP asincrono"
|
|
4
|
+
patient_http_total_requests: "Totale richieste"
|
|
5
|
+
patient_http_average_duration: "Durata media (secondi)"
|
|
6
|
+
patient_http_total_errors: "Totale errori"
|
|
7
|
+
patient_http_max_capacity_exceeded: "Capacità massima superata"
|
|
8
|
+
patient_http_connection_capacity: "Capacità connessione"
|
|
9
|
+
patient_http_max_capacity: "Capacità max"
|
|
10
|
+
patient_http_connections: "connessioni"
|
|
11
|
+
patient_http_currently_inflight: "Attualmente in corso"
|
|
12
|
+
patient_http_requests: "richieste"
|
|
13
|
+
patient_http_capacity_utilization: "Utilizzo capacità"
|
|
14
|
+
patient_http_used: "utilizzato"
|
|
15
|
+
patient_http_per_process_details: "Dettagli per processo"
|
|
16
|
+
patient_http_process: "Processo"
|
|
17
|
+
patient_http_inflight: "In corso"
|
|
18
|
+
patient_http_utilization: "Utilizzo"
|
|
19
|
+
patient_http_no_active_processes: "Nessun processo attivo"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "Codici di stato HTTP"
|
|
23
|
+
patient_http_status_code: "Codice di stato"
|
|
24
|
+
patient_http_count: "Conteggio"
|
|
25
|
+
patient_http_error_types: "Tipi di errori"
|
|
26
|
+
patient_http_error_type: "Tipo di errore"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
ja:
|
|
2
|
+
patient_http_tab: "非同期 HTTP"
|
|
3
|
+
patient_http_title: "非同期 HTTP 統計"
|
|
4
|
+
patient_http_total_requests: "総リクエスト数"
|
|
5
|
+
patient_http_average_duration: "平均所要時間(秒)"
|
|
6
|
+
patient_http_total_errors: "総エラー数"
|
|
7
|
+
patient_http_max_capacity_exceeded: "最大容量超過"
|
|
8
|
+
patient_http_connection_capacity: "接続容量"
|
|
9
|
+
patient_http_max_capacity: "最大容量"
|
|
10
|
+
patient_http_connections: "接続"
|
|
11
|
+
patient_http_currently_inflight: "処理中"
|
|
12
|
+
patient_http_requests: "リクエスト"
|
|
13
|
+
patient_http_capacity_utilization: "容量使用率"
|
|
14
|
+
patient_http_used: "使用済み"
|
|
15
|
+
patient_http_per_process_details: "プロセスごとの詳細"
|
|
16
|
+
patient_http_process: "プロセス"
|
|
17
|
+
patient_http_inflight: "処理中"
|
|
18
|
+
patient_http_utilization: "使用率"
|
|
19
|
+
patient_http_no_active_processes: "アクティブなプロセスはありません"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTPステータスコード"
|
|
23
|
+
patient_http_status_code: "ステータスコード"
|
|
24
|
+
patient_http_count: "件数"
|
|
25
|
+
patient_http_error_types: "エラー種別"
|
|
26
|
+
patient_http_error_type: "エラー種別"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
ko:
|
|
2
|
+
patient_http_tab: "비동기 HTTP"
|
|
3
|
+
patient_http_title: "비동기 HTTP 통계"
|
|
4
|
+
patient_http_total_requests: "총 요청 수"
|
|
5
|
+
patient_http_average_duration: "평균 소요 시간 (초)"
|
|
6
|
+
patient_http_total_errors: "총 오류 수"
|
|
7
|
+
patient_http_max_capacity_exceeded: "최대 용량 초과"
|
|
8
|
+
patient_http_connection_capacity: "연결 용량"
|
|
9
|
+
patient_http_max_capacity: "최대 용량"
|
|
10
|
+
patient_http_connections: "연결"
|
|
11
|
+
patient_http_currently_inflight: "현재 처리 중"
|
|
12
|
+
patient_http_requests: "요청"
|
|
13
|
+
patient_http_capacity_utilization: "용량 사용률"
|
|
14
|
+
patient_http_used: "사용됨"
|
|
15
|
+
patient_http_per_process_details: "프로세스별 상세 정보"
|
|
16
|
+
patient_http_process: "프로세스"
|
|
17
|
+
patient_http_inflight: "처리 중"
|
|
18
|
+
patient_http_utilization: "사용률"
|
|
19
|
+
patient_http_no_active_processes: "활성 프로세스 없음"
|
|
20
|
+
patient_http_clear_stats: "Clear Statistics"
|
|
21
|
+
patient_http_clear_confirm: "Are you sure you want to clear all statistics? This cannot be undone."
|
|
22
|
+
patient_http_http_status_codes: "HTTP 상태 코드"
|
|
23
|
+
patient_http_status_code: "상태 코드"
|
|
24
|
+
patient_http_count: "개수"
|
|
25
|
+
patient_http_error_types: "오류 유형"
|
|
26
|
+
patient_http_error_type: "오류 유형"
|