cds-caching 1.3.0 → 1.3.2

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.
Files changed (35) hide show
  1. package/README.md +16 -0
  2. package/app/dashboard/controller/App-dbg.controller.js +14 -14
  3. package/app/dashboard/controller/App-dbg.controller.js.map +1 -1
  4. package/app/dashboard/controller/App.controller.js +1 -1
  5. package/app/dashboard/controller/App.controller.js.map +1 -1
  6. package/app/dashboard/controller/App.controller.ts +14 -14
  7. package/app/dashboard/controller/BaseController-dbg.js +7 -0
  8. package/app/dashboard/controller/BaseController-dbg.js.map +1 -1
  9. package/app/dashboard/controller/BaseController.js +1 -1
  10. package/app/dashboard/controller/BaseController.js.map +1 -1
  11. package/app/dashboard/controller/BaseController.ts +10 -0
  12. package/app/dashboard/controller/Cache-dbg.controller.js +34 -25
  13. package/app/dashboard/controller/Cache-dbg.controller.js.map +1 -1
  14. package/app/dashboard/controller/Cache.controller.js +1 -1
  15. package/app/dashboard/controller/Cache.controller.js.map +1 -1
  16. package/app/dashboard/controller/Cache.controller.ts +36 -25
  17. package/app/dashboard/controller/SingleMetric-dbg.controller.js +56 -50
  18. package/app/dashboard/controller/SingleMetric-dbg.controller.js.map +1 -1
  19. package/app/dashboard/controller/SingleMetric.controller.js +1 -1
  20. package/app/dashboard/controller/SingleMetric.controller.js.map +1 -1
  21. package/app/dashboard/controller/SingleMetric.controller.ts +29 -22
  22. package/app/dashboard/i18n/i18n.properties +235 -0
  23. package/app/dashboard/i18n/i18n_de.properties +271 -3
  24. package/app/dashboard/i18n/i18n_en.properties +295 -2
  25. package/app/dashboard/resources/sap-ui-custom.js +11 -11
  26. package/app/dashboard/resources/sap-ui-custom.js.map +1 -1
  27. package/app/dashboard/view/Cache.view.xml +149 -149
  28. package/app/dashboard/view/Main.view.xml +7 -7
  29. package/app/dashboard/view/SingleMetric.view.xml +30 -30
  30. package/cds-plugin.js +31 -8
  31. package/lib/CachingService.js +11 -10
  32. package/lib/operations/BasicOperations.js +7 -4
  33. package/lib/support/KeyManager.js +40 -2
  34. package/lib/util.js +28 -2
  35. package/package.json +1 -1
@@ -1,3 +1,271 @@
1
- appTitle=cds.plugin.caching.dashboard
2
- appDescription=UI5 Application cds.plugin.caching.dashboard
3
- btnText=Sag Hallo
1
+ # German
2
+
3
+ appTitle=Cache-Performance-Dashboard
4
+ appDescription=Zusammenfassendes Statistik- und \u00dcberwachungs-Dashboard
5
+ btnText=Hallo sagen
6
+
7
+ mainTitle=Cache-Performance-Dashboard
8
+ refreshButton=Aktualisieren
9
+ persistButton=Statistiken speichern
10
+
11
+ keyAnalysis=Schl\u00fcsselanalyse
12
+
13
+ hitRatio=Trefferquote
14
+ avgLatency=Mittlere Latenz
15
+ throughput=Durchsatz
16
+ errorRate=Fehlerrate
17
+ totalRequests=Anfragen gesamt
18
+ memoryUsage=Speicherverbrauch
19
+ uniqueKeys=Eindeutige Schl\u00fcssel
20
+ uptime=Betriebszeit
21
+
22
+ keysTitle=Schl\u00fcsselanalyse
23
+ keysSubtitle=Zugriffsmuster auf Cache-Schl\u00fcssel
24
+ topKeys=Meist genutzte Schl\u00fcssel
25
+ coldKeys=Kalte Schl\u00fcssel
26
+ keyStatistics=Schl\u00fcsselstatistiken
27
+ totalKeysTracked=Erfasste Schl\u00fcssel gesamt
28
+ mostActiveKey=Aktivster Schl\u00fcssel
29
+ leastActiveKey=Am wenigsten aktiver Schl\u00fcssel
30
+
31
+ loading=Wird geladen\u2026
32
+ noData=Keine Daten verf\u00fcgbar
33
+ error=Fehler
34
+ success=Erfolg
35
+ warning=Warnung
36
+
37
+ statisticsTitle=Statistiken
38
+ statisticsSubtitle=Historische Cache-Statistiken
39
+ statisticsFilters=Filter
40
+ statisticsFiltersSubtitle=Datumsbereich und Zeitraum w\u00e4hlen
41
+ statisticsSummary=Zusammenfassung
42
+ statisticsSummarySubtitle=Statistik-\u00dcberblick
43
+ statisticsData=Statistikdaten
44
+ statisticsDataSubtitle=Detaillierte Statistikdatens\u00e4tze
45
+ statisticsTrends=Trends
46
+ statisticsTrendsSubtitle=Leistungstrends \u00fcber die Zeit
47
+ statisticsPeriod=Zeitraum
48
+ statisticsFrom=Von
49
+ statisticsTo=Bis
50
+ statisticsLoad=Laden
51
+ statisticsRefresh=Aktualisieren
52
+ statisticsExport=CSV exportieren
53
+ statisticsTotalRecords=Datens\u00e4tze gesamt
54
+ statisticsAvgHitRatio=Mittlere Trefferquote
55
+ statisticsAvgLatency=Mittlere Latenz
56
+ statisticsTotalRequests=Anfragen gesamt
57
+ statisticsNoData=Keine Statistiken f\u00fcr die gew\u00e4hlten Kriterien
58
+
59
+ homePageTitle=cds-caching \u2013 Dashboard
60
+ cachingServicesHeader=Caching-Services
61
+ noCachesAvailable=Keine Caches verf\u00fcgbar
62
+ colName=Name
63
+ colStatisticTrackingEnabled=Statistiken aktiv
64
+ colKeyTrackingEnabled=Schl\u00fcsselmetriken aktiv
65
+
66
+ ttFullScreenEnter=Vollbildmodus
67
+ ttFullScreenExit=Vollbildmodus beenden
68
+ ttCloseMidColumn=Mittlere Spalte schlie\u00dfen
69
+ ttCloseEndColumn=Rechte Spalte schlie\u00dfen
70
+
71
+ cachePagePrefix=Cache:
72
+ enableMetricsLabel=Metriken aktivieren
73
+ enableKeyMetricsLabel=Schl\u00fcsselmetriken aktivieren
74
+ actionClearCache=Cache leeren
75
+
76
+ tabOverview=\u00dcberblick
77
+ tabMetrics=Metriken
78
+ tabKeyMetrics=Schl\u00fcsselmetriken
79
+ tabBrowseCacheEntries=Cache-Eintr\u00e4ge durchsuchen
80
+
81
+ configCardTitle=Konfiguration
82
+ configCardSubtitle=Cache-Konfiguration
83
+ createEntryTitle=Cache-Eintrag anlegen
84
+ createEntrySubtitle=Neuen Cache-Eintrag anlegen
85
+ getEntryTitle=Cache-Eintrag lesen
86
+ getEntrySubtitle=Cache-Eintrag abrufen
87
+ deleteEntryTitle=Cache-Eintrag l\u00f6schen
88
+ deleteEntrySubtitle=Cache-Eintrag entfernen
89
+
90
+ labelKey=Schl\u00fcssel
91
+ labelValue=Wert
92
+ labelTtlSeconds=TTL (Sekunden)
93
+ btnSetEntry=Eintrag setzen
94
+ btnGetEntry=Eintrag abrufen
95
+ btnDeleteEntry=Eintrag l\u00f6schen
96
+
97
+ aggregatedMetricsByHour=Aggregierte Metriken pro Stunde
98
+ btnClearMetrics=Metriken leeren
99
+ btnLoadCacheEntries=Cache-Eintr\u00e4ge laden
100
+ keyMetricsToolbarTitle=Schl\u00fcsselmetriken
101
+
102
+ groupReadThrough=Read-Through
103
+ groupReadThroughOps=Read-Through-Vorg\u00e4nge
104
+ groupReadThroughPerformance=Read-Through-Leistung
105
+ groupReadThroughLatencies=Read-Through-Latenzen
106
+ groupReadThroughHitLatencies=Read-Through-Treffer-Latenzen
107
+ groupReadThroughMissLatencies=Read-Through-Cache-Miss-Latenzen
108
+ groupNativeFunction=Native-Funktion
109
+ groupNativeFunctionOps=Native-Funktionsvorg\u00e4nge
110
+ groupNativeFunctionPerformance=Native-Funktionsleistung
111
+ ctxGroup=Kontext
112
+ infoAdditional=Zusatzinformationen
113
+
114
+ colHits=Hits
115
+ colMisses=Misses
116
+ colTotalRequests=Anfragen gesamt
117
+ colHitRatioPct=Trefferquote %
118
+ colErrorRatePct=Fehlerrate %
119
+ colCacheEfficiency=Cache-Effizienz
120
+ colTimestamp=Zeitstempel
121
+ colAvgLatencyMs=\u00d8 Latenz (ms)
122
+ colHitAvgMs=Treffer \u00d8 (ms)
123
+ colHitMinMs=Treffer min (ms)
124
+ colHitMaxMs=Treffer max (ms)
125
+ colMissAvgMs=Miss \u00d8 (ms)
126
+ colMissMinMs=Miss min (ms)
127
+ colMissMaxMs=Miss max (ms)
128
+ colTotal=Gesamt
129
+ colSets=Sets
130
+ colGets=Gets
131
+ colDeletes=Deletes
132
+ colClears=Clears
133
+ colDeleteByTags=L\u00f6schen per Tags
134
+ colErrors=Fehler
135
+ colKeyName=Schl\u00fcsselname
136
+ colOperation=Operation
137
+ colType=Typ
138
+ colOperationType=Operationstyp
139
+ colTarget=Ziel
140
+ colMetadata=Metadaten
141
+ colAvgHitLatencyMs=\u00d8 Treffer-Latenz (ms)
142
+ colMinHitLatencyMs=Min. Treffer-Latenz (ms)
143
+ colMaxHitLatencyMs=Max. Treffer-Latenz (ms)
144
+ colAvgMissLatencyMs=\u00d8 Miss-Latenz (ms)
145
+ colMinMissLatencyMs=Min. Miss-Latenz (ms)
146
+ colMaxMissLatencyMs=Max. Miss-Latenz (ms)
147
+ colTenant=Mandant
148
+ colUser=Benutzer
149
+ colLocale=Locale
150
+ colLastAccess=Letzter Zugriff
151
+ colFirstAccess=Erster Zugriff
152
+ colTags=Tags
153
+ btnShowMetadata=Metadaten anzeigen
154
+
155
+ cacheEntriesTitle=Cache-Eintr\u00e4ge
156
+ cacheEntriesSubtitle=Alle Cache-Eintr\u00e4ge durchsuchen (Vorsicht)
157
+ messageStripLoadEntriesWarning=Hinweis: Das Laden aller Cache-Eintr\u00e4ge kann bei gro\u00dfen Caches die Leistung beeintr\u00e4chtigen. Verwenden Sie die Schaltfl\u00e4che, um Bedarf einzutragen.
158
+
159
+ chartPlaceholder=Diagramm-Ansicht wird hier implementiert
160
+ selectChartHitLatency=Treffer-Latenz
161
+ selectChartMissLatency=Miss-Latenz
162
+
163
+ trendsCardTitle=Trends
164
+ trendsCardSubtitle=Leistungstrends \u00fcber die Zeit
165
+
166
+ metricDetailsPageTitle=Metrikdetails
167
+ metricPagePrefix=Metrik:
168
+ sectionReadThroughPerformance=Read-Through-Leistung
169
+ sectionNativeFunctionPerformance=Native-Funktionsleistung
170
+
171
+ tileSubCacheHitRate=Cache-Trefferquote
172
+ tileSubPerformanceFactor=Leistungsfaktor
173
+ tileSubReqPerSec=Anfragen pro Sekunde
174
+ tileSubCacheErrors=Cache-Fehler
175
+ tileSubCacheOperations=Cache-Operationen
176
+ tileSubSuccessfulRetrievals=Erfolgreiche Lesevorg\u00e4nge
177
+ tileSubFailedRetrievals=Fehlgeschlagene Lesevorg\u00e4nge
178
+ tileSubErrorCount=Fehleranzahl
179
+ tileSubCacheHitResponse=Antwort bei Treffer
180
+ tileSubCacheMissResponse=Antwort bei Miss
181
+ headerCacheEfficiency=Cache-Effizienz
182
+ headerErrorRate=Fehlerrate
183
+ headerCacheHits=Cache-Treffer
184
+ headerCacheMisses=Cache-Misses
185
+ headerCacheErrors=Cache-Fehler
186
+ headerHitLatency=Treffer-Latenz
187
+ headerMissLatency=Miss-Latenz
188
+ headerNativeThroughput=Native-Durchsatz
189
+ headerNativeErrorRate=Native-Fehlerrate
190
+ headerNativeSets=Native-Set-Operationen
191
+ headerNativeGets=Native-Get-Operationen
192
+ headerNativeDeletes=Native-L\u00f6schvorg\u00e4nge
193
+ headerNativeClears=Native-Clear-Operationen
194
+ headerDeleteByTags=L\u00f6schen per Tags
195
+ headerNativeErrors=Native-Fehler
196
+ headerTotalNativeOps=Native-Operationen gesamt
197
+ tileSubNativeOpsPerSec=Operationen pro Sekunde
198
+ tileSubWriteOps=Schreibvorg\u00e4nge
199
+ tileSubReadOps=Lesevorg\u00e4nge
200
+ tileSubDeleteOps=L\u00f6schvorg\u00e4nge
201
+ tileSubClearOps=Clear-Operationen
202
+ tileSubTagDeletes=Tag-basiertes L\u00f6schen
203
+ tileSubAllOperations=Alle Operationen
204
+
205
+ cardReadThroughOps=Read-Through-Vorg\u00e4nge
206
+ cardReadThroughOpsSub=Verteilung Treffer/Miss/Fehler
207
+ cardLatencyCompare=Latenzvergleich
208
+ cardLatencyCompareSub=Read-Through-Latenzmetriken
209
+ cardNativeFunctionOps=Native-Funktionsvorg\u00e4nge
210
+ cardNativeFunctionOpsSub=Verteilung Treffer/Miss/Fehler
211
+
212
+ vizMeasureCount=Anzahl
213
+ vizMeasureLatency=Latenz
214
+
215
+ msgNoCacheSelected=Kein Cache ausgew\u00e4hlt
216
+ msgUpdatingStatsConfig=Statistik-Konfiguration wird aktualisiert\u2026
217
+ msgStatsEnabled=Statistik-Erfassung aktiviert
218
+ msgStatsDisabled=Statistik-Erfassung deaktiviert
219
+ msgFailedUpdateStatsConfig=Statistik-Konfiguration konnte nicht aktualisiert werden
220
+ msgErrorUpdateStatsConfig=Fehler beim Aktualisieren der Statistik-Konfiguration
221
+ msgUpdatingKeyTracking=Schl\u00fcsselverfolgung wird konfiguriert\u2026
222
+ msgKeyTrackingEnabled=Schl\u00fcsselverfolgung aktiviert
223
+ msgKeyTrackingDisabled=Schl\u00fcsselverfolgung deaktiviert
224
+ msgFailedKeyTracking=Schl\u00fcsselverfolgung konnte nicht konfiguriert werden
225
+ msgErrorKeyTracking=Fehler bei der Konfiguration der Schl\u00fcsselverfolgung
226
+ msgStatsPersisted=Statistiken gespeichert
227
+ msgFailedPersistStats=Statistiken konnten nicht gespeichert werden
228
+ msgErrorPersistStats=Fehler beim Speichern der Statistiken
229
+ msgLoadEntriesFailed=Cache-Eintr\u00e4ge konnten nicht geladen werden
230
+ msgProvideKeyValue=Bitte Schl\u00fcssel und Wert eingeben
231
+ msgEntryCreated=Cache-Eintrag angelegt
232
+ msgCreateEntryFailed=Cache-Eintrag konnte nicht angelegt werden
233
+ msgProvideKey=Bitte einen Schl\u00fcssel eingeben
234
+ msgEntryDeleted=Cache-Eintrag gel\u00f6scht
235
+ msgDeleteEntryFailed=Cache-Eintrag konnte nicht gel\u00f6scht werden
236
+ msgNotFound=Nicht gefunden
237
+ msgGetEntryError=Fehler: Eintrag nicht gefunden oder Fehler
238
+ msgMetricsEnabled=Metriken aktiviert
239
+ msgMetricsDisabled=Metriken deaktiviert
240
+ msgFailedUpdateMetrics=Metrik-Einstellung konnte nicht aktualisiert werden
241
+ msgKeyMetricsEnabled=Schl\u00fcsselmetriken aktiviert
242
+ msgKeyMetricsDisabled=Schl\u00fcsselmetriken deaktiviert
243
+ msgFailedKeyMetrics=Schl\u00fcsselmetriken-Einstellung konnte nicht aktualisiert werden
244
+ msgConfirmClearCache=Cache wirklich leeren? Diese Aktion kann nicht r\u00fcckg\u00e4ngig gemacht werden.
245
+ msgCacheCleared=Cache geleert
246
+ msgClearCacheFailed=Cache konnte nicht geleert werden
247
+ msgMetricsCleared=Metriken geleert
248
+ msgKeyMetricsCleared=Schl\u00fcsselmetriken geleert
249
+ msgFailedClearMetrics=Metriken konnten nicht geleert werden
250
+ msgFailedClearKeyMetrics=Schl\u00fcsselmetriken konnten nicht geleert werden
251
+ msgMetricNotFound=Metrik nicht gefunden
252
+ msgLoadMetricFailed=Metrikdetails konnten nicht geladen werden
253
+
254
+ keyTabMetadata=Metadaten
255
+ keyTabSubject=Subject
256
+ keyTabQuery=Abfrage
257
+ keyTabCacheOptions=Cache-Optionen
258
+
259
+ chartOpAvgHitLatency=Mittlere Treffer-Latenz
260
+ chartOpAvgMissLatency=Mittlere Miss-Latenz
261
+ chartOpAvgReadThroughLatency=Mittlere Read-Through-Latenz
262
+ chartOpHits=Hits
263
+ chartOpMisses=Misses
264
+ chartOpErrors=Fehler
265
+ chartOpSets=Sets
266
+ chartOpGets=Gets
267
+ chartOpDeletes=Deletes
268
+ chartOpClears=Clears
269
+ chartOpDeleteByTags=L\u00f6schen per Tags
270
+
271
+ chartTitleLatencyByOperation=Latenz je Operation
@@ -1,3 +1,296 @@
1
- appTitle=cds.plugin.caching.dashboard
2
- appDescription=UI5 Application cds.plugin.caching.dashboard
1
+ # Default (English) \u2013 bundle fallback
2
+
3
+ appTitle=Cache Performance Dashboard
4
+ appDescription=Comprehensive cache statistics and monitoring dashboard
3
5
  btnText=Say Hello
6
+
7
+ # Main Dashboard
8
+ mainTitle=Cache Performance Dashboard
9
+ refreshButton=Refresh
10
+ persistButton=Persist Statistics
11
+
12
+ # Navigation
13
+ keyAnalysis=Key Analysis
14
+
15
+ # Metrics
16
+ hitRatio=Hit Ratio
17
+ avgLatency=Average Latency
18
+ throughput=Throughput
19
+ errorRate=Error Rate
20
+ totalRequests=Total Requests
21
+ memoryUsage=Memory Usage
22
+ uniqueKeys=Unique Keys
23
+ uptime=Uptime
24
+
25
+ # Keys
26
+ keysTitle=Key Analysis
27
+ keysSubtitle=Cache Key Access Patterns
28
+ topKeys=Top Accessed Keys
29
+ coldKeys=Cold Keys
30
+ keyStatistics=Key Statistics
31
+ totalKeysTracked=Total Keys Tracked
32
+ mostActiveKey=Most Active Key
33
+ leastActiveKey=Least Active Key
34
+
35
+ # Common
36
+ loading=Loading...
37
+ noData=No data available
38
+ error=Error
39
+ success=Success
40
+ warning=Warning
41
+
42
+ # Statistics Page
43
+ statisticsTitle=Statistics
44
+ statisticsSubtitle=Historical cache statistics
45
+ statisticsFilters=Filters
46
+ statisticsFiltersSubtitle=Select date range and period
47
+ statisticsSummary=Summary
48
+ statisticsSummarySubtitle=Statistics overview
49
+ statisticsData=Statistics Data
50
+ statisticsDataSubtitle=Detailed statistics records
51
+ statisticsTrends=Trends
52
+ statisticsTrendsSubtitle=Performance trends over time
53
+ statisticsPeriod=Period
54
+ statisticsFrom=From
55
+ statisticsTo=To
56
+ statisticsLoad=Load
57
+ statisticsRefresh=Refresh
58
+ statisticsExport=Export CSV
59
+ statisticsTotalRecords=Total Records
60
+ statisticsAvgHitRatio=Average Hit Ratio
61
+ statisticsAvgLatency=Average Latency
62
+ statisticsTotalRequests=Total Requests
63
+ statisticsNoData=No statistics found for the selected criteria
64
+
65
+ # Main list
66
+ homePageTitle=cds-caching \u2013 Dashboard
67
+ cachingServicesHeader=Caching Services
68
+ noCachesAvailable=No caches available
69
+ colName=Name
70
+ colStatisticTrackingEnabled=Statistic Tracking Enabled
71
+ colKeyTrackingEnabled=Key Tracking Enabled
72
+
73
+ # Tooltips
74
+ ttFullScreenEnter=Enter Full Screen Mode
75
+ ttFullScreenExit=Exit Full Screen Mode
76
+ ttCloseMidColumn=Close middle column
77
+ ttCloseEndColumn=Close end column
78
+
79
+ # Cache view \u2013 page
80
+ cachePagePrefix=Cache:
81
+ enableMetricsLabel=Enable Metrics
82
+ enableKeyMetricsLabel=Enable Key Metrics
83
+ actionClearCache=Clear Cache
84
+
85
+ # Tabs
86
+ tabOverview=Overview
87
+ tabMetrics=Metrics
88
+ tabKeyMetrics=Key Metrics
89
+ tabBrowseCacheEntries=Browse Cache Entries
90
+
91
+ # Cards overview
92
+ configCardTitle=Configuration
93
+ configCardSubtitle=Cache Configuration
94
+ createEntryTitle=Create Cache Entry
95
+ createEntrySubtitle=Create a new cache entry
96
+ getEntryTitle=Get Cache Entry
97
+ getEntrySubtitle=Get a cache entry
98
+ deleteEntryTitle=Delete Cache Entry
99
+ deleteEntrySubtitle=Delete a cache entry
100
+
101
+ # Form
102
+ labelKey=Key
103
+ labelValue=Value
104
+ labelTtlSeconds=TTL (seconds)
105
+ btnSetEntry=Set Entry
106
+ btnGetEntry=Get Entry
107
+ btnDeleteEntry=Delete Entry
108
+
109
+ # Metrics & toolbars
110
+ aggregatedMetricsByHour=Aggregated Metrics by Hour
111
+ btnClearMetrics=Clear Metrics
112
+ btnLoadCacheEntries=Load Cache Entries
113
+ keyMetricsToolbarTitle=Key Metrics
114
+
115
+ # Column groups
116
+ groupReadThrough=Read-Through
117
+ groupReadThroughOps=Read-Through Operations
118
+ groupReadThroughPerformance=Read-Through Performance
119
+ groupReadThroughLatencies=Read-Through Latencies
120
+ groupReadThroughHitLatencies=Read-Through Hit Latencies
121
+ groupReadThroughMissLatencies=Read-Through Miss Latencies
122
+ groupNativeFunction=Native Function
123
+ groupNativeFunctionOps=Native Function Operations
124
+ groupNativeFunctionPerformance=Native Function Performance
125
+ ctxGroup=Context
126
+ infoAdditional=Additional Information
127
+
128
+ # Column sub-labels
129
+ colHits=Hits
130
+ colMisses=Misses
131
+ colTotalRequests=Total Requests
132
+ colHitRatioPct=Hit Ratio %
133
+ colErrorRatePct=Error Rate %
134
+ colCacheEfficiency=Cache Efficiency
135
+ colTimestamp=Timestamp
136
+ colAvgLatencyMs=Avg Latency (ms)
137
+ colHitAvgMs=Hit Avg (ms)
138
+ colHitMinMs=Hit Min (ms)
139
+ colHitMaxMs=Hit Max (ms)
140
+ colMissAvgMs=Miss Avg (ms)
141
+ colMissMinMs=Miss Min (ms)
142
+ colMissMaxMs=Miss Max (ms)
143
+ colTotal=Total
144
+ colSets=Sets
145
+ colGets=Gets
146
+ colDeletes=Deletes
147
+ colClears=Clears
148
+ colDeleteByTags=Delete By Tags
149
+ colErrors=Errors
150
+ colKeyName=Key Name
151
+ colOperation=Operation
152
+ colType=Type
153
+ colOperationType=Operation Type
154
+ colTarget=Target
155
+ colMetadata=Metadata
156
+ colAvgHitLatencyMs=Avg Hit Latency (ms)
157
+ colMinHitLatencyMs=Min Hit Latency (ms)
158
+ colMaxHitLatencyMs=Max Hit Latency (ms)
159
+ colAvgMissLatencyMs=Avg Miss Latency (ms)
160
+ colMinMissLatencyMs=Min Miss Latency (ms)
161
+ colMaxMissLatencyMs=Max Miss Latency (ms)
162
+ colTenant=Tenant
163
+ colUser=User
164
+ colLocale=Locale
165
+ colLastAccess=Last Access
166
+ colFirstAccess=First Access
167
+ colTags=Tags
168
+ btnShowMetadata=Show Metadata
169
+
170
+ # Browse
171
+ cacheEntriesTitle=Cache Entries
172
+ cacheEntriesSubtitle=Browse all cache entries (use with caution)
173
+ messageStripLoadEntriesWarning=Warning: Loading all cache entries may impact performance for large caches. Use the button below to load entries on demand.
174
+
175
+ # Placeholder chart
176
+ chartPlaceholder=Chart visualization will be implemented here
177
+ selectChartHitLatency=Hit Latency
178
+ selectChartMissLatency=Miss Latency
179
+
180
+ # Card chart headers (hidden section)
181
+ trendsCardTitle=Trends
182
+ trendsCardSubtitle=Performance trends over time
183
+
184
+ # Single metric \u2013 page
185
+ metricDetailsPageTitle=Metric Details
186
+ metricPagePrefix=Metric:
187
+ sectionReadThroughPerformance=Read-Through Performance
188
+ sectionNativeFunctionPerformance=Native Function Performance
189
+
190
+ # Generic tiles
191
+ tileSubCacheHitRate=Cache Hit Rate
192
+ tileSubPerformanceFactor=Performance Factor
193
+ tileSubReqPerSec=Requests per Second
194
+ tileSubCacheErrors=Cache Errors
195
+ tileSubCacheOperations=Cache Operations
196
+ tileSubSuccessfulRetrievals=Successful Retrievals
197
+ tileSubFailedRetrievals=Failed Retrievals
198
+ tileSubErrorCount=Error Count
199
+ tileSubCacheHitResponse=Cache Hit Response
200
+ tileSubCacheMissResponse=Cache Miss Response
201
+ headerCacheEfficiency=Cache Efficiency
202
+ headerErrorRate=Error Rate
203
+ headerCacheHits=Cache Hits
204
+ headerCacheMisses=Cache Misses
205
+ headerCacheErrors=Cache Errors
206
+ headerHitLatency=Hit Latency
207
+ headerMissLatency=Miss Latency
208
+ headerNativeThroughput=Native Throughput
209
+ headerNativeErrorRate=Native Error Rate
210
+ headerNativeSets=Native Sets
211
+ headerNativeGets=Native Gets
212
+ headerNativeDeletes=Native Deletes
213
+ headerNativeClears=Native Clears
214
+ headerDeleteByTags=Delete By Tags
215
+ headerNativeErrors=Native Errors
216
+ headerTotalNativeOps=Total Native Ops
217
+ tileSubNativeOpsPerSec=Operations per Second
218
+ tileSubWriteOps=Write Operations
219
+ tileSubReadOps=Read Operations
220
+ tileSubDeleteOps=Delete Operations
221
+ tileSubClearOps=Clear Operations
222
+ tileSubTagDeletes=Tag-based Deletes
223
+ tileSubAllOperations=All Operations
224
+
225
+ # Cards (single metric)
226
+ cardReadThroughOps=Read-Through Operations
227
+ cardReadThroughOpsSub=Hit/Miss/Error Distribution
228
+ cardLatencyCompare=Latency Comparison
229
+ cardLatencyCompareSub=Read-Through Latency Metrics
230
+ cardNativeFunctionOps=Native Function Operations
231
+ cardNativeFunctionOpsSub=Operation Distribution
232
+
233
+ # Viz internal labels
234
+ vizMeasureCount=Count
235
+ vizMeasureLatency=Latency
236
+
237
+ # Controllers & messages
238
+ msgNoCacheSelected=No cache selected
239
+ msgUpdatingStatsConfig=Updating statistics configuration\u2026
240
+ msgStatsEnabled=Statistics enabled successfully
241
+ msgStatsDisabled=Statistics disabled successfully
242
+ msgFailedUpdateStatsConfig=Failed to update statistics configuration
243
+ msgErrorUpdateStatsConfig=Error updating statistics configuration
244
+ msgUpdatingKeyTracking=Updating key tracking configuration\u2026
245
+ msgKeyTrackingEnabled=Key tracking enabled successfully
246
+ msgKeyTrackingDisabled=Key tracking disabled successfully
247
+ msgFailedKeyTracking=Failed to update key tracking configuration
248
+ msgErrorKeyTracking=Error updating key tracking configuration
249
+ msgStatsPersisted=Statistics persisted successfully
250
+ msgFailedPersistStats=Failed to persist statistics
251
+ msgErrorPersistStats=Error persisting statistics
252
+ msgLoadEntriesFailed=Failed to load cache entries
253
+ msgProvideKeyValue=Please provide both key and value
254
+ msgEntryCreated=Cache entry created successfully
255
+ msgCreateEntryFailed=Failed to create cache entry
256
+ msgProvideKey=Please provide a key
257
+ msgEntryDeleted=Cache entry deleted successfully
258
+ msgDeleteEntryFailed=Failed to delete cache entry
259
+ msgNotFound=Not found
260
+ msgGetEntryError=Error: Entry not found or error occurred
261
+ msgMetricsEnabled=Metrics enabled successfully
262
+ msgMetricsDisabled=Metrics disabled successfully
263
+ msgFailedUpdateMetrics=Failed to update metrics setting
264
+ msgKeyMetricsEnabled=Key metrics enabled successfully
265
+ msgKeyMetricsDisabled=Key metrics disabled successfully
266
+ msgFailedKeyMetrics=Failed to update key metrics setting
267
+ msgConfirmClearCache=Are you sure you want to clear this cache? This action cannot be undone.
268
+ msgCacheCleared=Cache cleared successfully
269
+ msgClearCacheFailed=Failed to clear cache
270
+ msgMetricsCleared=Metrics cleared successfully
271
+ msgKeyMetricsCleared=Key metrics cleared successfully
272
+ msgFailedClearMetrics=Failed to clear metrics
273
+ msgFailedClearKeyMetrics=Failed to clear key metrics
274
+ msgMetricNotFound=Metric not found
275
+ msgLoadMetricFailed=Failed to load metric details
276
+
277
+ # Key metrics popover tabs
278
+ keyTabMetadata=Metadata
279
+ keyTabSubject=Subject
280
+ keyTabQuery=Query
281
+ keyTabCacheOptions=Cache Options
282
+
283
+ # Chart (single metric) \u2013 operation labels
284
+ chartOpAvgHitLatency=Average Hit Latency
285
+ chartOpAvgMissLatency=Average Miss Latency
286
+ chartOpAvgReadThroughLatency=Average Read-Through Latency
287
+ chartOpHits=Hits
288
+ chartOpMisses=Misses
289
+ chartOpErrors=Errors
290
+ chartOpSets=Sets
291
+ chartOpGets=Gets
292
+ chartOpDeletes=Deletes
293
+ chartOpClears=Clears
294
+ chartOpDeleteByTags=Delete By Tags
295
+
296
+ chartTitleLatencyByOperation=Latency by Operation