-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
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
Question about metrics #141
Comments
i am looking for a way to show how long it takes a page to load.. not sure which one to use! |
Hey @jhjacobs81 ,
|
Actually for different tool you would need to analizę apache text
accesslogs. (Httpd would need to be set to log %D )
Check goaccess
Or send logs to Loki and graph the request duration.
pt., 17 lut 2023, 21:19 użytkownik William Van Hevelingen <
***@***.***> napisał:
… Hey @jhjacobs81 <https://github.com/jhjacobs81> ,
- apache_accesses_total is good for calculating requests per second.
- apache_duration_ms_total would tell you how long a request took.
Since a page is often multiple requests to different resources it wouldn't
tell you how long a page takes to load. A different tool would be more
suitable to measure page load time.
—
Reply to this email directly, view it on GitHub
<#141 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJ4NBSJF5YCUG5FVGOFYFDTWX7MNJANCNFSM6AAAAAAQIVGXSQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Let us know if you have any more questions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am very new to both Grafana and Apache exporter, and i was curious.
What is the difference between this one:
TYPE apache_accesses_total counter
and this one:
TYPE apache_duration_ms_total gauge
I am looking for a way to show the response times of how long it takes when i request a page, and when apache says its finished. For one client they have a request that it takes no longer then so many ms between request and completion :)
The text was updated successfully, but these errors were encountered: