2017-07-01 12:03:10 +00:00
|
|
|
component Admin(user *arn.User)
|
2017-06-18 15:44:18 +00:00
|
|
|
h2.page-title Admin Panel
|
|
|
|
|
|
|
|
h3 Server
|
2017-06-18 15:16:40 +00:00
|
|
|
table
|
2017-06-18 15:44:18 +00:00
|
|
|
//- thead
|
|
|
|
//- tr
|
|
|
|
//- th Metric
|
|
|
|
//- th Value
|
|
|
|
tbody
|
|
|
|
tr
|
|
|
|
td CPU count:
|
|
|
|
td= runtime.NumCPU()
|
|
|
|
tr
|
|
|
|
td Goroutines:
|
|
|
|
td= runtime.NumGoroutine()
|
|
|
|
tr
|
|
|
|
td Go version:
|
2017-07-01 12:03:10 +00:00
|
|
|
td= runtime.Version()
|