mirror of
https://github.com/hibiken/asynqmon.git
synced 2026-04-26 17:45:50 +03:00
[GH-ISSUE #187] Unable to host dashboard through echo http framework #746
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynqmon#746
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @swagftw on GitHub (Oct 21, 2021).
Original GitHub issue: https://github.com/hibiken/asynqmon/issues/187
I will try to keep it simple and short
localhost:8080/events/dashboard/blank page is returned with multiple 404 responses as shown belowCheck the code below
OR
@hibiken commented on GitHub (Oct 22, 2021):
@swagftw Thank you for opening an issue!
I'm not familiar with the framework but it seems like requests for static assets are not routed to
asynqmon.HTTPHandler.Is there a way to configure router in echo to route all the HTTP request with the path prefix
/events/dashboard?@zijiwork commented on GitHub (Nov 10, 2021):
Hello, How to integrate dashboards in gin framework
@tempor1s commented on GitHub (Dec 14, 2021):
If anyone runs into this same issue, you are able to integrate Echo and Asynqmon with the following code snippet:
You should then be able to navigate to
http://localhost:8080/monitoring/tasks/and view the dashboard.@hibiken commented on GitHub (Dec 16, 2021):
Thank you @tempor1s!