blob: 15720c1d1da20a50f299fba3eb8710dde5ba6d29 [file] [log] [blame]
Michael Davisaeedf9e2017-04-06 14:35:56 -05001<div id="sensors">
2 <div class="row column">
3 <h1>Fan Speed Sensors</h1>
4 </div>
5 <section class="row column">
6 <div class="page-header">
7 <h2 class="inline h4">Sensors present in the system</h2>
8 <button class="inline btn-export float-right">Export</button>
9 </div>
10 </section>
11
12 <!-- Filters -->
13 <section class="row column">
14 <!-- search -->
15 <div class="content__search">
16 <label for="content__search-input">Sensors Search</label>
17 <input id="content__search-input" type="text" placeholder="Filter issues"/>
18 <input id="content__search-submit" type="submit" class="btn btn-secondary" value="Submit"/>
19 </div>
20 <div class="toggle-filter">
21 <button class="inline first btn-primary">All
22 </button>
23 <button class="inline " ng-click="togglehigh = !togglehigh"
24 ng-class="togglehigh ? 'btn-primary' : 'btn-secondary'">Critical
25 </button>
26 <button class="inline" ng-click="togglemed = !togglemed"
27 ng-class="togglemed ? 'btn-primary' : 'btn-secondary'">Warning
28 </button>
29 <button class="inline last" ng-click="togglelow = !togglelow"
30 ng-class="togglelow ? 'btn-primary' : 'btn-secondary'">Normal
31 </button>
32 </div>
33 </section> <!-- end filter -->
34
35 <section class="row column">
36 <div id="back-link">
Iftekharul Islamcd789502017-04-19 14:37:55 -050037 <a href="#/server-health/sensors-overview">Back to Sensor Overview</a>
Michael Davisaeedf9e2017-04-06 14:35:56 -050038 </div>
39 </section>
40
41 <section id="sensor__details" class="row column">
42 <div class="row column header-row">
Iftekharul Islamcd789502017-04-19 14:37:55 -050043 <div class="column small-10 large-11 header__actions-bar">
Michael Davisaeedf9e2017-04-06 14:35:56 -050044 <p class="inline priority-tag-circ high-priority" aria-label="High Priority"></p>
45 <p class="inline sensor__heading sensor__category">Fan speed (RPMs)</p>
46 <p class="inline sensor__heading middle">Reading</p>
47 <p class="inline float-right sensor__heading right">State</p>
48 </div>
49 <div class="column small-2 large-1 sensor__heading trigger-col"></div>
50 </div>
51
52 <!-- Sensor -->
53 <div class="row column accord-row" ng-class="{'active': sensors__metadatarow, 'selected': sensors__selected}">
54 <div class="row">
55 <div class="column small-10 large-11 sensor__info" ng-click="sensors__metadatarow = ! sensors__metadatarow">
56 <p class="inline priority-tag-circ high-priority" aria-label="High Priority"></p>
57 <p class="inline sensor__title">Fan Speed 1</p>
58 <p class="inline sensor__reading">6200 <span>rpms</span></p>
59 <p class="inline float-right sensor__critical-label">Critical</p>
60 </div>
61 <div class="column small-2 large-1">
62 <button class="accord-trigger" ng-class="{'active': sensors__metadatarow}" ng-click="sensors__metadatarow = ! sensors__metadatarow"></button>
63 </div>
64 </div>
65 <div class="row sensors__metadata-row" ng-class="{'active': sensors__metadatarow}">
66 <div class="column small-12">
67 <div class="threshold-chart__wrapper">
68 <span class="threshold__label low">Low</span>
69 <div class="threshold-chart">
70 <span class="threshold__marker thresh__high-critical" style="left: 90%;"><span class="threshold__value">6200 RPMs</span></span>
71 <span class="threshold thresh__low-critical"></span>
72 <span class="threshold thresh__low-warn"></span>
73 <span class="threshold thresh__normal"></span>
74 <span class="threshold thresh__high-warn"></span>
75 <span class="threshold thresh__high-critical"></span>
76 </div>
77 <span class="threshold__label high">High</span>
78 </div>
79 </div>
Michael Davis2d055fe2017-04-26 10:24:37 -050080 <!--<div class="column small-12 large-6">-->
81 <!--<p class="h5 content-header">Associated Events</p>-->
82 <!--<a href="#/overview/log">View 5 events related to Fan 1</a>-->
83 <!--</div>-->
84 <!--<div class="column small-12 large-6">-->
85 <!--<p class="h5 content-header">Associated Hardware</p>-->
86 <!--<a href="">Chassis0</a>-->
87 <!--</div>-->
Michael Davisaeedf9e2017-04-06 14:35:56 -050088 </div>
89 </div>
90
91 <!-- Sensor -->
92 <div class="row column accord-row" ng-class="{'active': sensors__metadatarow2, 'selected': sensors__selected}">
93 <div class="row">
94 <div class="column small-10 large-11 sensor__info" ng-click="sensors__metadatarow2 = ! sensors__metadatarow2">
95 <p class="inline priority-tag-circ normal-priority" aria-label="Normal Priority"></p>
96 <p class="inline sensor__title">Fan Speed 2</p>
97 <p class="inline sensor__reading">4600 <span>rpms</span></p>
98 </div>
99 <div class="column small-2 large-1">
100 <button class="accord-trigger" ng-class="{'active': sensors__metadatarow2}" ng-click="sensors__metadatarow2 = ! sensors__metadatarow2"></button>
101 </div>
102 </div>
103 <div class="row sensors__metadata-row" ng-class="{'active': sensors__metadatarow2}">
104 <div class="column small-12">
105 <div class="threshold-chart__wrapper">
106 <span class="threshold__label low">Low</span>
107 <div class="threshold-chart">
108 <span class="threshold__marker thresh__normal" style="left: 40%;"><span class="threshold__value">4600 RPMs</span></span>
109 <span class="threshold thresh__low-critical"></span>
110 <span class="threshold thresh__low-warn"></span>
111 <span class="threshold thresh__normal"></span>
112 <span class="threshold thresh__high-warn"></span>
113 <span class="threshold thresh__high-critical"></span>
114 </div>
115 <span class="threshold__label high">High</span>
116 </div>
117 </div>
Michael Davis2d055fe2017-04-26 10:24:37 -0500118 <!--<div class="column small-12 large-6">-->
119 <!--<p class="h5 content-header">Associated Events</p>-->
120 <!--<a href="#/overview/log">View 5 events related to Fan 1</a>-->
121 <!--</div>-->
122 <!--<div class="column small-12 large-6">-->
123 <!--<p class="h5 content-header">Associated Hardware</p>-->
124 <!--<p>None</p>-->
125 <!--</div>-->
Michael Davisaeedf9e2017-04-06 14:35:56 -0500126 </div>
127 </div>
128
129 <!-- Sensor -->
130 <div class="row column accord-row" ng-class="{'active': sensors__metadatarow3, 'selected': sensors__selected}">
131 <div class="row">
132 <div class="column small-10 large-11 sensor__info" ng-click="sensors__metadatarow3 = ! sensors__metadatarow3">
133 <p class="inline priority-tag-circ warn-priority" aria-label="Medium Priority"></p>
134 <p class="inline sensor__title">Fan Speed 3</p>
135 <p class="inline sensor__reading">1200 <span>rpms</span></p>
136 <p class="inline float-right sensor__warning-label">warning</p>
137 </div>
138 <div class="column small-2 large-1">
139 <button class="accord-trigger" ng-class="{'active': sensors__metadatarow3}"
140 ng-click="sensors__metadatarow3 = ! sensors__metadatarow3"></button>
141 </div>
142 </div>
143 <div class="row sensors__metadata-row" ng-class="{'active': sensors__metadatarow3}">
144 <div class="column small-12">
145 <div class="threshold-chart__wrapper">
146 <span class="threshold__label low">Low</span>
147 <div class="threshold-chart">
148 <span class="threshold__marker thresh__low-warn" style="left: 15%;"><span class="threshold__value">1200 RPMs</span></span>
149 <span class="threshold thresh__low-critical"></span>
150 <span class="threshold thresh__low-warn"></span>
151 <span class="threshold thresh__normal"></span>
152 <span class="threshold thresh__high-warn"></span>
153 <span class="threshold thresh__high-critical"></span>
154 </div>
155 <span class="threshold__label high">High</span>
156 </div>
157 </div>
Michael Davis2d055fe2017-04-26 10:24:37 -0500158 <!--<div class="column small-12 large-6">-->
159 <!--<p class="h5 content-header">Associated Events</p>-->
160 <!--<a href="#/overview/log">View 5 events related to Fan 1</a>-->
161 <!--</div>-->
162 <!--<div class="column small-12 large-6">-->
163 <!--<p class="h5 content-header">Associated Hardware</p>-->
164 <!--<a href="">Chassis0</a>-->
165 <!--</div>-->
Michael Davisaeedf9e2017-04-06 14:35:56 -0500166 </div>
167 </div>
168 </section>
169 <paginate ng-include="paginate"></paginate>
170</div> <!-- end event log -->