go-micro.dev/v5@v5.12.0/cmd/micro/web/templates/status.html (about) 1 {{define "content"}} 2 <h2 class="text-2xl font-bold mb-4">Service Status</h2> 3 <table> 4 <thead> 5 <tr> 6 <th>Service</th> 7 <th>Directory</th> 8 <th>Status</th> 9 <th>PID</th> 10 <th>Uptime</th> 11 <th>ID</th> 12 <th>Logs</th> 13 </tr> 14 </thead> 15 <tbody> 16 {{range .Statuses}} 17 <tr> 18 <td>{{.Service}}</td> 19 <td><code>{{.Dir}}</code></td> 20 <td>{{.Status}}</td> 21 <td>{{.PID}}</td> 22 <td>{{.Uptime}}</td> 23 <td style="font-size:0.9em; color:#888;">{{.ID}}</td> 24 <td><a href="/logs/{{.ID}}" class="log-link">View logs</a></td> 25 </tr> 26 {{end}} 27 </tbody> 28 </table> 29 {{end}}