Bug #26263
openUnused column on the left side of the Technical logs table
Description
See the screenshot, nothing seems to be in this column.
Files
Updated by Clark ANDRIANASOLO 8 months ago
- Target version changed from 8.3.0~beta1 to 8.1.12
- Severity set to Trivial - no functional impact | cosmetic
- UX impact set to It bothers me each time
- User visibility set to First impressions of Rudder
- Priority changed from 0 to 118
It happens on 8.1
There are supposed to be 8 columns (among which 1 hidden one), but the kind
column is unmapped from the AJAX response from the server, so the table is adding an empty column due to this :
{"executionDate": "2025-02-03 09:31:13+0000", "runDate": "2025-02-03 09:31:08+0000", "kind": "control", "status": "control", "ruleName": "rudder", "directiveName": "run", "component": "end", "value": "20250128-080350-e91a95e4", "message": "End execution"}
Apparently the "kind" column is linked to the "status" one (the logic is : (kind, status) = severity.split("_")
), we should find a way to display the relevant information
Updated by Clark ANDRIANASOLO 8 months ago
- Priority changed from N/A to To review
Updated by Nicolas CHARLES 7 months ago
- Assignee set to Clark ANDRIANASOLO
- Priority changed from To review to 2
Updated by Nicolas CHARLES 7 months ago
I'm fairly sure we don't want to show the "kind" (it's a technical internal info)
Simply having the first column non sortable would be enough to keep the indentation
Updated by Vincent MEMBRÉ 7 months ago
- Target version changed from 8.1.12 to 8.1.13
Updated by Vincent MEMBRÉ 5 months ago
- Target version changed from 8.1.13 to 8.2.6
- Priority changed from 118 to 114
Updated by Vincent MEMBRÉ 4 months ago
- Target version changed from 8.2.6 to 8.2.7
Updated by Vincent MEMBRÉ 3 months ago
- Target version changed from 8.2.7 to 8.2.8
- Priority changed from 114 to 112
Updated by Clark ANDRIANASOLO 3 months ago
- Related to User story #27047: Export technical logs table into CSV added
Updated by Félix DALLIDET 2 months ago
- Target version changed from 8.2.8 to 8.2.9
- Priority changed from 112 to 109
Updated by Vincent MEMBRÉ 4 days ago
- Target version changed from 8.2.9 to 8.2.10
- Priority changed from 109 to 106
Updated by Clark ANDRIANASOLO about 21 hours ago
- Related to User story #27031: Export node inventories tables into CSV added
Updated by Clark ANDRIANASOLO about 21 hours ago
- Related to deleted (User story #27031: Export node inventories tables into CSV)
Updated by Clark ANDRIANASOLO about 21 hours ago
The column is added because of regrouping by date : https://github.com/Normation/rudder/blob/363412fbed061c6680dc1ef4d473484058e456e0/webapp/sources/rudder/rudder-web/src/main/javascript/rudder/rudder-datatable.js#L1837
We should find an alternative to that