summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-admin/jcs_admin.html
blob: fd8a5302ddc6490294f77c0b9f3f3eda6294fb0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<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>
	
	<!-- This implements an accordion table in place -->
		<div style="border-top: 1px solid #c4c4c4; margin-top: 0px; margin-bottom:30px; margin-right: 20px; background-color: #fff; padding: 10px 0; color: #646464s">
		<div class="row" style="margin: 0 20px 10px 0px; float: left; width: 97%;">
			<div class="col-md-4" style=" width: 16.6666666667%;"><b>Cache Name</b></div>
			<div class="col-md-2" style=" width: 8.3333333333%;"><b># of Items</b></div>
			<div class="col-md-2" style=" width: 8.3333333333%;"><b>Bytes</b></div>
			<div class="col-md-2" style=" width: 8.3333333333%;"><b>Status</b></div>
			<div class="col-md-3" style=" width: 12.5%;"><b>Memory Hits</b></div>
			<div class="col-md-3" style=" width: 12.5%;"><b>Aux Hits</b></div>
			<div class="col-md-3" style=" width: 12.5%;"><b>Not Found Misses</b></div>
			<div class="col-md-3" style=" width:12.5%;"><b>Expired Misses</b></div>
			<div class="col-md-1" style=" width: 4.1666666667%;"><b>Clear?</b></div>
			<div class="col-md-1" style=" width: 4.1666666667%;"><b>Items</b></div>
		</div>
		
		<div  ng-repeat="region in regions">
			<div class="row" style="margin: 0 20px 10px 0px; float: left; width: 97%;">
			<div class="col-md-4" style=" width: 16.6666666667%;">
				<a b2b-tooltip="Click to Show Region Details" ng-click="showRegionDetails(region.cacheName);" href="admin#/jcs_admin">{{region.cacheName}}</a></div>
				<div class="col-md-2" style=" width: 8.3333333333%;">{{region.size}}</div>
				<div class="col-md-2" style=" width: 8.3333333333%;">{{region.byteCount}}</div>
				<div class="col-md-2" style=" width: 8.3333333333%;">{{region.status}}</div>
				<div class="col-md-3" style=" width: 12.5%;">{{region.hitCountRam}}</div>
				<div class="col-md-3" style=" width: 12.5%;">{{region.hitCountAux}}</div>
				<div class="col-md-3" style=" width: 12.5%;">{{region.missCountNotFound}}</div>
				<div class="col-md-3" style=" width: 12.5%;">{{region.missCountExpired}}</div>
				<div class="col-md-1" style=" width: 4.1666666667%;">
					<div ng-click="clearRegionFuncPopUp(region.cacheName);" style="font-size:20px;">
					<a href="javascript:void(0)" class="icon-misc-trash"></a></div>
				</div>
				<div class="col-md-1"><i class="icon-primary-accordion-plus" ng-class="{true: 'icon-primary-accordion-plus', false: 'icon-primary-accordion-minus'}[ !bling$index]"  ng-click="bling$index = !bling$index" style="display: block;"></i></div>
			</div>
			<div class="row" style="margin: 0px 20px 0px 30px; float: left; width: 95%; border-top: 1px solid #e4e4e4; padding-top: 10px"
				ng-show="bling$index">
				<span style="height: 20px; width: 20px; display: inline-block; float: left"></span>
				<div class="col-md-12" style=" width: 50%;"><b>Key</b></div>
				<div class="col-md-2" style=" width: 8.3333333333%"><b>Eternal?</b></div>
				<div class="col-md-4" style=" width: 16.6666666667%;"><b>Created</b></div>
				<div class="col-md-2" style=" width: 8.3333333333%;"><b>Max Life</b></div>
				<div class="col-md-2" style=" width: 8.3333333333%;"><b>Expires</b></div>
				<div class="col-md-1" style=" width: 4.1666666667%;"><b>Clear?</b></div>
			</div>
			<div ng-repeat="item in region.items">
				<div class="row" style="margin: 0px 20px 0px 30px; float: left; width: 95%;" ng-show="bling$index">
					<span style="height: 20px; width: 20px; display: inline-block; float: left"></span>
					<div class="col-md-12" style=" width: 50%;"><a href="#" tooltip="Click to Show Item Details" ng-click="showItemDetails(region.cacheName,item.key);">{{item.key}}</a></div>
					<div class="col-md-2" style=" width: 8.3333333333%;">{{item.eternal}}</div>
					<div class="col-md-4" style=" width: 16.6666666667%;">{{item.createTime}}</div>
					<div class="col-md-2" style=" width: 8.3333333333%;">{{item.maxLifeSeconds}}</div>
					<div class="col-md-2"  style=" width: 8.3333333333%;">{{item.expiresInSeconds}}</div>
					<div class="col-md-1" style=" width: 4.1666666667%;">
						<div ng-click="clearItemFuncPopUp(region.cacheName,item.key);" style="font-size:20px;"><a href="javascript:void(0)" class="icon-misc-trash"></a></div>
					</div>
				</div>
			</div>
			<div style="clear: both"></div>
		</div>
	
	</div>
</div>