Skip to content

Commit

Permalink
feat: add timestamp to vtorc debug page (#13379)
Browse files Browse the repository at this point in the history
Signed-off-by: Manan Gupta <manan@planetscale.com>
  • Loading branch information
GuptaManan100 authored Jun 27, 2023
1 parent 13b5d04 commit 9a08355
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions go/vt/vtorc/logic/topology_recovery_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@ const TopologyRecoveriesTemplate = `
<tr>
<th>Recovery ID</th>
<th>Failure Type</th>
<th>Instance</th>
<th>Tablet Alias</th>
<th>Timestamp</th>
</tr>
{{range $i, $recovery := .}}
<tr>
<td>{{$recovery.ID}}</td>
<td>{{$recovery.AnalysisEntry.Analysis}}</td>
<td>{{$recovery.AnalysisEntry.AnalyzedInstanceKey}}</td>
<td>{{$recovery.AnalysisEntry.AnalyzedInstanceAlias}}</td>
<td>{{$recovery.RecoveryStartTimestamp}}</td>
</tr>
{{end}}
</table>
Expand Down

0 comments on commit 9a08355

Please sign in to comment.