summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html
new file mode 100644
index 00000000..8aba64c9
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.html
@@ -0,0 +1,50 @@
+<div id="page-content" style=" width: 100%">
+
+ <div>
+ <h1 class="heading-page" id="CacheRegions">Cache Regions</h1>
+ </div>
+
+ <div style="margin-right:20px; text-align:justify; text-align-last:auto;">
+ <p>
+ These are the regions which are currently defined in the cache. 'Items' and 'Bytes' refer to the elements currently in memory (not spooled).
+ 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>
+ which empties the entire cache.</p>
+ </div>
+
+
+
+ <mat-accordion displayMode="flat" multi class="mat-table">
+ <section matSort class="mat-header-row">
+ <span class="mat-header-cell" >Cache Name</span>
+ <span class="mat-header-cell" ># of Items</span>
+ <span class="mat-header-cell" >Bytes</span>
+ <span class="mat-header-cell" >Status</span>
+ <span class="mat-header-cell" >Memory Hits</span>
+ <span class="mat-header-cell">Aux Hits</span>
+ <span class="mat-header-cell" >Not Expired MissesFound Misses</span>
+ <span class="mat-header-cell" >Expired Misses</span>
+ <span class="mat-header-cell" >Clear?</span>
+ <span class="mat-header-cell" >Items</span>
+
+ </section>
+
+ <mat-expansion-panel *ngFor="let item of regions">
+ <mat-expansion-panel-header >
+ <span class="mat-cell"><a href="javascript:;" (click)="showRegionDetails(item.cacheName)">{{item.cacheName}}</a></span>
+ <span class="mat-cell">{{item.byteCount}}</span>
+ <span class="mat-cell">{{item.status}}</span>
+ <span class="mat-cell">{{item.hitCountRam}}</span>
+ <span class="mat-cell">{{item.hitCountAux}}</span>
+ <span class="mat-cell">{{item.missCountNotFound}}</span>
+ <span class="mat-cell">{{item.missCountExpired}}</span>
+ <span class="mat-cell">{{item.hitCountRam}}</span>
+ <span class="mat-cell">clear</span>
+ <span class="mat-cell">delete</span>
+
+ </mat-expansion-panel-header>
+ <div><pre>{{item.items | json }}</pre></div>
+ </mat-expansion-panel>
+
+ </mat-accordion>
+
+ \ No newline at end of file