summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt1
-rw-r--r--src/main/resources/static/style.css12
-rw-r--r--src/main/resources/templates/report.html1
3 files changed, 14 insertions, 0 deletions
diff --git a/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt b/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
index ae36705..cc19d69 100644
--- a/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
+++ b/src/main/kotlin/dev/dnpm/etl/processor/monitoring/ReportService.kt
@@ -56,5 +56,6 @@ class ReportService(
enum class Severity(@JsonValue val value: String) {
ERROR("error"),
WARNING("warning"),
+ INFO("info")
}
} \ No newline at end of file
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index 203ac56..73fa08a 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -1,6 +1,9 @@
:root {
--table-border: rgba(96, 96, 96, 1);
+ --bg-blue: rgb(0, 74, 157);
+ --bg-blue-op: rgba(0, 74, 157, .35);
+
--bg-green: rgb(0, 128, 0);
--bg-green-op: rgba(0, 128, 0, .35);
@@ -181,6 +184,15 @@ td {
font-family: monospace;
}
+td.bg-blue, th.bg-blue {
+ background: var(--bg-blue);
+ color: white;
+}
+
+tr:has(td.bg-blue) {
+ background: var(--bg-blue-op);
+}
+
td.bg-green, th.bg-green {
background: var(--bg-green);
color: white;
diff --git a/src/main/resources/templates/report.html b/src/main/resources/templates/report.html
index d9087bf..4aaad68 100644
--- a/src/main/resources/templates/report.html
+++ b/src/main/resources/templates/report.html
@@ -45,6 +45,7 @@
</thead>
<tbody>
<tr th:each="issue : ${issues}">
+ <td th:if="${issue.severity.value == 'info'}" class="bg-blue"><small>[[ ${issue.severity} ]]</small></td>
<td th:if="${issue.severity.value == 'warning'}" class="bg-yellow"><small>[[ ${issue.severity} ]]</small></td>
<td th:if="${issue.severity.value == 'error'}" class="bg-red"><small>[[ ${issue.severity} ]]</small></td>
<td>[[ ${issue.message} ]]</td>