We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that the files served by the /static route are not compressed.
/static
The jaeger-ui files seems to be properly minified but they are still quite heavy: /static/css/main.*.css --> ~600KB /static/js/main.*.js --> ~1.8MB
/static/css/main.*.css
/static/js/main.*.js
The text was updated successfully, but these errors were encountered:
That's a great suggestion. Off top of my head I don't remember if Go's file server supports it.
Sorry, something went wrong.
It seems that mux/handlers provides one and it's already part of the dependancies: https://github.com/gorilla/handlers
We could probably wrap the whole mux.NewRouter() with the CompressHandler just like it's done by the RecoveryHandler.
I can send a pull request with that
pull request will be most welcome
Successfully merging a pull request may close this issue.
It seems that the files served by the
/static
route are not compressed.The jaeger-ui files seems to be properly minified but they are still quite heavy:
/static/css/main.*.css
--> ~600KB/static/js/main.*.js
--> ~1.8MBThe text was updated successfully, but these errors were encountered: