@checkstack/healthcheck-frontend 0.13.5 → 0.13.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @checkstack/healthcheck-frontend
|
|
2
2
|
|
|
3
|
+
## 0.13.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- aa2b3aa: fix: remove arbitrary hardcoded assertions in jenkins collectors (queue-info, node-health, job-status) to prevent silent fallback assertion failures, instead properly threading transport execution errors directly to the SingleRunChartGrid UI display widget via a new `_collectorError` result payload property.
|
|
8
|
+
|
|
3
9
|
## 0.13.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -120,6 +120,7 @@ function CollectorSection({
|
|
|
120
120
|
}: CollectorSectionProps) {
|
|
121
121
|
const displayName = collectorId.split(".").pop() || collectorId;
|
|
122
122
|
const assertionFailed = data._assertionFailed as string | undefined;
|
|
123
|
+
const collectorError = data._collectorError as string | undefined;
|
|
123
124
|
|
|
124
125
|
return (
|
|
125
126
|
<div className="space-y-4">
|
|
@@ -148,6 +149,22 @@ function CollectorSection({
|
|
|
148
149
|
</Card>
|
|
149
150
|
)}
|
|
150
151
|
|
|
152
|
+
{/* Collector execution error if present */}
|
|
153
|
+
{collectorError && (
|
|
154
|
+
<Card className="border-red-200 dark:border-red-900 border-dashed">
|
|
155
|
+
<CardHeader className="pb-2">
|
|
156
|
+
<CardTitle className="text-sm font-medium text-red-600">
|
|
157
|
+
Collector Execution Failed
|
|
158
|
+
</CardTitle>
|
|
159
|
+
</CardHeader>
|
|
160
|
+
<CardContent>
|
|
161
|
+
<div className="text-sm text-red-600 bg-red-50 dark:bg-red-950 px-2 py-1 rounded">
|
|
162
|
+
{collectorError}
|
|
163
|
+
</div>
|
|
164
|
+
</CardContent>
|
|
165
|
+
</Card>
|
|
166
|
+
)}
|
|
167
|
+
|
|
151
168
|
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
|
|
152
169
|
{fields.map((field) => (
|
|
153
170
|
<SingleValueCard
|