mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 19:17:32 +00:00
feat: save last occurrence of failed events and fix instance filtering (#4710)
* fix: filter failed events and current sequence correctly * fix failed events sorting column * feat: save last occurrence of failed event * fix failedEvents query and update sql statements * change sql statement to only create index * fix linting * fix linting * Update internal/query/failed_events.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * update job name on test-docs to match the one from test-code Co-authored-by: Silvan <silvan.reusser@gmail.com>
This commit is contained in:
@@ -29,6 +29,13 @@
|
||||
</td>
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="lastFailed">
|
||||
<th mat-header-cell *matHeaderCellDef>{{ 'IAM.FAILEDEVENTS.LASTFAILED' | translate }}</th>
|
||||
<td mat-cell *matCellDef="let event">
|
||||
<span>{{ event?.lastFailed | timestampToDate | localizedDate: 'EEE dd. MMM, HH:mm' }}</span>
|
||||
</td>
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="errorMessage">
|
||||
<th mat-header-cell *matHeaderCellDef>{{ 'IAM.FAILEDEVENTS.ERRORMESSAGE' | translate }}</th>
|
||||
<td mat-cell *matCellDef="let event">
|
||||
|
@@ -22,6 +22,7 @@ export class FailedEventsComponent implements AfterViewInit {
|
||||
'database',
|
||||
'failedSequence',
|
||||
'failureCount',
|
||||
'lastFailed',
|
||||
'errorMessage',
|
||||
'actions',
|
||||
];
|
||||
|
@@ -743,6 +743,7 @@
|
||||
"DATABASE": "Datenbank",
|
||||
"FAILEDSEQUENCE": "betroffene Sequenz",
|
||||
"FAILURECOUNT": "Fehleranzahl",
|
||||
"LASTFAILED": "Zuletzt gescheitert um",
|
||||
"ERRORMESSAGE": "Meldung",
|
||||
"ACTIONS": "Aktionen",
|
||||
"DELETE": "Entfernen",
|
||||
|
@@ -743,6 +743,7 @@
|
||||
"DATABASE": "Database",
|
||||
"FAILEDSEQUENCE": "Failed Sequence",
|
||||
"FAILURECOUNT": "Failure Count",
|
||||
"LASTFAILED": "Last failed at",
|
||||
"ERRORMESSAGE": "Error Message",
|
||||
"ACTIONS": "Actions",
|
||||
"DELETE": "Remove",
|
||||
|
@@ -743,6 +743,7 @@
|
||||
"DATABASE": "Base de données",
|
||||
"FAILEDSEQUENCE": "Séquence échouée",
|
||||
"FAILURECOUNT": "Nombre d'échecs",
|
||||
"LASTFAILED": "Dernier échec à",
|
||||
"ERRORMESSAGE": "Message d'erreur",
|
||||
"ACTIONS": "Actions",
|
||||
"DELETE": "Supprimer",
|
||||
|
@@ -743,6 +743,7 @@
|
||||
"DATABASE": "Database",
|
||||
"FAILEDSEQUENCE": "Sequenza fallita",
|
||||
"FAILURECOUNT": "Conteggio dei fallimenti",
|
||||
"LASTFAILED": "L'ultimo fallimento a",
|
||||
"ERRORMESSAGE": "Messaggio di errore",
|
||||
"ACTIONS": "Azioni",
|
||||
"DELETE": "Rimuovi",
|
||||
|
@@ -743,6 +743,7 @@
|
||||
"DATABASE": "数据库",
|
||||
"FAILEDSEQUENCE": "失败的序列",
|
||||
"FAILURECOUNT": "失败计数",
|
||||
"LASTFAILED": "最后一次失败是在",
|
||||
"ERRORMESSAGE": "错误消息",
|
||||
"ACTIONS": "操作",
|
||||
"DELETE": "删除",
|
||||
|
Reference in New Issue
Block a user