18
18
< div class ="card-header "> < h4 > Dashboard Overview< h4 > </ div >
19
19
< div class ="card-body ">
20
20
< div class ="spinner " ng-controller ="FormController "
21
- ng-show ="table.length === 0 ">
22
- < div class ="rect1 "> </ div >
23
- < div class ="rect2 "> </ div >
24
- < div class ="rect3 "> </ div >
25
- < div class ="rect4 "> </ div >
26
- < div class ="rect5 "> </ div >
27
- </ div >
28
-
29
- < ul class ="pagination ">
30
- < li class ="page-item " ng-class ="{'active': isHits} "> < a class ="page-link "
31
- ng-click ="toggleHits() "> Number
32
- of hits</ a > </ li >
33
- < li class ="page-item " ng-class ="{'active': !isHits} "> < a class ="page-link "
34
- ng-click ="toggleHits() "> Median
35
- request duration (ms)</ a > </ li >
36
- </ ul >
37
-
38
- < div class ="row " style ="margin-bottom: 7px ">
39
- < div class ="col-md-3 col-sm-12 ">
40
- Show
41
- < select style ="width: 60px; display: inline-block; "
42
- class ='form-control form-control-sm ' name ="ddwa "
43
- ng-model ="pageSize ">
44
- < option value ="10 "> 10</ option >
45
- < option value ="25 "> 25</ option >
46
- < option value ="50 "> 50</ option >
47
- < option value ="100 "> 100</ option >
48
- </ select >
49
- entries
50
- </ div >
51
-
52
- < div class ="col-md-6 col-sm-12 ">
53
- Blueprint:
54
- < select style ='width: 180px; display: inline-block; ' ng-model ="slectedBlueprint "
55
- class ="form-control form-control-sm ">
56
- < option ng-repeat ="blueprint in blueprints track by $index "
57
- value ="{{ blueprint }} ">
58
- {{ blueprint }}
59
- </ option >
60
- </ select >
61
- </ div >
62
-
63
- < div class ="col-md-3 col-sm-12 " style ="text-align: right ">
64
- Search:
65
- < input ng-model ="searchQuery "
66
- style ="display: inline-block; width: 180px "
67
- class ="form-control form-control-sm ">
68
- </ div >
69
- </ div >
70
-
71
- < div class ="row ">
72
- < div class ="col-md-12 ">
73
- < table class ="table table-hover table-bordered table-sm ">
74
- < thead >
75
- < tr >
76
- < th > </ th >
77
- < th > Endpoint</ th >
78
- < th ng-show ="isHits "> Today</ th >
79
- < th ng-show ="isHits "> Last 7 days</ th >
80
- < th ng-show ="isHits "> Overall</ th >
81
- < th ng-show ="isHits==false "> Today</ th >
82
- < th ng-show ="isHits==false "> Last 7 days</ th >
83
- < th ng-show ="isHits==false "> Overall</ th >
84
- < th > Last requested</ th >
85
- < th > Monitoring-level< sup > *</ sup > </ th >
21
+ ng-show ="table.length === 0 ">
22
+ < div class ="rect1 "> </ div >
23
+ < div class ="rect2 "> </ div >
24
+ < div class ="rect3 "> </ div >
25
+ < div class ="rect4 "> </ div >
26
+ < div class ="rect5 "> </ div >
27
+ </ div >
28
+
29
+ < ul class ="pagination ">
30
+ < li class ="page-item " ng-class ="{'active': isHits} "> < a class ="page-link "
31
+ ng-click ="toggleHits() "> Number
32
+ of hits</ a > </ li >
33
+ < li class ="page-item " ng-class ="{'active': !isHits} "> < a class ="page-link "
34
+ ng-click ="toggleHits() "> Median
35
+ request duration (ms)</ a > </ li >
36
+ </ ul >
37
+
38
+ < div class ="row " style ="margin-bottom: 7px ">
39
+ < div class ="col-md-3 col-sm-12 ">
40
+ Show
41
+ < select style ="width: 60px; display: inline-block; "
42
+ class ='form-control form-control-sm ' name ="ddwa "
43
+ ng-model ="pageSize ">
44
+ < option value ="10 "> 10</ option >
45
+ < option value ="25 "> 25</ option >
46
+ < option value ="50 "> 50</ option >
47
+ < option value ="100 "> 100</ option >
48
+ </ select >
49
+ entries
50
+ </ div >
51
+
52
+ < div class ="col-md-6 col-sm-12 ">
53
+ Blueprint:
54
+ < select style ='width: 180px; display: inline-block; ' ng-model ="slectedBlueprint "
55
+ class ="form-control form-control-sm ">
56
+ < option ng-repeat ="blueprint in blueprints track by $index "
57
+ value ="{{ blueprint }} ">
58
+ {{ blueprint }}
59
+ </ option >
60
+ </ select >
61
+ </ div >
62
+
63
+ < div class ="col-md-3 col-sm-12 " style ="text-align: right ">
64
+ Search:
65
+ < input ng-model ="searchQuery "
66
+ style ="display: inline-block; width: 180px "
67
+ class ="form-control form-control-sm ">
68
+ </ div >
69
+ </ div >
70
+
71
+ < div class ="row ">
72
+ < div class ="col-md-12 ">
73
+ < table class ="table table-hover table-bordered table-sm ">
74
+ < thead >
75
+ < tr >
76
+ < th > </ th >
77
+ < th
78
+ ng-click ="changeSortingOrder('name') "
79
+ style ="cursor: pointer ">
80
+ < div class ="d-flex justify-content-between ">
81
+ Endpoint
82
+ < span ng-class ="getSortArrowClassName('name') "> ↑</ span >
83
+ </ div >
84
+ </ th >
85
+ < th
86
+ ng-show ="isHits "
87
+ style ="cursor: pointer "
88
+ ng-click ="changeSortingOrder('hits-today') ">
89
+ < div class ="d-flex justify-content-between ">
90
+ Today
91
+ < span ng-class ="getSortArrowClassName('hits-today') "> ↑</ span >
92
+ </ div >
93
+ </ th >
94
+ < th
95
+ ng-show ="isHits "
96
+ style ="cursor: pointer "
97
+ ng-click ="changeSortingOrder('hits-week') ">
98
+ < div class ="d-flex justify-content-between ">
99
+ Last 7 days
100
+ < span ng-class ="getSortArrowClassName('hits-week') "> ↑</ span >
101
+ </ div >
102
+ </ th >
103
+ < th
104
+ ng-show ="isHits "
105
+ style ="cursor: pointer "
106
+ ng-click ="changeSortingOrder('hits-overall') ">
107
+ < div class ="d-flex justify-content-between ">
108
+ Overall
109
+ < span ng-class ="getSortArrowClassName('hits-overall') "> ↑</ span >
110
+ </ div >
111
+ </ th >
112
+ < th
113
+ style ="cursor: pointer "
114
+ ng-click ="changeSortingOrder('hits-today') "
115
+ ng-show ="isHits===false ">
116
+ < div class ="d-flex justify-content-between ">
117
+ Today
118
+ < span ng-class ="getSortArrowClassName('hits-today') "> ↑</ span >
119
+ </ div >
120
+
121
+ </ th >
122
+ < th
123
+ ng-show ="isHits===false "
124
+ style ="cursor: pointer "
125
+ ng-click ="changeSortingOrder('hits-week') ">
126
+ < div class ="d-flex justify-content-between ">
127
+ Last 7 days
128
+ < span ng-class ="getSortArrowClassName('hits-week') "> ↑</ span >
129
+ </ div >
130
+ </ th >
131
+ < th
132
+ ng-show ="isHits===false "
133
+ style ="cursor: pointer "
134
+ ng-click ="changeSortingOrder('hits-overall') ">
135
+ < div class ="d-flex justify-content-between ">
136
+ Overall
137
+ < span ng-class ="getSortArrowClassName('hits-overall') "> ↑</ span >
138
+ </ div >
139
+ </ th >
140
+ < th
141
+ style ="cursor: pointer "
142
+ ng-click ="changeSortingOrder('last-accessed') ">
143
+ < div class ="d-flex justify-content-between ">
144
+ Last requested
145
+ < span ng-class ="getSortArrowClassName('last-accessed') "> ↑</ span >
146
+ </ div >
147
+ </ th >
148
+ < th
149
+ style ="cursor: pointer "
150
+ ng-click ="changeSortingOrder('monitor') ">
151
+ < div class ="d-flex justify-content-between ">
152
+ < div > Monitoring-level< sup > *</ sup > </ div >
153
+ < span ng-class ="getSortArrowClassName('monitor') "> ↑</ span >
154
+ </ div >
155
+ </ th >
86
156
</ tr >
87
157
</ thead >
88
158
172
242
per line of code</ b > from all requests.</ p >
173
243
</ div >
174
244
</ div >
175
- </ div >
245
+ </ div >
0 commit comments