19 lines
298 B
Plaintext
Raw Normal View History

2017-07-01 12:03:10 +00:00
component Admin(user *arn.User)
2017-07-06 20:23:32 +00:00
h1.page-title Admin Panel
2017-06-18 15:44:18 +00:00
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()