Subversion Repositories SmartDukaan

Rev

Rev 3273 | Rev 3347 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3273 Rev 3297
Line 20... Line 20...
20
            <thead>
20
            <thead>
21
                <tr>
21
                <tr>
22
                    <th>Name</th>
22
                    <th>Name</th>
23
                    <th>Eviction</th>
23
                    <th>Eviction</th>
24
                    <th>Memory</th>
24
                    <th>Memory</th>
25
                    <th>OffHeap</th>
-
 
26
                    <th>Disk</th>
-
 
27
                    <th>Searches</th>
25
                    <th>Searches</th>
28
                    <th>Status</th>
26
                    <th>Status</th>
29
                    <th>Avg Get Time</th>
27
                    <th>Avg Get Time</th>
30
                    <th>Avg Search Time</th>
28
                    <th>Avg Search Time</th>
31
                    <th>Hits</th>
29
                    <th>Hits</th>
Line 38... Line 36...
38
        #foreach($cacheStat in $cacheStats)
36
        #foreach($cacheStat in $cacheStats)
39
            <tr>
37
            <tr>
40
                <td>$cacheStat.get("name")</td>
38
                <td>$cacheStat.get("name")</td>
41
                <td>$cacheStat.get("eviction_policy")</td>
39
                <td>$cacheStat.get("eviction_policy")</td>
42
                <td>$cacheStat.get("memory_store_size")</td>
40
                <td>$cacheStat.get("memory_store_size")</td>
43
                <td>$cacheStat.get("off_heap_store_size")</td>
-
 
44
                <td>$cacheStat.get("disk_store_size")</td>
-
 
45
                <td>$cacheStat.get("searches_per_second")/sec</td>
41
                <td>$cacheStat.get("searches_per_second")/sec</td>
46
                <td>$cacheStat.get("status")</td>
42
                <td>$cacheStat.get("status")</td>
47
                <td>$cacheStat.get("avg_get_time")</td>
43
                <td>$cacheStat.get("avg_get_time")ms</td>
48
                <td>$cacheStat.get("avg_search_time")</td>
44
                <td>$cacheStat.get("avg_search_time")ms</td>
49
                <td>$cacheStat.get("cache_hits")</td>
45
                <td>$cacheStat.get("cache_hits")</td>
50
                <td>$cacheStat.get("cache_misses")</td>
46
                <td>$cacheStat.get("cache_misses")</td>
51
                <td>$cacheStat.get("eviction_count")</td>
47
                <td>$cacheStat.get("eviction_count")</td>
52
                <td><a href="cache-admin/$cacheStat.get("name")?_method=delete">clear</a></td>
48
                <td><a href="cache-admin/$cacheStat.get("name")?_method=delete">clear</a></td>
53
            </tr>
49
            </tr>