defaults.ini 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. ##################### Grafana Configuration Defaults #####################
  2. #
  3. # Do not modify this file in grafana installs
  4. #
  5. # possible values : production, development
  6. app_mode = production
  7. # instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty
  8. instance_name = ${HOSTNAME}
  9. #################################### Paths ###############################
  10. [paths]
  11. # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
  12. data = data
  13. # Temporary files in `data` directory older than given duration will be removed
  14. temp_data_lifetime = 24h
  15. # Directory where grafana can store logs
  16. logs = data/log
  17. # Directory where grafana will automatically scan and look for plugins
  18. plugins = data/plugins
  19. # folder that contains provisioning config files that grafana will apply on startup and while running.
  20. provisioning = conf/provisioning
  21. #################################### Server ##############################
  22. [server]
  23. # Protocol (http, https, socket)
  24. protocol = http
  25. # The ip address to bind to, empty will bind to all interfaces
  26. http_addr =
  27. # The http port to use
  28. http_port = 3000
  29. # The public facing domain name used to access grafana from a browser
  30. domain = localhost
  31. # Redirect to correct domain if host header does not match domain
  32. # Prevents DNS rebinding attacks
  33. enforce_domain = false
  34. # The full public facing url
  35. root_url = %(protocol)s://%(domain)s:%(http_port)s/
  36. # Log web requests
  37. router_logging = false
  38. # the path relative working path
  39. static_root_path = public
  40. # enable gzip
  41. enable_gzip = false
  42. # https certs & key file
  43. cert_file =
  44. cert_key =
  45. # Unix socket path
  46. socket = /tmp/grafana.sock
  47. #################################### Database ############################
  48. [database]
  49. # You can configure the database connection by specifying type, host, name, user and password
  50. # as separate properties or as on string using the url property.
  51. # Either "mysql", "postgres" or "sqlite3", it's your choice
  52. type = sqlite3
  53. host = 127.0.0.1:3306
  54. name = grafana
  55. user = root
  56. # If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
  57. password =
  58. # Use either URL or the previous fields to configure the database
  59. # Example: mysql://user:secret@host:port/database
  60. url =
  61. # Max idle conn setting default is 2
  62. max_idle_conn = 2
  63. # Max conn setting default is 0 (mean not set)
  64. max_open_conn =
  65. # Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours)
  66. conn_max_lifetime = 14400
  67. # Set to true to log the sql calls and execution times.
  68. log_queries =
  69. # For "postgres", use either "disable", "require" or "verify-full"
  70. # For "mysql", use either "true", "false", or "skip-verify".
  71. ssl_mode = disable
  72. ca_cert_path =
  73. client_key_path =
  74. client_cert_path =
  75. server_cert_name =
  76. # For "sqlite3" only, path relative to data_path setting
  77. path = grafana.db
  78. # For "sqlite3" only. cache mode setting used for connecting to the database
  79. cache_mode = private
  80. #################################### Login ###############################
  81. [login]
  82. # Login cookie name
  83. cookie_name = grafana_session
  84. # How many days an session can be unused before we inactivate it
  85. login_remember_days = 7
  86. # How often should the login token be rotated. default to '10m'
  87. rotate_token_minutes = 10
  88. # How long should Grafana keep expired tokens before deleting them
  89. delete_expired_token_after_days = 30
  90. #################################### Session #############################
  91. [session]
  92. # Either "memory", "file", "redis", "mysql", "postgres", "memcache", default is "file"
  93. provider = file
  94. # Provider config options
  95. # memory: not have any config yet
  96. # file: session dir path, is relative to grafana data_path
  97. # redis: config like redis server e.g. `addr=127.0.0.1:6379,pool_size=100,db=grafana`
  98. # postgres: user=a password=b host=localhost port=5432 dbname=c sslmode=disable
  99. # mysql: go-sql-driver/mysql dsn config string, examples:
  100. # `user:password@tcp(127.0.0.1:3306)/database_name`
  101. # `user:password@unix(/var/run/mysqld/mysqld.sock)/database_name`
  102. # memcache: 127.0.0.1:11211
  103. provider_config = sessions
  104. # Session cookie name
  105. cookie_name = grafana_sess
  106. # If you use session in https only, default is false
  107. cookie_secure = false
  108. # Session life time, default is 86400
  109. session_life_time = 86400
  110. gc_interval_time = 86400
  111. # Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours)
  112. conn_max_lifetime = 14400
  113. #################################### Data proxy ###########################
  114. [dataproxy]
  115. # This enables data proxy logging, default is false
  116. logging = false
  117. #################################### Analytics ###########################
  118. [analytics]
  119. # Server reporting, sends usage counters to stats.grafana.org every 24 hours.
  120. # No ip addresses are being tracked, only simple counters to track
  121. # running instances, dashboard and error counts. It is very helpful to us.
  122. # Change this option to false to disable reporting.
  123. reporting_enabled = true
  124. # Set to false to disable all checks to https://grafana.com
  125. # for new versions (grafana itself and plugins), check is used
  126. # in some UI views to notify that grafana or plugin update exists
  127. # This option does not cause any auto updates, nor send any information
  128. # only a GET request to https://grafana.com to get latest versions
  129. check_for_updates = true
  130. # Google Analytics universal tracking code, only enabled if you specify an id here
  131. google_analytics_ua_id =
  132. # Google Tag Manager ID, only enabled if you specify an id here
  133. google_tag_manager_id =
  134. #################################### Security ############################
  135. [security]
  136. # default admin user, created on startup
  137. admin_user = admin
  138. # default admin password, can be changed before first start of grafana, or in profile settings
  139. admin_password = admin
  140. # used for signing
  141. secret_key = SW2YcwTIb9zpOOhoPsMm
  142. # disable gravatar profile images
  143. disable_gravatar = false
  144. # data source proxy whitelist (ip_or_domain:port separated by spaces)
  145. data_source_proxy_whitelist =
  146. # disable protection against brute force login attempts
  147. disable_brute_force_login_protection = false
  148. # set cookies as https only. default is false
  149. https_flag_cookies = false
  150. #################################### Snapshots ###########################
  151. [snapshots]
  152. # snapshot sharing options
  153. external_enabled = true
  154. external_snapshot_url = https://snapshots-origin.raintank.io
  155. external_snapshot_name = Publish to snapshot.raintank.io
  156. # remove expired snapshot
  157. snapshot_remove_expired = true
  158. #################################### Dashboards ##################
  159. [dashboards]
  160. # Number dashboard versions to keep (per dashboard). Default: 20, Minimum: 1
  161. versions_to_keep = 20
  162. #################################### Users ###############################
  163. [users]
  164. # disable user signup / registration
  165. allow_sign_up = false
  166. # Allow non admin users to create organizations
  167. allow_org_create = false
  168. # Set to true to automatically assign new users to the default organization (id 1)
  169. auto_assign_org = true
  170. # Set this value to automatically add new users to the provided organization (if auto_assign_org above is set to true)
  171. auto_assign_org_id = 1
  172. # Default role new users will be automatically assigned (if auto_assign_org above is set to true)
  173. auto_assign_org_role = Viewer
  174. # Require email validation before sign up completes
  175. verify_email_enabled = false
  176. # Background text for the user field on the login page
  177. login_hint = email or username
  178. # Default UI theme ("dark" or "light")
  179. default_theme = dark
  180. # External user management
  181. external_manage_link_url =
  182. external_manage_link_name =
  183. external_manage_info =
  184. # Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard.
  185. viewers_can_edit = false
  186. [auth]
  187. # Set to true to disable (hide) the login form, useful if you use OAuth
  188. disable_login_form = false
  189. # Set to true to disable the signout link in the side menu. useful if you use auth.proxy
  190. disable_signout_menu = false
  191. # URL to redirect the user to after sign out
  192. signout_redirect_url =
  193. # Set to true to attempt login with OAuth automatically, skipping the login screen.
  194. # This setting is ignored if multiple OAuth providers are configured.
  195. oauth_auto_login = false
  196. #################################### Anonymous Auth ######################
  197. [auth.anonymous]
  198. # enable anonymous access
  199. enabled = false
  200. # specify organization name that should be used for unauthenticated users
  201. org_name = Main Org.
  202. # specify role for unauthenticated users
  203. org_role = Viewer
  204. #################################### Github Auth #########################
  205. [auth.github]
  206. enabled = false
  207. allow_sign_up = true
  208. client_id = some_id
  209. client_secret = some_secret
  210. scopes = user:email,read:org
  211. auth_url = https://github.com/login/oauth/authorize
  212. token_url = https://github.com/login/oauth/access_token
  213. api_url = https://api.github.com/user
  214. team_ids =
  215. allowed_organizations =
  216. #################################### GitLab Auth #########################
  217. [auth.gitlab]
  218. enabled = false
  219. allow_sign_up = true
  220. client_id = some_id
  221. client_secret = some_secret
  222. scopes = api
  223. auth_url = https://gitlab.com/oauth/authorize
  224. token_url = https://gitlab.com/oauth/token
  225. api_url = https://gitlab.com/api/v4
  226. allowed_groups =
  227. #################################### Google Auth #########################
  228. [auth.google]
  229. enabled = false
  230. allow_sign_up = true
  231. client_id = some_client_id
  232. client_secret = some_client_secret
  233. scopes = https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
  234. auth_url = https://accounts.google.com/o/oauth2/auth
  235. token_url = https://accounts.google.com/o/oauth2/token
  236. api_url = https://www.googleapis.com/oauth2/v1/userinfo
  237. allowed_domains =
  238. hosted_domain =
  239. #################################### Grafana.com Auth ####################
  240. # legacy key names (so they work in env variables)
  241. [auth.grafananet]
  242. enabled = false
  243. allow_sign_up = true
  244. client_id = some_id
  245. client_secret = some_secret
  246. scopes = user:email
  247. allowed_organizations =
  248. [auth.grafana_com]
  249. enabled = false
  250. allow_sign_up = true
  251. client_id = some_id
  252. client_secret = some_secret
  253. scopes = user:email
  254. allowed_organizations =
  255. #################################### Generic OAuth #######################
  256. [auth.generic_oauth]
  257. name = OAuth
  258. enabled = false
  259. allow_sign_up = true
  260. client_id = some_id
  261. client_secret = some_secret
  262. scopes = user:email
  263. email_attribute_name = email:primary
  264. auth_url =
  265. token_url =
  266. api_url =
  267. team_ids =
  268. allowed_organizations =
  269. tls_skip_verify_insecure = false
  270. tls_client_cert =
  271. tls_client_key =
  272. tls_client_ca =
  273. send_client_credentials_via_post = false
  274. #################################### Basic Auth ##########################
  275. [auth.basic]
  276. enabled = true
  277. #################################### Auth Proxy ##########################
  278. [auth.proxy]
  279. enabled = false
  280. header_name = X-WEBAUTH-USER
  281. header_property = username
  282. auto_sign_up = true
  283. ldap_sync_ttl = 60
  284. whitelist =
  285. headers =
  286. #################################### Auth LDAP ###########################
  287. [auth.ldap]
  288. enabled = false
  289. config_file = /etc/grafana/ldap.toml
  290. allow_sign_up = true
  291. #################################### SMTP / Emailing #####################
  292. [smtp]
  293. enabled = false
  294. host = localhost:25
  295. user =
  296. # If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
  297. password =
  298. cert_file =
  299. key_file =
  300. skip_verify = false
  301. from_address = admin@grafana.localhost
  302. from_name = Grafana
  303. ehlo_identity =
  304. [emails]
  305. welcome_email_on_sign_up = false
  306. templates_pattern = emails/*.html
  307. #################################### Logging ##########################
  308. [log]
  309. # Either "console", "file", "syslog". Default is console and file
  310. # Use space to separate multiple modes, e.g. "console file"
  311. mode = console file
  312. # Either "debug", "info", "warn", "error", "critical", default is "info"
  313. level = info
  314. # optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug
  315. filters =
  316. # For "console" mode only
  317. [log.console]
  318. level =
  319. # log line format, valid options are text, console and json
  320. format = console
  321. # For "file" mode only
  322. [log.file]
  323. level =
  324. # log line format, valid options are text, console and json
  325. format = text
  326. # This enables automated log rotate(switch of following options), default is true
  327. log_rotate = true
  328. # Max line number of single file, default is 1000000
  329. max_lines = 1000000
  330. # Max size shift of single file, default is 28 means 1 << 28, 256MB
  331. max_size_shift = 28
  332. # Segment log daily, default is true
  333. daily_rotate = true
  334. # Expired days of log file(delete after max days), default is 7
  335. max_days = 7
  336. [log.syslog]
  337. level =
  338. # log line format, valid options are text, console and json
  339. format = text
  340. # Syslog network type and address. This can be udp, tcp, or unix. If left blank, the default unix endpoints will be used.
  341. network =
  342. address =
  343. # Syslog facility. user, daemon and local0 through local7 are valid.
  344. facility =
  345. # Syslog tag. By default, the process' argv[0] is used.
  346. tag =
  347. #################################### Usage Quotas ########################
  348. [quota]
  349. enabled = false
  350. #### set quotas to -1 to make unlimited. ####
  351. # limit number of users per Org.
  352. org_user = 10
  353. # limit number of dashboards per Org.
  354. org_dashboard = 100
  355. # limit number of data_sources per Org.
  356. org_data_source = 10
  357. # limit number of api_keys per Org.
  358. org_api_key = 10
  359. # limit number of orgs a user can create.
  360. user_org = 10
  361. # Global limit of users.
  362. global_user = -1
  363. # global limit of orgs.
  364. global_org = -1
  365. # global limit of dashboards
  366. global_dashboard = -1
  367. # global limit of api_keys
  368. global_api_key = -1
  369. # global limit on number of logged in users.
  370. global_session = -1
  371. #################################### Alerting ############################
  372. [alerting]
  373. # Disable alerting engine & UI features
  374. enabled = true
  375. # Makes it possible to turn off alert rule execution but alerting UI is visible
  376. execute_alerts = true
  377. # Default setting for new alert rules. Defaults to categorize error and timeouts as alerting. (alerting, keep_state)
  378. error_or_timeout = alerting
  379. # Default setting for how Grafana handles nodata or null values in alerting. (alerting, no_data, keep_state, ok)
  380. nodata_or_nullvalues = no_data
  381. # Alert notifications can include images, but rendering many images at the same time can overload the server
  382. # This limit will protect the server from render overloading and make sure notifications are sent out quickly
  383. concurrent_render_limit = 5
  384. #################################### Explore #############################
  385. [explore]
  386. # Enable the Explore section
  387. enabled = false
  388. #################################### Internal Grafana Metrics ############
  389. # Metrics available at HTTP API Url /metrics
  390. [metrics]
  391. enabled = true
  392. interval_seconds = 10
  393. #If both are set, basic auth will be required for the metrics endpoint.
  394. basic_auth_username =
  395. basic_auth_password =
  396. # Send internal Grafana metrics to graphite
  397. [metrics.graphite]
  398. # Enable by setting the address setting (ex localhost:2003)
  399. address =
  400. prefix = prod.grafana.%(instance_name)s.
  401. [grafana_net]
  402. url = https://grafana.com
  403. [grafana_com]
  404. url = https://grafana.com
  405. #################################### Distributed tracing ############
  406. [tracing.jaeger]
  407. # jaeger destination (ex localhost:6831)
  408. address =
  409. # tag that will always be included in when creating new spans. ex (tag1:value1,tag2:value2)
  410. always_included_tag =
  411. # Type specifies the type of the sampler: const, probabilistic, rateLimiting, or remote
  412. sampler_type = const
  413. # jaeger samplerconfig param
  414. # for "const" sampler, 0 or 1 for always false/true respectively
  415. # for "probabilistic" sampler, a probability between 0 and 1
  416. # for "rateLimiting" sampler, the number of spans per second
  417. # for "remote" sampler, param is the same as for "probabilistic"
  418. # and indicates the initial sampling rate before the actual one
  419. # is received from the mothership
  420. sampler_param = 1
  421. #################################### External Image Storage ##############
  422. [external_image_storage]
  423. # You can choose between (s3, webdav, gcs, azure_blob, local)
  424. provider =
  425. [external_image_storage.s3]
  426. bucket_url =
  427. bucket =
  428. region =
  429. path =
  430. access_key =
  431. secret_key =
  432. [external_image_storage.webdav]
  433. url =
  434. username =
  435. password =
  436. public_url =
  437. [external_image_storage.gcs]
  438. key_file =
  439. bucket =
  440. path =
  441. [external_image_storage.azure_blob]
  442. account_name =
  443. account_key =
  444. container_name =
  445. [external_image_storage.local]
  446. # does not require any configuration
  447. [rendering]
  448. # Options to configure external image rendering server like https://github.com/grafana/grafana-image-renderer
  449. server_url =
  450. callback_url =
  451. [panels]
  452. enable_alpha = false
  453. disable_sanitize_html = false
  454. [enterprise]
  455. license_path =