crooked-holiday-38139
08/07/2025, 11:07 AMpodRFC3339StartTime
and podRFC3339FinishTime
but the problem we have is that Grafana expects datetimes in RFC3339 in millisecond precision so our links don't currently work as podRFC3339StartTime which reads the pod.CreationTimestamp, and of course the creation timestamp is in seconds precision.
The way we've "solved" this is to instead use the unix timestamp and pad it with zeroes:
Hopefully, that helps folks who are using Grafana for their logging.Copy code&from={{ "{{" }} .podUnixStartTime {{ "}}" }}000&to={{ "{{" }} .podUnixFinishTime {{ "}}" }}000