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.
- package/README.md +16 -0
- package/app/dashboard/controller/App-dbg.controller.js +14 -14
- package/app/dashboard/controller/App-dbg.controller.js.map +1 -1
- package/app/dashboard/controller/App.controller.js +1 -1
- package/app/dashboard/controller/App.controller.js.map +1 -1
- package/app/dashboard/controller/App.controller.ts +14 -14
- package/app/dashboard/controller/BaseController-dbg.js +7 -0
- package/app/dashboard/controller/BaseController-dbg.js.map +1 -1
- package/app/dashboard/controller/BaseController.js +1 -1
- package/app/dashboard/controller/BaseController.js.map +1 -1
- package/app/dashboard/controller/BaseController.ts +10 -0
- package/app/dashboard/controller/Cache-dbg.controller.js +34 -25
- package/app/dashboard/controller/Cache-dbg.controller.js.map +1 -1
- package/app/dashboard/controller/Cache.controller.js +1 -1
- package/app/dashboard/controller/Cache.controller.js.map +1 -1
- package/app/dashboard/controller/Cache.controller.ts +36 -25
- package/app/dashboard/controller/SingleMetric-dbg.controller.js +56 -50
- package/app/dashboard/controller/SingleMetric-dbg.controller.js.map +1 -1
- package/app/dashboard/controller/SingleMetric.controller.js +1 -1
- package/app/dashboard/controller/SingleMetric.controller.js.map +1 -1
- package/app/dashboard/controller/SingleMetric.controller.ts +29 -22
- package/app/dashboard/i18n/i18n.properties +235 -0
- package/app/dashboard/i18n/i18n_de.properties +271 -3
- package/app/dashboard/i18n/i18n_en.properties +295 -2
- package/app/dashboard/resources/sap-ui-custom.js +11 -11
- package/app/dashboard/resources/sap-ui-custom.js.map +1 -1
- package/app/dashboard/view/Cache.view.xml +149 -149
- package/app/dashboard/view/Main.view.xml +7 -7
- package/app/dashboard/view/SingleMetric.view.xml +30 -30
- package/cds-plugin.js +31 -8
- package/lib/CachingService.js +11 -10
- package/lib/operations/BasicOperations.js +7 -4
- package/lib/support/KeyManager.js +40 -2
- package/lib/util.js +28 -2
- package/package.json +1 -1
|
@@ -13,24 +13,24 @@
|
|
|
13
13
|
formatter: 'cds/plugin/caching/dashboard/model/formatter'
|
|
14
14
|
}">
|
|
15
15
|
|
|
16
|
-
<f:DynamicPage title="
|
|
16
|
+
<f:DynamicPage title="{= ${i18n>cachePagePrefix} + ' ' + ${app>/selectedCache} }" stickySubheaderProvider="cacheStickySubheaderProvider">
|
|
17
17
|
<f:title>
|
|
18
18
|
<f:DynamicPageTitle>
|
|
19
19
|
<f:heading>
|
|
20
|
-
<Title text="
|
|
20
|
+
<Title text="{= ${i18n>cachePagePrefix} + ' ' + ${app>/selectedCache} }"/>
|
|
21
21
|
</f:heading>
|
|
22
22
|
<f:actions>
|
|
23
|
-
<Label text="
|
|
23
|
+
<Label text="{i18n>enableMetricsLabel}" class=""/>
|
|
24
24
|
<Switch id="cacheEnableMetrics" state="{ path: 'metricsEnabled', mode: 'sap.ui.model.BindingMode.OneWay'}" change="onEnableMetricsChange" />
|
|
25
|
-
<Label text="
|
|
25
|
+
<Label text="{i18n>enableKeyMetricsLabel}" class=""/>
|
|
26
26
|
<Switch id="cacheEnableKeyMetrics" state="{ path: 'keyMetricsEnabled', mode: 'sap.ui.model.BindingMode.OneWay' }" change="onEnableKeyMetricsChange" />
|
|
27
27
|
<ToolbarSeparator />
|
|
28
|
-
<Button text="
|
|
28
|
+
<Button text="{i18n>actionClearCache}" type="Transparent" press="onClearCache" />
|
|
29
29
|
</f:actions>
|
|
30
30
|
<f:navigationActions>
|
|
31
|
-
<OverflowToolbarButton type="Transparent" icon="sap-icon://full-screen" press="handleFullScreen" tooltip="
|
|
32
|
-
<OverflowToolbarButton type="Transparent" icon="sap-icon://exit-full-screen" press="handleExitFullScreen" tooltip="
|
|
33
|
-
<OverflowToolbarButton type="Transparent" icon="sap-icon://decline" press="handleClose" tooltip="
|
|
31
|
+
<OverflowToolbarButton type="Transparent" icon="sap-icon://full-screen" press="handleFullScreen" tooltip="{i18n>ttFullScreenEnter}" visible="{= ${app>/layout} === 'TwoColumnsMidExpanded' }"/>
|
|
32
|
+
<OverflowToolbarButton type="Transparent" icon="sap-icon://exit-full-screen" press="handleExitFullScreen" tooltip="{i18n>ttFullScreenExit}" visible="{= ${app>/layout} === 'MidColumnFullScreen' }"/>
|
|
33
|
+
<OverflowToolbarButton type="Transparent" icon="sap-icon://decline" press="handleClose" tooltip="{i18n>ttCloseMidColumn}"/>
|
|
34
34
|
</f:navigationActions>
|
|
35
35
|
</f:DynamicPageTitle>
|
|
36
36
|
</f:title>
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
<f:content>
|
|
47
47
|
<IconTabBar id="cacheStickySubheaderProvider" stretchContentHeight="true" expandable="false" headerMode="Inline" select=".onSelectionChange" selectedKey="{ui>/selectedTab}">
|
|
48
48
|
<items>
|
|
49
|
-
<IconTabFilter text="
|
|
49
|
+
<IconTabFilter text="{i18n>tabOverview}" key="main">
|
|
50
50
|
<f:GridContainer snapToRow="true" allowDenseFill="true">
|
|
51
51
|
<f:Card>
|
|
52
52
|
<f:header>
|
|
53
|
-
<card:Header title="
|
|
53
|
+
<card:Header title="{i18n>configCardTitle}" subtitle="{i18n>configCardSubtitle}" />
|
|
54
54
|
</f:header>
|
|
55
55
|
<f:content>
|
|
56
56
|
<VBox width="100%">
|
|
@@ -67,21 +67,21 @@
|
|
|
67
67
|
</f:Card>
|
|
68
68
|
<f:Card>
|
|
69
69
|
<f:header>
|
|
70
|
-
<card:Header title="
|
|
70
|
+
<card:Header title="{i18n>createEntryTitle}" subtitle="{i18n>createEntrySubtitle}" />
|
|
71
71
|
</f:header>
|
|
72
72
|
<f:content>
|
|
73
73
|
<VBox width="100%">
|
|
74
74
|
<form:SimpleForm width="100%" editable="true" labelSpanL="2" labelSpanM="2" labelSpanS="2" layout="ResponsiveGridLayout">
|
|
75
75
|
<form:content>
|
|
76
|
-
<Label text="
|
|
76
|
+
<Label text="{i18n>labelKey}" />
|
|
77
77
|
<Input id="createKeyInput" value="{ui>/createKey}" width="100%" />
|
|
78
|
-
<Label text="
|
|
78
|
+
<Label text="{i18n>labelValue}"/>
|
|
79
79
|
<TextArea id="createValueInput" rows="10" value="{ui>/createValue}" width="100%" />
|
|
80
|
-
<Label text="
|
|
80
|
+
<Label text="{i18n>labelTtlSeconds}"/>
|
|
81
81
|
<Input id="createTtlInput" type="Number" value="{ui>/createTtl}" width="100%" />
|
|
82
82
|
</form:content>
|
|
83
83
|
</form:SimpleForm>
|
|
84
|
-
<Button text="
|
|
84
|
+
<Button text="{i18n>btnSetEntry}" type="Emphasized" press="onSetKey" class="sapUiSmallMarginEnd sapUiSmallMarginBottom">
|
|
85
85
|
<layoutData>
|
|
86
86
|
<FlexItemData alignSelf="End" />
|
|
87
87
|
</layoutData>
|
|
@@ -97,19 +97,19 @@
|
|
|
97
97
|
</f:Card>
|
|
98
98
|
<f:Card>
|
|
99
99
|
<f:header>
|
|
100
|
-
<card:Header title="
|
|
100
|
+
<card:Header title="{i18n>getEntryTitle}" subtitle="{i18n>getEntrySubtitle}" />
|
|
101
101
|
</f:header>
|
|
102
102
|
<f:content>
|
|
103
103
|
<VBox width="100%">
|
|
104
104
|
<form:SimpleForm width="100%" editable="true" labelSpanL="2" labelSpanM="2" labelSpanS="2" layout="ResponsiveGridLayout">
|
|
105
105
|
<form:content>
|
|
106
|
-
<Label text="
|
|
106
|
+
<Label text="{i18n>labelKey}"/>
|
|
107
107
|
<Input id="getKeyInput" value="{ui>/getKey}" width="100%" />
|
|
108
|
-
<Label text="
|
|
108
|
+
<Label text="{i18n>labelValue}"/>
|
|
109
109
|
<TextArea id="getValueOutput" rows="10" editable="false" width="100%" value="{ui>/getValue}" />
|
|
110
110
|
</form:content>
|
|
111
111
|
</form:SimpleForm>
|
|
112
|
-
<Button text="
|
|
112
|
+
<Button text="{i18n>btnGetEntry}" type="Emphasized" press="onGetKey" class="sapUiSmallMarginEnd sapUiSmallMarginBottom">
|
|
113
113
|
<layoutData>
|
|
114
114
|
<FlexItemData alignSelf="End" />
|
|
115
115
|
</layoutData>
|
|
@@ -125,17 +125,17 @@
|
|
|
125
125
|
</f:Card>
|
|
126
126
|
<f:Card>
|
|
127
127
|
<f:header>
|
|
128
|
-
<card:Header title="
|
|
128
|
+
<card:Header title="{i18n>deleteEntryTitle}" subtitle="{i18n>deleteEntrySubtitle}" />
|
|
129
129
|
</f:header>
|
|
130
130
|
<f:content>
|
|
131
131
|
<VBox width="100%">
|
|
132
132
|
<form:SimpleForm width="100%" editable="true" labelSpanL="2" labelSpanM="2" labelSpanS="2" layout="ResponsiveGridLayout">
|
|
133
133
|
<form:content>
|
|
134
|
-
<Label text="
|
|
134
|
+
<Label text="{i18n>labelKey}" class=""/>
|
|
135
135
|
<Input id="deleteKeyInput" value="{ui>/deleteKey}" width="100%" />
|
|
136
136
|
</form:content>
|
|
137
137
|
</form:SimpleForm>
|
|
138
|
-
<Button text="
|
|
138
|
+
<Button text="{i18n>btnDeleteEntry}" type="Emphasized" press="onDeleteKey" class="sapUiSmallMarginEnd sapUiSmallMarginBottom">
|
|
139
139
|
<layoutData>
|
|
140
140
|
<FlexItemData alignSelf="End" />
|
|
141
141
|
</layoutData>
|
|
@@ -154,12 +154,12 @@
|
|
|
154
154
|
|
|
155
155
|
</IconTabFilter>
|
|
156
156
|
<IconTabSeparator />
|
|
157
|
-
<IconTabFilter text="
|
|
157
|
+
<IconTabFilter text="{i18n>tabMetrics}" key="metrics">
|
|
158
158
|
<Toolbar class="sapUiTinyMarginBottom" design="Transparent" style="Clear">
|
|
159
|
-
<Title text="
|
|
159
|
+
<Title text="{i18n>aggregatedMetricsByHour}" />
|
|
160
160
|
<ToolbarSpacer />
|
|
161
|
-
<Button icon="sap-icon://refresh" text="
|
|
162
|
-
<Button type="Transparent" text="
|
|
161
|
+
<Button icon="sap-icon://refresh" text="{i18n>refreshButton}" press="onRefreshMetricsData" type="Transparent" class="sapUiTinyMarginEnd" />
|
|
162
|
+
<Button type="Transparent" text="{i18n>btnClearMetrics}" press="onClearMetrics" class="sapUiTinyMarginEnd" />
|
|
163
163
|
</Toolbar>
|
|
164
164
|
|
|
165
165
|
<ui:Table id="metricsTable" rows="{
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
<!-- Basic Information -->
|
|
175
175
|
<ui:Column width="150px" sortProperty="timestamp" filterProperty="timestamp">
|
|
176
176
|
<ui:label>
|
|
177
|
-
<Text text="
|
|
177
|
+
<Text text="{i18n>colTimestamp}" />
|
|
178
178
|
</ui:label>
|
|
179
179
|
<ui:template>
|
|
180
180
|
<Text text="{ path: 'timestamp'}" />
|
|
@@ -184,8 +184,8 @@
|
|
|
184
184
|
<!-- Read-Through Operations -->
|
|
185
185
|
<ui:Column width="80px" sortProperty="hits" filterProperty="hits" headerSpan="15,1">
|
|
186
186
|
<ui:multiLabels>
|
|
187
|
-
<Text text="
|
|
188
|
-
<Text text="
|
|
187
|
+
<Text text="{i18n>groupReadThrough}" />
|
|
188
|
+
<Text text="{i18n>colHits}" />
|
|
189
189
|
</ui:multiLabels>
|
|
190
190
|
<ui:template>
|
|
191
191
|
<Text text="{path: 'hits', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -193,8 +193,8 @@
|
|
|
193
193
|
</ui:Column>
|
|
194
194
|
<ui:Column width="80px" sortProperty="misses" filterProperty="misses">
|
|
195
195
|
<ui:multiLabels>
|
|
196
|
-
<Text text="
|
|
197
|
-
<Text text="
|
|
196
|
+
<Text text="{i18n>groupReadThrough}" />
|
|
197
|
+
<Text text="{i18n>colMisses}" />
|
|
198
198
|
</ui:multiLabels>
|
|
199
199
|
<ui:template>
|
|
200
200
|
<Text text="{path: 'misses', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -202,8 +202,8 @@
|
|
|
202
202
|
</ui:Column>
|
|
203
203
|
<ui:Column width="80px" sortProperty="errors" filterProperty="errors">
|
|
204
204
|
<ui:multiLabels>
|
|
205
|
-
<Text text="
|
|
206
|
-
<Text text="
|
|
205
|
+
<Text text="{i18n>groupReadThrough}" />
|
|
206
|
+
<Text text="{i18n>colErrors}" />
|
|
207
207
|
</ui:multiLabels>
|
|
208
208
|
<ui:template>
|
|
209
209
|
<Text text="{path: 'errors', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -211,8 +211,8 @@
|
|
|
211
211
|
</ui:Column>
|
|
212
212
|
<ui:Column width="80px" sortProperty="totalRequests" filterProperty="totalRequests">
|
|
213
213
|
<ui:multiLabels>
|
|
214
|
-
<Text text="
|
|
215
|
-
<Text text="
|
|
214
|
+
<Text text="{i18n>groupReadThrough}" />
|
|
215
|
+
<Text text="{i18n>colTotalRequests}" />
|
|
216
216
|
</ui:multiLabels>
|
|
217
217
|
<ui:template>
|
|
218
218
|
<Text text="{path: 'totalRequests', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -222,8 +222,8 @@
|
|
|
222
222
|
<!-- Read-Through Performance -->
|
|
223
223
|
<ui:Column width="100px" sortProperty="hitRatio" filterProperty="hitRatio">
|
|
224
224
|
<ui:multiLabels>
|
|
225
|
-
<Text text="
|
|
226
|
-
<Text text="
|
|
225
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
226
|
+
<Text text="{i18n>colHitRatioPct}" />
|
|
227
227
|
</ui:multiLabels>
|
|
228
228
|
<ui:template>
|
|
229
229
|
<Text text="{path: 'hitRatio', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -231,8 +231,8 @@
|
|
|
231
231
|
</ui:Column>
|
|
232
232
|
<ui:Column width="100px" sortProperty="throughput" filterProperty="throughput">
|
|
233
233
|
<ui:multiLabels>
|
|
234
|
-
<Text text="
|
|
235
|
-
<Text text="
|
|
234
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
235
|
+
<Text text="{i18n>throughput}" />
|
|
236
236
|
</ui:multiLabels>
|
|
237
237
|
<ui:template>
|
|
238
238
|
<Text text="{path: 'throughput', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -240,8 +240,8 @@
|
|
|
240
240
|
</ui:Column>
|
|
241
241
|
<ui:Column width="100px" sortProperty="errorRate" filterProperty="errorRate">
|
|
242
242
|
<ui:multiLabels>
|
|
243
|
-
<Text text="
|
|
244
|
-
<Text text="
|
|
243
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
244
|
+
<Text text="{i18n>colErrorRatePct}" />
|
|
245
245
|
</ui:multiLabels>
|
|
246
246
|
<ui:template>
|
|
247
247
|
<Text text="{path: 'errorRate', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -249,8 +249,8 @@
|
|
|
249
249
|
</ui:Column>
|
|
250
250
|
<ui:Column width="120px" sortProperty="cacheEfficiency" filterProperty="cacheEfficiency">
|
|
251
251
|
<ui:multiLabels>
|
|
252
|
-
<Text text="
|
|
253
|
-
<Text text="
|
|
252
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
253
|
+
<Text text="{i18n>colCacheEfficiency}" />
|
|
254
254
|
</ui:multiLabels>
|
|
255
255
|
<ui:template>
|
|
256
256
|
<Text text="{path: 'cacheEfficiency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -260,8 +260,8 @@
|
|
|
260
260
|
<!-- Read-Through Hit Latencies -->
|
|
261
261
|
<ui:Column width="120px" sortProperty="avgReadThroughLatency" filterProperty="avgReadThroughLatency" headerSpan="8,1">
|
|
262
262
|
<ui:multiLabels>
|
|
263
|
-
<Text text="
|
|
264
|
-
<Text text="
|
|
263
|
+
<Text text="{i18n>groupReadThroughLatencies}" />
|
|
264
|
+
<Text text="{i18n>colAvgLatencyMs}" />
|
|
265
265
|
</ui:multiLabels>
|
|
266
266
|
<ui:template>
|
|
267
267
|
<Text text="{path: 'avgReadThroughLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -270,8 +270,8 @@
|
|
|
270
270
|
|
|
271
271
|
<ui:Column width="120px" sortProperty="avgHitLatency" filterProperty="avgHitLatency" headerSpan="8,1">
|
|
272
272
|
<ui:multiLabels>
|
|
273
|
-
<Text text="
|
|
274
|
-
<Text text="
|
|
273
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
274
|
+
<Text text="{i18n>colHitAvgMs}" />
|
|
275
275
|
</ui:multiLabels>
|
|
276
276
|
<ui:template>
|
|
277
277
|
<Text text="{path: 'avgHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -280,8 +280,8 @@
|
|
|
280
280
|
|
|
281
281
|
<ui:Column width="120px" sortProperty="minHitLatency" filterProperty="minHitLatency">
|
|
282
282
|
<ui:multiLabels>
|
|
283
|
-
<Text text="
|
|
284
|
-
<Text text="
|
|
283
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
284
|
+
<Text text="{i18n>colHitMinMs}" />
|
|
285
285
|
</ui:multiLabels>
|
|
286
286
|
<ui:template>
|
|
287
287
|
<Text text="{path: 'minHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -289,8 +289,8 @@
|
|
|
289
289
|
</ui:Column>
|
|
290
290
|
<ui:Column width="120px" sortProperty="maxHitLatency" filterProperty="maxHitLatency">
|
|
291
291
|
<ui:multiLabels>
|
|
292
|
-
<Text text="
|
|
293
|
-
<Text text="
|
|
292
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
293
|
+
<Text text="{i18n>colHitMaxMs}" />
|
|
294
294
|
</ui:multiLabels>
|
|
295
295
|
<ui:template>
|
|
296
296
|
<Text text="{path: 'maxHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -300,8 +300,8 @@
|
|
|
300
300
|
<!-- Read-Through Miss Latencies -->
|
|
301
301
|
<ui:Column width="120px" sortProperty="avgMissLatency" filterProperty="avgMissLatency" headerSpan="5,1">
|
|
302
302
|
<ui:multiLabels>
|
|
303
|
-
<Text text="
|
|
304
|
-
<Text text="
|
|
303
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
304
|
+
<Text text="{i18n>colMissAvgMs}" />
|
|
305
305
|
</ui:multiLabels>
|
|
306
306
|
<ui:template>
|
|
307
307
|
<Text text="{path: 'avgMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -310,8 +310,8 @@
|
|
|
310
310
|
|
|
311
311
|
<ui:Column width="120px" sortProperty="minMissLatency" filterProperty="minMissLatency">
|
|
312
312
|
<ui:multiLabels>
|
|
313
|
-
<Text text="
|
|
314
|
-
<Text text="
|
|
313
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
314
|
+
<Text text="{i18n>colMissMinMs}" />
|
|
315
315
|
</ui:multiLabels>
|
|
316
316
|
<ui:template>
|
|
317
317
|
<Text text="{path: 'minMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -319,8 +319,8 @@
|
|
|
319
319
|
</ui:Column>
|
|
320
320
|
<ui:Column width="120px" sortProperty="maxMissLatency" filterProperty="maxMissLatency">
|
|
321
321
|
<ui:multiLabels>
|
|
322
|
-
<Text text="
|
|
323
|
-
<Text text="
|
|
322
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
323
|
+
<Text text="{i18n>colMissMaxMs}" />
|
|
324
324
|
</ui:multiLabels>
|
|
325
325
|
<ui:template>
|
|
326
326
|
<Text text="{path: 'maxMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}ms" />
|
|
@@ -331,8 +331,8 @@
|
|
|
331
331
|
<!-- Native Function Operations -->
|
|
332
332
|
<ui:Column width="80px" sortProperty="nativeSets" filterProperty="nativeSets" headerSpan="9,1">
|
|
333
333
|
<ui:multiLabels>
|
|
334
|
-
<Text text="
|
|
335
|
-
<Text text="
|
|
334
|
+
<Text text="{i18n>groupNativeFunction}" />
|
|
335
|
+
<Text text="{i18n>colSets}" />
|
|
336
336
|
</ui:multiLabels>
|
|
337
337
|
<ui:template>
|
|
338
338
|
<Text text="{path: 'nativeSets', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -340,8 +340,8 @@
|
|
|
340
340
|
</ui:Column>
|
|
341
341
|
<ui:Column width="80px" sortProperty="nativeGets" filterProperty="nativeGets">
|
|
342
342
|
<ui:multiLabels>
|
|
343
|
-
<Text text="
|
|
344
|
-
<Text text="
|
|
343
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
344
|
+
<Text text="{i18n>colGets}" />
|
|
345
345
|
</ui:multiLabels>
|
|
346
346
|
<ui:template>
|
|
347
347
|
<Text text="{path: 'nativeGets', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -349,8 +349,8 @@
|
|
|
349
349
|
</ui:Column>
|
|
350
350
|
<ui:Column width="80px" sortProperty="nativeDeletes" filterProperty="nativeDeletes">
|
|
351
351
|
<ui:multiLabels>
|
|
352
|
-
<Text text="
|
|
353
|
-
<Text text="
|
|
352
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
353
|
+
<Text text="{i18n>colDeletes}" />
|
|
354
354
|
</ui:multiLabels>
|
|
355
355
|
<ui:template>
|
|
356
356
|
<Text text="{path: 'nativeDeletes', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -358,8 +358,8 @@
|
|
|
358
358
|
</ui:Column>
|
|
359
359
|
<ui:Column width="80px" sortProperty="nativeClears" filterProperty="nativeClears">
|
|
360
360
|
<ui:multiLabels>
|
|
361
|
-
<Text text="
|
|
362
|
-
<Text text="
|
|
361
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
362
|
+
<Text text="{i18n>colClears}" />
|
|
363
363
|
</ui:multiLabels>
|
|
364
364
|
<ui:template>
|
|
365
365
|
<Text text="{path: 'nativeClears', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -367,8 +367,8 @@
|
|
|
367
367
|
</ui:Column>
|
|
368
368
|
<ui:Column width="80px" sortProperty="nativeDeleteByTags" filterProperty="nativeDeleteByTags">
|
|
369
369
|
<ui:multiLabels>
|
|
370
|
-
<Text text="
|
|
371
|
-
<Text text="
|
|
370
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
371
|
+
<Text text="{i18n>colDeleteByTags}" />
|
|
372
372
|
</ui:multiLabels>
|
|
373
373
|
<ui:template>
|
|
374
374
|
<Text text="{path: 'nativeDeleteByTags', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -376,8 +376,8 @@
|
|
|
376
376
|
</ui:Column>
|
|
377
377
|
<ui:Column width="80px" sortProperty="nativeErrors" filterProperty="nativeErrors">
|
|
378
378
|
<ui:multiLabels>
|
|
379
|
-
<Text text="
|
|
380
|
-
<Text text="
|
|
379
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
380
|
+
<Text text="{i18n>colErrors}" />
|
|
381
381
|
</ui:multiLabels>
|
|
382
382
|
<ui:template>
|
|
383
383
|
<Text text="{path: 'nativeErrors', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -385,8 +385,8 @@
|
|
|
385
385
|
</ui:Column>
|
|
386
386
|
<ui:Column width="80px" sortProperty="totalNativeOperations" filterProperty="totalNativeOperations">
|
|
387
387
|
<ui:multiLabels>
|
|
388
|
-
<Text text="
|
|
389
|
-
<Text text="
|
|
388
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
389
|
+
<Text text="{i18n>colTotal}" />
|
|
390
390
|
</ui:multiLabels>
|
|
391
391
|
<ui:template>
|
|
392
392
|
<Text text="{path: 'totalNativeOperations', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -396,8 +396,8 @@
|
|
|
396
396
|
<!-- Native Function Performance -->
|
|
397
397
|
<ui:Column width="100px" sortProperty="nativeThroughput" filterProperty="nativeThroughput" headerSpan="2,1">
|
|
398
398
|
<ui:multiLabels>
|
|
399
|
-
<Text text="
|
|
400
|
-
<Text text="
|
|
399
|
+
<Text text="{i18n>groupNativeFunctionPerformance}" />
|
|
400
|
+
<Text text="{i18n>throughput}" />
|
|
401
401
|
</ui:multiLabels>
|
|
402
402
|
<ui:template>
|
|
403
403
|
<Text text="{path: 'nativeThroughput', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -405,8 +405,8 @@
|
|
|
405
405
|
</ui:Column>
|
|
406
406
|
<ui:Column width="100px" sortProperty="nativeErrorRate" filterProperty="nativeErrorRate">
|
|
407
407
|
<ui:multiLabels>
|
|
408
|
-
<Text text="
|
|
409
|
-
<Text text="
|
|
408
|
+
<Text text="{i18n>groupNativeFunctionPerformance}" />
|
|
409
|
+
<Text text="{i18n>colErrorRatePct}" />
|
|
410
410
|
</ui:multiLabels>
|
|
411
411
|
<ui:template>
|
|
412
412
|
<Text text="{path: 'nativeErrorRate', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -419,36 +419,36 @@
|
|
|
419
419
|
<!-- Chart Section -->
|
|
420
420
|
<f:Card class="sapUiTinyMarginBottom" visible="false">
|
|
421
421
|
<f:header>
|
|
422
|
-
<card:Header title="
|
|
422
|
+
<card:Header title="{i18n>statisticsTrends}" subtitle="{i18n>statisticsTrendsSubtitle}" />
|
|
423
423
|
</f:header>
|
|
424
424
|
<f:content>
|
|
425
425
|
<l:VerticalLayout class="sapUiTinyMargin">
|
|
426
426
|
<l:HorizontalLayout class="sapUiTinyMarginBottom">
|
|
427
427
|
<Select id="cacheChartMetric" selectedKey="{ui>/chartMetric}" change=".onChartMetricChange" class="sapUiTinyMarginEnd">
|
|
428
|
-
<core:Item key="hitRatio" text="
|
|
429
|
-
<core:Item key="avgLatency" text="
|
|
430
|
-
<core:Item key="avgHitLatency" text="
|
|
431
|
-
<core:Item key="avgMissLatency" text="
|
|
432
|
-
<core:Item key="cacheEfficiency" text="
|
|
433
|
-
<core:Item key="throughput" text="
|
|
434
|
-
<core:Item key="errorRate" text="
|
|
435
|
-
<core:Item key="memoryUsage" text="
|
|
428
|
+
<core:Item key="hitRatio" text="{i18n>hitRatio}" />
|
|
429
|
+
<core:Item key="avgLatency" text="{i18n>avgLatency}" />
|
|
430
|
+
<core:Item key="avgHitLatency" text="{i18n>selectChartHitLatency}" />
|
|
431
|
+
<core:Item key="avgMissLatency" text="{i18n>selectChartMissLatency}" />
|
|
432
|
+
<core:Item key="cacheEfficiency" text="{i18n>colCacheEfficiency}" />
|
|
433
|
+
<core:Item key="throughput" text="{i18n>throughput}" />
|
|
434
|
+
<core:Item key="errorRate" text="{i18n>errorRate}" />
|
|
435
|
+
<core:Item key="memoryUsage" text="{i18n>memoryUsage}" />
|
|
436
436
|
</Select>
|
|
437
437
|
</l:HorizontalLayout>
|
|
438
438
|
|
|
439
|
-
<Text text="
|
|
439
|
+
<Text text="{i18n>chartPlaceholder}" />
|
|
440
440
|
</l:VerticalLayout>
|
|
441
441
|
</f:content>
|
|
442
442
|
</f:Card>
|
|
443
443
|
</IconTabFilter>
|
|
444
|
-
<IconTabFilter text="
|
|
444
|
+
<IconTabFilter text="{i18n>keyMetricsToolbarTitle}" key="keymetrics">
|
|
445
445
|
|
|
446
446
|
<!-- Key Access Data Table -->
|
|
447
447
|
<Toolbar class="sapUiTinyMarginBottom" design="Transparent" style="Clear">
|
|
448
|
-
<Title text="
|
|
448
|
+
<Title text="{i18n>keyMetricsToolbarTitle}" />
|
|
449
449
|
<ToolbarSpacer />
|
|
450
|
-
<Button icon="sap-icon://refresh" text="
|
|
451
|
-
<Button type="Transparent" text="
|
|
450
|
+
<Button icon="sap-icon://refresh" text="{i18n>refreshButton}" press="onRefreshKeyMetricsData" type="Transparent" class="sapUiTinyMarginEnd" />
|
|
451
|
+
<Button type="Transparent" text="{i18n>btnClearMetrics}" press="onClearKeyMetrics" class="sapUiTinyMarginEnd" />
|
|
452
452
|
</Toolbar>
|
|
453
453
|
<ui:Table id="keyMetricsTable" rows="{
|
|
454
454
|
path: '/KeyMetrics',
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
<!-- Basic Information -->
|
|
462
462
|
<ui:Column minWidth="200px" sortProperty="keyName" filterProperty="keyName">
|
|
463
463
|
<ui:multiLabels>
|
|
464
|
-
<Text text="
|
|
464
|
+
<Text text="{i18n>colKeyName}" />
|
|
465
465
|
</ui:multiLabels>
|
|
466
466
|
<ui:template>
|
|
467
467
|
<VBox width="100%">
|
|
@@ -475,8 +475,8 @@
|
|
|
475
475
|
</ui:Column>
|
|
476
476
|
<ui:Column width="100px" sortProperty="operation" filterProperty="operation" headerSpan="5,1">
|
|
477
477
|
<ui:multiLabels>
|
|
478
|
-
<Text text="
|
|
479
|
-
<Text text="
|
|
478
|
+
<Text text="{i18n>ctxGroup}" />
|
|
479
|
+
<Text text="{i18n>colOperation}" />
|
|
480
480
|
</ui:multiLabels>
|
|
481
481
|
<ui:template>
|
|
482
482
|
<Text text="{operation}" />
|
|
@@ -484,8 +484,8 @@
|
|
|
484
484
|
</ui:Column>
|
|
485
485
|
<ui:Column width="150px" sortProperty="dataType" filterProperty="dataType" >
|
|
486
486
|
<ui:multiLabels>
|
|
487
|
-
<Text text="
|
|
488
|
-
<Text text="
|
|
487
|
+
<Text text="{i18n>ctxGroup}" />
|
|
488
|
+
<Text text="{i18n>colType}" />
|
|
489
489
|
</ui:multiLabels>
|
|
490
490
|
<ui:template>
|
|
491
491
|
<Text text="{dataType}" />
|
|
@@ -493,8 +493,8 @@
|
|
|
493
493
|
</ui:Column>
|
|
494
494
|
<ui:Column width="150px" sortProperty="operationType" filterProperty="operationType">
|
|
495
495
|
<ui:multiLabels>
|
|
496
|
-
<Text text="
|
|
497
|
-
<Text text="
|
|
496
|
+
<Text text="{i18n>ctxGroup}" />
|
|
497
|
+
<Text text="{i18n>colOperationType}" />
|
|
498
498
|
</ui:multiLabels>
|
|
499
499
|
<ui:template>
|
|
500
500
|
<Text text="{operationType}" />
|
|
@@ -504,8 +504,8 @@
|
|
|
504
504
|
<!-- Metadata -->
|
|
505
505
|
<ui:Column width="200px" sortProperty="target" filterProperty="target">
|
|
506
506
|
<ui:multiLabels>
|
|
507
|
-
<Text text="
|
|
508
|
-
<Text text="
|
|
507
|
+
<Text text="{i18n>ctxGroup}" />
|
|
508
|
+
<Text text="{i18n>colTarget}" />
|
|
509
509
|
</ui:multiLabels>
|
|
510
510
|
<ui:template>
|
|
511
511
|
<Text text="{target}" />
|
|
@@ -514,11 +514,11 @@
|
|
|
514
514
|
|
|
515
515
|
<ui:Column width="180px" >
|
|
516
516
|
<ui:multiLabels>
|
|
517
|
-
<Text text="
|
|
518
|
-
<Text text="
|
|
517
|
+
<Text text="{i18n>ctxGroup}" />
|
|
518
|
+
<Text text="{i18n>colMetadata}" />
|
|
519
519
|
</ui:multiLabels>
|
|
520
520
|
<ui:template>
|
|
521
|
-
<Button text="
|
|
521
|
+
<Button text="{i18n>btnShowMetadata}" type="Transparent" press="onShowKeyMetricsMetadata" />
|
|
522
522
|
</ui:template>
|
|
523
523
|
</ui:Column>
|
|
524
524
|
|
|
@@ -526,8 +526,8 @@
|
|
|
526
526
|
<!-- Read-Through Operations -->
|
|
527
527
|
<ui:Column width="60px" sortProperty="hits" filterProperty="hits" headerSpan="11,1">
|
|
528
528
|
<ui:multiLabels>
|
|
529
|
-
<Text text="
|
|
530
|
-
<Text text="
|
|
529
|
+
<Text text="{i18n>groupReadThrough}" />
|
|
530
|
+
<Text text="{i18n>colHits}" />
|
|
531
531
|
</ui:multiLabels>
|
|
532
532
|
<ui:template>
|
|
533
533
|
<Text text="{path: 'hits', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -535,8 +535,8 @@
|
|
|
535
535
|
</ui:Column>
|
|
536
536
|
<ui:Column width="60px" sortProperty="misses" filterProperty="misses">
|
|
537
537
|
<ui:multiLabels>
|
|
538
|
-
<Text text="
|
|
539
|
-
<Text text="
|
|
538
|
+
<Text text="{i18n>groupReadThroughOps}" />
|
|
539
|
+
<Text text="{i18n>colMisses}" />
|
|
540
540
|
</ui:multiLabels>
|
|
541
541
|
<ui:template>
|
|
542
542
|
<Text text="{path: 'misses', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -545,8 +545,8 @@
|
|
|
545
545
|
|
|
546
546
|
<ui:Column width="60px" sortProperty="total" filterProperty="total">
|
|
547
547
|
<ui:multiLabels>
|
|
548
|
-
<Text text="
|
|
549
|
-
<Text text="
|
|
548
|
+
<Text text="{i18n>groupReadThroughOps}" />
|
|
549
|
+
<Text text="{i18n>colTotal}" />
|
|
550
550
|
</ui:multiLabels>
|
|
551
551
|
<ui:template>
|
|
552
552
|
<Text text="{path: 'totalRequests', type: 'sap.ui.model.type.Integer'}" />
|
|
@@ -556,8 +556,8 @@
|
|
|
556
556
|
<!-- Read-Through Performance -->
|
|
557
557
|
<ui:Column width="100px" sortProperty="hitRatio" filterProperty="hitRatio" headerSpan="2,1">
|
|
558
558
|
<ui:multiLabels>
|
|
559
|
-
<Text text="
|
|
560
|
-
<Text text="
|
|
559
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
560
|
+
<Text text="{i18n>colHitRatioPct}" />
|
|
561
561
|
</ui:multiLabels>
|
|
562
562
|
<ui:template>
|
|
563
563
|
<Text text="{path: 'hitRatio', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -565,8 +565,8 @@
|
|
|
565
565
|
</ui:Column>
|
|
566
566
|
<ui:Column width="120px" sortProperty="cacheEfficiency" filterProperty="cacheEfficiency">
|
|
567
567
|
<ui:multiLabels>
|
|
568
|
-
<Text text="
|
|
569
|
-
<Text text="
|
|
568
|
+
<Text text="{i18n>groupReadThroughPerformance}" />
|
|
569
|
+
<Text text="{i18n>colCacheEfficiency}" />
|
|
570
570
|
</ui:multiLabels>
|
|
571
571
|
<ui:template>
|
|
572
572
|
<Text text="{path: 'cacheEfficiency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -576,8 +576,8 @@
|
|
|
576
576
|
<!-- Read-Through Hit Latencies -->
|
|
577
577
|
<ui:Column width="120px" sortProperty="avgHitLatency" filterProperty="avgHitLatency" headerSpan="5,1">
|
|
578
578
|
<ui:multiLabels>
|
|
579
|
-
<Text text="
|
|
580
|
-
<Text text="
|
|
579
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
580
|
+
<Text text="{i18n>colAvgHitLatencyMs}" />
|
|
581
581
|
</ui:multiLabels>
|
|
582
582
|
<ui:template>
|
|
583
583
|
<Text text="{path: 'avgHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
|
|
587
587
|
<ui:Column width="120px" sortProperty="minHitLatency" filterProperty="minHitLatency">
|
|
588
588
|
<ui:multiLabels>
|
|
589
|
-
<Text text="
|
|
590
|
-
<Text text="
|
|
589
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
590
|
+
<Text text="{i18n>colMinHitLatencyMs}" />
|
|
591
591
|
</ui:multiLabels>
|
|
592
592
|
<ui:template>
|
|
593
593
|
<Text text="{path: 'minHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -595,8 +595,8 @@
|
|
|
595
595
|
</ui:Column>
|
|
596
596
|
<ui:Column width="120px" sortProperty="maxHitLatency" filterProperty="maxHitLatency">
|
|
597
597
|
<ui:multiLabels>
|
|
598
|
-
<Text text="
|
|
599
|
-
<Text text="
|
|
598
|
+
<Text text="{i18n>groupReadThroughHitLatencies}" />
|
|
599
|
+
<Text text="{i18n>colMaxHitLatencyMs}" />
|
|
600
600
|
</ui:multiLabels>
|
|
601
601
|
<ui:template>
|
|
602
602
|
<Text text="{path: 'maxHitLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -606,8 +606,8 @@
|
|
|
606
606
|
<!-- Read-Through Miss Latencies -->
|
|
607
607
|
<ui:Column width="120px" sortProperty="avgMissLatency" filterProperty="avgMissLatency" headerSpan="5,1">
|
|
608
608
|
<ui:multiLabels>
|
|
609
|
-
<Text text="
|
|
610
|
-
<Text text="
|
|
609
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
610
|
+
<Text text="{i18n>colAvgMissLatencyMs}" />
|
|
611
611
|
</ui:multiLabels>
|
|
612
612
|
<ui:template>
|
|
613
613
|
<Text text="{path: 'avgMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -615,8 +615,8 @@
|
|
|
615
615
|
</ui:Column>
|
|
616
616
|
<ui:Column width="120px" sortProperty="minMissLatency" filterProperty="minMissLatency">
|
|
617
617
|
<ui:multiLabels>
|
|
618
|
-
<Text text="
|
|
619
|
-
<Text text="
|
|
618
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
619
|
+
<Text text="{i18n>colMinMissLatencyMs}" />
|
|
620
620
|
</ui:multiLabels>
|
|
621
621
|
<ui:template>
|
|
622
622
|
<Text text="{path: 'minMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -624,8 +624,8 @@
|
|
|
624
624
|
</ui:Column>
|
|
625
625
|
<ui:Column width="120px" sortProperty="maxMissLatency" filterProperty="maxMissLatency">
|
|
626
626
|
<ui:multiLabels>
|
|
627
|
-
<Text text="
|
|
628
|
-
<Text text="
|
|
627
|
+
<Text text="{i18n>groupReadThroughMissLatencies}" />
|
|
628
|
+
<Text text="{i18n>colMaxMissLatencyMs}" />
|
|
629
629
|
</ui:multiLabels>
|
|
630
630
|
<ui:template>
|
|
631
631
|
<Text text="{path: 'maxMissLatency', type: 'sap.ui.model.type.Float', formatOptions: {style: 'short', decimals: 2}}" />
|
|
@@ -635,8 +635,8 @@
|
|
|
635
635
|
<!-- Native Function Operations -->
|
|
636
636
|
<ui:Column width="70px" sortProperty="nativeHits" filterProperty="nativeHits" headerSpan="4,1">
|
|
637
637
|
<ui:multiLabels>
|
|
638
|
-
<Text text="
|
|
639
|
-
<Text text="
|
|
638
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
639
|
+
<Text text="{i18n>colHits}" />
|
|
640
640
|
</ui:multiLabels>
|
|
641
641
|
<ui:template>
|
|
642
642
|
<Text text="{nativeHits}" />
|
|
@@ -644,8 +644,8 @@
|
|
|
644
644
|
</ui:Column>
|
|
645
645
|
<ui:Column width="70px" sortProperty="nativeMisses" filterProperty="nativeMisses">
|
|
646
646
|
<ui:multiLabels>
|
|
647
|
-
<Text text="
|
|
648
|
-
<Text text="
|
|
647
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
648
|
+
<Text text="{i18n>colMisses}" />
|
|
649
649
|
</ui:multiLabels>
|
|
650
650
|
<ui:template>
|
|
651
651
|
<Text text="{nativeMisses}" />
|
|
@@ -653,8 +653,8 @@
|
|
|
653
653
|
</ui:Column>
|
|
654
654
|
<ui:Column width="70px" sortProperty="nativeSets" filterProperty="nativeSets">
|
|
655
655
|
<ui:multiLabels>
|
|
656
|
-
<Text text="
|
|
657
|
-
<Text text="
|
|
656
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
657
|
+
<Text text="{i18n>colSets}" />
|
|
658
658
|
</ui:multiLabels>
|
|
659
659
|
<ui:template>
|
|
660
660
|
<Text text="{nativeSets}" />
|
|
@@ -662,8 +662,8 @@
|
|
|
662
662
|
</ui:Column>
|
|
663
663
|
<ui:Column width="70px" sortProperty="nativeDeletes" filterProperty="nativeDeletes">
|
|
664
664
|
<ui:multiLabels>
|
|
665
|
-
<Text text="
|
|
666
|
-
<Text text="
|
|
665
|
+
<Text text="{i18n>groupNativeFunctionOps}" />
|
|
666
|
+
<Text text="{i18n>colDeletes}" />
|
|
667
667
|
</ui:multiLabels>
|
|
668
668
|
<ui:template>
|
|
669
669
|
<Text text="{nativeDeletes}" />
|
|
@@ -675,8 +675,8 @@
|
|
|
675
675
|
|
|
676
676
|
<ui:Column width="100px" sortProperty="tenant" filterProperty="tenant" headerSpan="5,1">
|
|
677
677
|
<ui:multiLabels>
|
|
678
|
-
<Text text="
|
|
679
|
-
<Text text="
|
|
678
|
+
<Text text="{i18n>infoAdditional}" />
|
|
679
|
+
<Text text="{i18n>colTenant}" />
|
|
680
680
|
</ui:multiLabels>
|
|
681
681
|
<ui:template>
|
|
682
682
|
<Text text="{tenant}" />
|
|
@@ -684,8 +684,8 @@
|
|
|
684
684
|
</ui:Column>
|
|
685
685
|
<ui:Column width="100px" sortProperty="user" filterProperty="user">
|
|
686
686
|
<ui:multiLabels>
|
|
687
|
-
<Text text="
|
|
688
|
-
<Text text="
|
|
687
|
+
<Text text="{i18n>infoAdditional}" />
|
|
688
|
+
<Text text="{i18n>colUser}" />
|
|
689
689
|
</ui:multiLabels>
|
|
690
690
|
<ui:template>
|
|
691
691
|
<Text text="{user}" />
|
|
@@ -693,8 +693,8 @@
|
|
|
693
693
|
</ui:Column>
|
|
694
694
|
<ui:Column width="80px" sortProperty="locale" filterProperty="locale">
|
|
695
695
|
<ui:multiLabels>
|
|
696
|
-
<Text text="
|
|
697
|
-
<Text text="
|
|
696
|
+
<Text text="{i18n>infoAdditional}" />
|
|
697
|
+
<Text text="{i18n>colLocale}" />
|
|
698
698
|
</ui:multiLabels>
|
|
699
699
|
<ui:template>
|
|
700
700
|
<Text text="{locale}" />
|
|
@@ -702,8 +702,8 @@
|
|
|
702
702
|
</ui:Column>
|
|
703
703
|
<ui:Column width="150px" sortProperty="lastAccess" filterProperty="lastAccess" >
|
|
704
704
|
<ui:multiLabels>
|
|
705
|
-
<Text text="
|
|
706
|
-
<Text text="
|
|
705
|
+
<Text text="{i18n>infoAdditional}" />
|
|
706
|
+
<Text text="{i18n>colLastAccess}" />
|
|
707
707
|
</ui:multiLabels>
|
|
708
708
|
<ui:template>
|
|
709
709
|
<Text text="{ path: 'lastAccess'}" />
|
|
@@ -711,8 +711,8 @@
|
|
|
711
711
|
</ui:Column>
|
|
712
712
|
<ui:Column width="150px" sortProperty="timestamp" filterProperty="timestamp">
|
|
713
713
|
<ui:multiLabels>
|
|
714
|
-
<Text text="
|
|
715
|
-
<Text text="
|
|
714
|
+
<Text text="{i18n>infoAdditional}" />
|
|
715
|
+
<Text text="{i18n>colFirstAccess}" />
|
|
716
716
|
</ui:multiLabels>
|
|
717
717
|
<ui:template>
|
|
718
718
|
<Text text="{ path: 'timestamp'}" />
|
|
@@ -723,31 +723,31 @@
|
|
|
723
723
|
|
|
724
724
|
</IconTabFilter>
|
|
725
725
|
<IconTabSeparator ></IconTabSeparator>
|
|
726
|
-
<IconTabFilter text="
|
|
726
|
+
<IconTabFilter text="{i18n>tabBrowseCacheEntries}" key="entries" icon="sap-icon://warning" iconColor="Critical">
|
|
727
727
|
<l:VerticalLayout width="100%">
|
|
728
728
|
<f:Card class="sapUiTinyMargin">
|
|
729
729
|
<f:header>
|
|
730
|
-
<card:Header title="
|
|
730
|
+
<card:Header title="{i18n>cacheEntriesTitle}" subtitle="{i18n>cacheEntriesSubtitle}" />
|
|
731
731
|
</f:header>
|
|
732
732
|
<f:content>
|
|
733
733
|
<l:VerticalLayout class="sapUiTinyMargin">
|
|
734
|
-
<MessageStrip text="
|
|
734
|
+
<MessageStrip text="{i18n>messageStripLoadEntriesWarning}" type="Warning" showIcon="true" class="sapUiTinyMarginBottom" />
|
|
735
735
|
|
|
736
|
-
<Button text="
|
|
736
|
+
<Button text="{i18n>btnLoadCacheEntries}" icon="sap-icon://download" press="onLoadCacheEntries" type="Emphasized" class="sapUiTinyMarginBottom" />
|
|
737
737
|
|
|
738
738
|
<Table id="cacheEntriesTable" items="{ui>/cacheEntries}" busyIndicatorDelay="0" busy="{ui>/loadingEntries}" visible="{ui>/showEntriesTable}">
|
|
739
739
|
<columns>
|
|
740
740
|
<Column width="200px">
|
|
741
|
-
<Text text="
|
|
741
|
+
<Text text="{i18n>labelKey}" />
|
|
742
742
|
</Column>
|
|
743
743
|
<Column width="300px">
|
|
744
|
-
<Text text="
|
|
744
|
+
<Text text="{i18n>labelValue}" />
|
|
745
745
|
</Column>
|
|
746
746
|
<Column width="100px">
|
|
747
|
-
<Text text="
|
|
747
|
+
<Text text="{i18n>colTags}" />
|
|
748
748
|
</Column>
|
|
749
749
|
<Column width="150px">
|
|
750
|
-
<Text text="
|
|
750
|
+
<Text text="{i18n>colTimestamp}" />
|
|
751
751
|
</Column>
|
|
752
752
|
|
|
753
753
|
</columns>
|