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
currently we have:
I suggest to change how it displayed to simplify readibilty by making connection between value of uptime with length of the text representation:
everything below 1 minute we show just as seconds without leading zero:
5s 10s 30s
after 1 minute we show short time representation:
1:05 5:10 15:30
after 1 hour we show longer time representation:
1:30:20 5:05:05 15:30:40
after 24 hours we adding number of the days
1d 01:30:20 1d 15:05:05 12d 05:05:05
of course everything with right-alignment. and we dont show leading zeros on the leftmost elements.
I expect it to be something like this:
The text was updated successfully, but these errors were encountered:
@adameat is something like this expected?
Sorry, something went wrong.
artemmufazalov
Successfully merging a pull request may close this issue.
currently we have:
I suggest to change how it displayed to simplify readibilty by making connection between value of uptime with length of the text representation:
everything below 1 minute we show just as seconds without leading zero:
5s
10s
30s
after 1 minute we show short time representation:
1:05
5:10
15:30
after 1 hour we show longer time representation:
1:30:20
5:05:05
15:30:40
after 24 hours we adding number of the days
1d 01:30:20
1d 15:05:05
12d 05:05:05
of course everything with right-alignment. and we dont show leading zeros on the leftmost elements.
I expect it to be something like this:
The text was updated successfully, but these errors were encountered: