-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Create the dashboard where all the errrors are displayed.
User can filter the error depending upon the priority and types as well.
Frontend Tech Stack can be : React / Angular.
API: http://localhost:8080/api/errors
Response: {
"data": [
{
"id": 1,
"message": null,
"stackTrace": null,
"timestamp": null
},
{
"id": 2,
"message": null,
"stackTrace": null,
"timestamp": null
},
{
"id": 3,
"message": "/ by zero",
"stackTrace": "org.example.Main.main(Main.java:11)\n",
"timestamp": "2025-01-25T22:50:47.132862"
},
{
"id": 4,
"message": "/ by zero",
"stackTrace": "org.example.Main.main(Main.java:12)\n",
"timestamp": "2025-01-25T22:55:31.673673"
},
{
"id": 5,
"message": "/ by zero",
"stackTrace": "org.example.Main.main(Main.java:11)\n",
"timestamp": "2025-01-26T11:02:19.555466"
}
],
"message": "All the records",
"status": "OK"
}