-
Notifications
You must be signed in to change notification settings - Fork 1
/
migration_status.xml
47 lines (46 loc) · 1.58 KB
/
migration_status.xml
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
<form>
<label>Migration Status</label>
<fieldset submitButton="false">
<input type="time" token="time" searchWhenChanged="true">
<label/>
<default>
<earliestTime>-72h@h</earliestTime>
<latestTime>now</latestTime>
</default>
</input>
</fieldset>
<row>
<panel>
<title>Migration Sessions</title>
<html>
<div id="migrations-search"
class="splunk-manager"
data-require="splunkjs/mvc/searchmanager"
data-options='{
"search": { "type": "token_safe", "value": "`gantt_migrations`" },
"earliest_time": { "type": "token_safe", "value": "$$time.earliest$$" },
"latest_time": { "type": "token_safe", "value": "$$time.latest$$" },
"cancelOnUnload": true,
"preview": true
}'>
</div>
<div id="migrations-view"
class="splunk-view"
data-require="app/gantt/components/gantt/gantt"
data-options='{
"managerid": "migrations-search",
"startField": "_time",
"durationField": "duration",
"categoryLabel": "Server",
"categoryField": "tsmserver",
"seriesLabel": "Speed",
"seriesField": "speed",
"seriesSort": "false",
"drilldownSearch": "search index=tsmlogs tsmserver=$tsmserver$ session=$session$ process=$process$",
"extrasField": "extras"
}'>
</div>
</html>
</panel>
</row>
</form>