discourse / prometheus_exporter

A framework for collecting and aggregating prometheus metrics
MIT License
525 stars 153 forks source link

Trivial date format fixes #195

Closed ujihisa closed 2 years ago

ujihisa commented 2 years ago

Problem

Since dd-mm-yyyy is ambiguous, it's hard to read, particularly when the dd is less than or equal to 12. It's also not commonly used.

Solution

A standard such as ISO 8601 can be helpful, not only because it's commonly used, but it's also less confusing.

dd/mm/yyyy or mm/dd/yyyy are more common, but it still does not solve the ambiguous problem.

SamSaffron commented 2 years ago

sure, seems fine to me, thanks!