2017-07-01 14:03:10 +02:00
|
|
|
component Admin(user *arn.User)
|
2017-07-06 22:23:32 +02:00
|
|
|
h1.page-title Admin Panel
|
2017-06-18 17:44:18 +02:00
|
|
|
|
|
|
|
h3 Server
|
2017-06-18 17:16:40 +02:00
|
|
|
table
|
2017-06-18 17:44:18 +02: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 14:03:10 +02:00
|
|
|
td= runtime.Version()
|