-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpopup.html
233 lines (226 loc) · 8.64 KB
/
popup.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!--
Copyright 2020 Dynatrace LLC
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
-->
<!doctype html>
<html>
<head>
<title>Dynatrace Dashboard Powerup</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="popup.css">
</head>
<body style="width: 300px; max-width: 400px">
<h2>Dynatrace Dashboard Powerup</h2>
<p>This extension powers-up dashboards to enable cool new experimental features.</p>
<p id="version"></p>
<input type="hidden" id="uuid">
<input type="hidden" id="hotfixMode">
<p>
<button id="report" type="button">Report</button>
</p>
<hr>
<table>
<thead>
<tr>
<th colspan=2 id="prefs" >
<span id="prefCloser" class="open">></span>
Preferences
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan=2><u>Powerup On/Off</u></td>
</tr>
<tr>
<td>Reporting</td>
<td><input type="checkbox" id="reporting" checked></td>
</tr>
<tr>
<td>ToolTips</td>
<td><input type="checkbox" id="tooltipPU" checked></td>
</tr>
<tr>
<td>Color thresholds</td>
<td><input type="checkbox" id="colorPU" checked></td>
</tr>
<tr>
<td>Icons</td>
<td><input type="checkbox" id="svgPU" checked></td>
</tr>
<tr>
<td>WorldMap</td>
<td><input type="checkbox" id="worldmapPU" checked></td>
</tr>
<tr>
<td>Color Banners</td>
<td><input type="checkbox" id="bannerPU" checked></td>
</tr>
<tr>
<td>Stacked USQL bar charts</td>
<td><input type="checkbox" id="usqlstackPU" checked></td>
</tr>
<tr>
<td>USQL color</td>
<td><input type="checkbox" id="usqlcolorPU" checked></td>
</tr>
<tr>
<td>Line chart threshold</td>
<td><input type="checkbox" id="linePU" checked></td>
</tr>
<tr>
<td>Heatmap</td>
<td><input type="checkbox" id="heatmapPU" checked></td>
</tr>
<tr>
<td>Sankey</td>
<td><input type="checkbox" id="sankeyPU" checked></td>
</tr>
<tr>
<td>Funnel</td>
<td><input type="checkbox" id="funnelPU" checked></td>
</tr>
<tr>
<td>Math</td>
<td><input type="checkbox" id="mathPU" checked></td>
</tr>
<tr>
<td>Date</td>
<td><input type="checkbox" id="datePU" checked></td>
</tr>
<tr>
<td>Compare</td>
<td><input type="checkbox" id="comparePU" checked></td>
</tr>
<tr>
<td>Gauge</td>
<td><input type="checkbox" id="gaugePU" checked></td>
</tr>
<tr>
<td>Table</td>
<td><input type="checkbox" id="tablePU" checked></td>
</tr>
<tr>
<td>Honeycomb</td>
<td><input type="checkbox" id="honeycombPU" checked></td>
</tr>
<tr>
<td>Treemap</td>
<td><input type="checkbox" id="treemapPU" checked></td>
</tr>
</tbody>
<tbody id="colorizeOptions">
<tr>
<td colspan=2><u>Color threshold options</u></td>
</tr>
<tr>
<td>Colorize:</td>
<td>
<select id="colorPUTarget">
<option>Text</option>
<option>Border</option>
</select>
</td>
</tr>
<tr>
<td>Pulse on Critical:</td>
<td><select id="animateCritical">
<option>3 Pulses</option>
<option>Always</option>
<option>Never</option>
</select></td>
</tr>
<tr>
<td>Pulse on Warning:</td>
<td><select id="animateWarning">
<option>Never</option>
<option>3 Pulses</option>
<option>Always</option>
</select></td>
</tr>
<tr>
<td colspan=2><u>Other Preferences</u></td>
</tr>
<tr>
<td>Sunburn Mode:</td>
<td><input type="checkbox" id="sunburnMode"></td>
</tr>
<tr>
<td>Monitoring Opt-out:</td>
<td><input type="checkbox" id="BeaconOptOut"></td>
</tr>
<tr>
<td colspan=2><u>Debugging</u></td>
</tr>
<tr>
<td>Debug Logging (F12):</td>
<td><input type="checkbox" id="debug"></td>
</tr>
<tr>
<td>Library Location:</td>
<td>
<select id="libLocation">
<option value="ext" selected>Extension (faster)</option>
<option value="gh">GitHub (newer)</option>
</select>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan=2><input type="button" id="save" value="Save"></td>
</tr>
<tr>
<td colspan=2>
<!--<textarea id="notice"></textarea>-->
</td>
</tr>
</tfoot>
</table>
<table>
<thead>
<tr><th colspan=2>Quick links</th></tr>
</thead>
<tbody>
<tr>
<td class="big">📃</td>
<td class="big"><a target="_blank"
href="https://github.com/dynatrace-oss/DynatraceDashboardPowerups/wiki/Release-Notes">Release notes <img
src="Assets/link.svg"></a></td>
</tr>
<tr>
<td class="big">❓</td>
<td class="big"><a target="_blank"
href="https://github.com/dynatrace-oss/DynatraceDashboardPowerups#powerup-howto">Markup help <img
src="Assets/link.svg"></a></td>
</tr>
<tr>
<td class="big">❗️</td>
<td class="big"><a target="_blank"
href="https://github.com/dynatrace-oss/DynatraceDashboardPowerups/issues">Report an issue <img
src="Assets/link.svg"></a></td>
</tr>
<tr>
<td class="big">📣</td>
<td class="big"><a target="_blank"
href="https://forms.office.com/Pages/ResponsePage.aspx?id=o-PrcDBbXUOdZ3cW10yhkA_rQa6CqWJHnTWLRE8tiiBUNVpNU0syVFdIWTNSNTFSS0E3SkM1UUFGRS4u">Feedback
<img src="Assets/link.svg"></a></td>
</tr>
<tr>
<td class="big">⚙️</td>
<td><span class="big"><a target="_blank"
href="https://dynatrace.github.io/BizOpsConfigurator">BizOpsConfigurator <img
src="Assets/link.svg"></a></span> now deploys Powerup-enabled dashboards.</td>
</tr>
</tbody>
</table>
<p><i>Please note: this is a community developed demonstration application. It is provided without any
representations, warranties, or support from Dynatrace. If you have questions about this app,
please create an issue on <a href="https://github.com/dynatrace-oss/DynatraceDashboardPowerups/issues" target="_blank">GitHub</a>.</i> </p>
<script src="3rdParty/jquery-3.5.1.min.js"></script>
<script src="3rdParty/node_modules/uuid/dist/umd/uuidv4.min.js"></script>
<script src="popup.min.js"></script>
</body>
</html>