I have an influx data source set up using provisioning in /etc/grafana/provisioning/datasources/.
I can see in the grafana web interface that there is an option to set the “http Method” to either Post or Get, it seems to default as Get but I would like to change it to Post in my provisioned config file. I can’t find any documentation about how to do this, is it supported in a config file and how?
As an example here is how one of my data sources is set up:
apiVersion: 1
datasources:
- name: my_influx_datasource
grafana_url: https://grafana.mydomain.net:8080
grafana_user: grafanauser
grafana_password: password
type: influxdb
url: https://influxdb.mydomain.net:8086
user: grafana
password: password
database: important_data
access: proxy
What extra setting can I add here to set the http Method?
Cheers
Martin