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
Output of systemctl status php8.3-fpm.service
systemctl status php8.3-fpm.service
● php8.3-fpm.service - The PHP 8.3 FastCGI Process Manager Loaded: loaded (/lib/systemd/system/php8.3-fpm.service; enabled; vendor preset: enabled) Active: active (running) since Tue 2024-05-07 13:12:21 CEST; 21h ago Main PID: 1376 (php-fpm8.3) Status: "Processes active: 2712, idle: 0, Requests: 19301450, slow: 0, Traffic: 5.87e+03req/sec" Tasks: 1501 (limit: 9830) Memory: 11.0G
Using scientific notation for Traffic: 5.87e+03req/sec is not useful here. Expected values are between 0 and 10000ish.
Traffic: 5.87e+03req/sec
The output should be formatted as decimal Traffic: 5870 req/sec.
Traffic: 5870 req/sec
The text was updated successfully, but these errors were encountered:
Use unsigned int specifier to format request rate
00ddb53
Fixes php#14175
Use two diged float specifier to format request rate
032e71d
15ab15b
5b6cda6
No branches or pull requests
Description
Output of
systemctl status php8.3-fpm.service
Using scientific notation for
Traffic: 5.87e+03req/sec
is not useful here. Expected values are between 0 and 10000ish.The output should be formatted as decimal
Traffic: 5870 req/sec
.The text was updated successfully, but these errors were encountered: