{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Parameters to instantiate Grafana", "additionalProperties": false, "properties": { "smtp-server": { "description": "SMTP server used by grafana to send emails (in host:port format). Leaving this empty will disable email sending.", "type": "string" }, "smtp-username": { "description": "Username to connect to SMTP server", "type": "string" }, "smtp-password": { "description": "Password to connect to SMTP server", "type": "string" }, "smtp-verify-ssl": { "description": "Verify SSL certificate of SMTP server", "type": "boolean", "default": true }, "email-from-address": { "description": "Email address used in From: header of emails", "type": "string" }, "email-from-name": { "description": "Name used in From: header of emails", "default": "Grafana", "type": "string" }, "promtail-extra-scrape-config": { "description": "Raw promtail config (experimental parameter, see https://github.com/grafana/loki/blob/v0.3.0/docs/promtail.md#scrape-configs for detail)", "default": "", "type": "string" } } }