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
The Chrome dev console pointed me to the Server Timing API (web.dev, MDN). It looks very useful, should we implement it?
The text was updated successfully, but these errors were encountered:
For now, I added the following line to the nginx config on the s0 server for LAPIS:
add_header Server-Timing "requestTime;desc=\"Total Request Time\";dur=$request_time, upstreamConnect;desc=\"Upstream Connect Time\";dur=$upstream_connect_time, upstreamHeader;desc=\"Upstream Header Time\";dur=$upstream_header_time, upstreamResponse;desc=\"Upstream Response Time\";dur=$upstream_response_time";
Note: the values are provided in seconds.
Information about the variables can be found in the Nginx documentation.
Sorry, something went wrong.
No branches or pull requests
The Chrome dev console pointed me to the Server Timing API (web.dev, MDN). It looks very useful, should we implement it?
Chrome dev console screenshot
The text was updated successfully, but these errors were encountered: