How to change the date format in Grafana from MM-DD to DD-MM or something else?

I am using Grafana cloud (free) in Australia and created few dashboard using Azure Monitor as data source. The default date is mm/dd, can i change it to dd/mm?
If possible then how ?

Where exactly are you hoping to change this time formatting? In the legend or axes?

+1 for this, please.

Grafana hosted on a Pi. tooltips show as YYYY-MM-DD.
Would like to change it to DD-MM-YYYY

Thank you.

@Richard238 you can do by changing the full_date setting in grafana’s configuration settings.

this docker command:

  docker run \
    -e GF_DATE_FORMATS_FULL_DATE='DD-MM-YYYY HH:mm:ss' \
    -p 3000:3000 \
    grafana/grafana:latest

will give a tooltip with a date like this:

CleanShot 2022-02-24 at 12.39.52@2x

This topic was automatically closed after 365 days. New replies are no longer allowed.