8aba64c98a78516542a052008fdd753c23941ebc
[portal/sdk.git] /
1 <div id="page-content" style=" width: 100%">
2
3         <div>
4                 <h1 class="heading-page" id="CacheRegions">Cache Regions</h1>
5         </div>
6
7         <div style="margin-right:20px; text-align:justify; text-align-last:auto;">
8         <p>
9         These are the regions which are currently defined in the cache. 'Items' and 'Bytes' refer to the elements currently in memory (not spooled).
10         You can clear all items for a region by clicking on the Clear icon next to the desired region below. You can also <a href="admin#/jcs_admin"  ng-click="clearAllFuncPopUp();">clear all regions</a> 
11         which empties the entire cache.</p>
12         </div>
13         
14
15
16           <mat-accordion displayMode="flat" multi class="mat-table">
17                 <section matSort class="mat-header-row">
18                   <span class="mat-header-cell" >Cache Name</span>
19                   <span class="mat-header-cell" ># of Items</span>
20                   <span class="mat-header-cell" >Bytes</span>
21                   <span class="mat-header-cell" >Status</span>
22                   <span class="mat-header-cell" >Memory Hits</span>
23                   <span class="mat-header-cell">Aux Hits</span>
24                   <span class="mat-header-cell" >Not Expired MissesFound Misses</span>
25                   <span class="mat-header-cell" >Expired Misses</span>
26                   <span class="mat-header-cell" >Clear?</span>
27                   <span class="mat-header-cell" >Items</span>
28
29                 </section>
30                 
31                 <mat-expansion-panel *ngFor="let item of regions">
32                   <mat-expansion-panel-header >
33                         <span class="mat-cell"><a href="javascript:;" (click)="showRegionDetails(item.cacheName)">{{item.cacheName}}</a></span>
34                         <span class="mat-cell">{{item.byteCount}}</span>
35                         <span class="mat-cell">{{item.status}}</span>
36                         <span class="mat-cell">{{item.hitCountRam}}</span>
37                         <span class="mat-cell">{{item.hitCountAux}}</span>
38                         <span class="mat-cell">{{item.missCountNotFound}}</span>
39                         <span class="mat-cell">{{item.missCountExpired}}</span>
40                         <span class="mat-cell">{{item.hitCountRam}}</span>
41                         <span class="mat-cell">clear</span>
42                         <span class="mat-cell">delete</span>
43
44                   </mat-expansion-panel-header>
45                   <div><pre>{{item.items | json }}</pre></div>
46                 </mat-expansion-panel>
47           
48           </mat-accordion>
49
50