summaryrefslogtreecommitdiffstats
path: root/templates/admin/stacktrace-row.tmpl
blob: 694bf56d9613e5ddcb9b830b131b1cc383dd36ae (plain)
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
<div class="item">
	<div class="tw-flex tw-items-center">
		<div class="icon tw-ml-2 tw-mr-2">
			{{if eq .Process.Type "request"}}
				{{svg "octicon-globe" 16}}
			{{else if eq .Process.Type "system"}}
				{{svg "octicon-cpu" 16}}
			{{else if eq .Process.Type "normal"}}
				{{svg "octicon-terminal" 16}}
			{{else}}
				{{svg "octicon-code" 16}}
			{{end}}
		</div>
		<div class="content tw-flex-1">
			<div class="header">{{.Process.Description}}</div>
			<div class="description">{{if ne .Process.Type "none"}}{{TimeSince .Process.Start ctx.Locale}}{{end}}</div>
		</div>
		<div>
			{{if or (eq .Process.Type "request") (eq .Process.Type "normal")}}
				<a class="delete-button icon" href="" data-url="{{.root.Link}}/cancel/{{.Process.PID}}" data-id="{{.Process.PID}}" data-name="{{.Process.Description}}">{{svg "octicon-trash" 16 "text-red"}}</a>
			{{end}}
		</div>
	</div>
	{{if .Process.Stacks}}
		<div class="divided list tw-ml-2">
			{{range .Process.Stacks}}
				<div class="item">
					<details>
						<summary>
							<div class="flex-text-inline">
								<div class="header tw-ml-2">
									<span class="icon tw-mr-2">{{svg "octicon-code" 16}}</span>{{.Description}}{{if gt .Count 1}} * {{.Count}}{{end}}
								</div>
								<div class="description">
									{{range .Labels}}
										<div class="ui label">{{.Name}}<div class="detail">{{.Value}}</div></div>
									{{end}}
								</div>
							</div>
						</summary>
						<div class="list">
							{{range .Entry}}
								<div class="item tw-flex tw-items-center">
									<span class="icon tw-mr-4">{{svg "octicon-dot-fill" 16}}</span>
									<div class="content tw-flex-1">
										<div class="header"><code>{{.Function}}</code></div>
										<div class="description"><code>{{.File}}:{{.Line}}</code></div>
									</div>
								</div>
							{{end}}
						</div>
					</details>
				</div>
			{{end}}
		</div>
	{{end}}

	{{if .Process.Children}}
		<div class="divided list">
			{{range .Process.Children}}
				{{template "admin/stacktrace-row" dict "Process" . "root" $.root}}
			{{end}}
		</div>
	{{end}}

</div>