This commit is contained in:
33
src/routes/error_report/+page.svelte
Normal file
33
src/routes/error_report/+page.svelte
Normal file
@ -0,0 +1,33 @@
|
||||
<script lang="ts">
|
||||
let content = `[ERROR] 2026-02-25T12:35:41Z - node-prod-04.cluster.local
|
||||
Deployment failed: service-mesh-gateway (v2.4.1)
|
||||
|
||||
Caused by:
|
||||
Standard Error (stderr):
|
||||
-----------------------------------------------------------------------
|
||||
dial tcp 10.96.0.10:53: i/o timeout
|
||||
error: failed to connect to the cluster discovery service
|
||||
|
||||
Diagnostic Information:
|
||||
- Operation: UPSERT_SERVICE_ENDPOINT
|
||||
- Status: NetworkUnreachable (Code: 503)
|
||||
- Trace ID: 8f2b1d3c-9a0e-4f76-b521-723049586ac2
|
||||
|
||||
Hint: The upstream cluster is not responding. Check your security groups
|
||||
and ensure the internal DNS resolver is reachable from this subnet.
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
(exit status 1)`;
|
||||
</script>
|
||||
|
||||
<div class="m-4 text-white w-max max-w-3xl">
|
||||
<div id="main" class="p-10 bg-gray-700">
|
||||
<div class="bg-gray-900 p-4 rounded-2xl shadow-2xl">
|
||||
<h1 class="text-3xl font-serif font-black my-3">出错啦!</h1>
|
||||
<div class="mx-3 my-3 font-sans whitespace-pre-wrap wrap-break-word">
|
||||
{ content }
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user