Guest User

Untitled

a guest
Apr 13th, 2022
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 42.88 KB | None | 0 0
  1. ##################### Grafana Configuration Example #####################
  2. #
  3. # Everything has defaults so you only need to uncomment things you want to
  4. # change
  5.  
  6. # possible values : production, development
  7. ;app_mode = production
  8.  
  9. # instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty
  10. ;instance_name = ${HOSTNAME}
  11.  
  12. #################################### Paths ####################################
  13. [paths]
  14. # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
  15. ;data = /var/lib/grafana
  16.  
  17. # Temporary files in `data` directory older than given duration will be removed
  18. ;temp_data_lifetime = 24h
  19.  
  20. # Directory where grafana can store logs
  21. logs = /var/log/grafana
  22.  
  23. # Directory where grafana will automatically scan and look for plugins
  24. ;plugins = /var/lib/grafana/plugins
  25.  
  26. # folder that contains provisioning config files that grafana will apply on startup and while running.
  27. ;provisioning = conf/provisioning
  28.  
  29. #################################### Server ####################################
  30. [server]
  31. # Protocol (http, https, h2, socket)
  32. ;protocol = http
  33.  
  34. # The ip address to bind to, empty will bind to all interfaces
  35. ;http_addr =
  36.  
  37. # The http port to use
  38. ;http_port = 3000
  39.  
  40. # The public facing domain name used to access grafana from a browser
  41. ;domain = localhost
  42.  
  43. # Redirect to correct domain if host header does not match domain
  44. # Prevents DNS rebinding attacks
  45. ;enforce_domain = false
  46.  
  47. # The full public facing url you use in browser, used for redirects and emails
  48. # If you use reverse proxy and sub path specify full url (with sub path)
  49. ;root_url = %(protocol)s://%(domain)s:%(http_port)s/
  50.  
  51. # Serve Grafana from subpath specified in `root_url` setting. By default it is set to `false` for compatibility reasons.
  52. ;serve_from_sub_path = false
  53.  
  54. # Log web requests
  55. ;router_logging = false
  56.  
  57. # the path relative working path
  58. ;static_root_path = public
  59.  
  60. # enable gzip
  61. ;enable_gzip = false
  62.  
  63. # https certs & key file
  64. ;cert_file =
  65. ;cert_key =
  66.  
  67. # Unix socket path
  68. ;socket =
  69.  
  70. # CDN Url
  71. ;cdn_url =
  72.  
  73. # Sets the maximum time using a duration format (5s/5m/5ms) before timing out read of an incoming request and closing idle connections.
  74. # `0` means there is no timeout for reading the request.
  75. ;read_timeout = 0
  76.  
  77. #################################### Database ####################################
  78. [database]
  79. # You can configure the database connection by specifying type, host, name, user and password
  80. # as separate properties or as on string using the url properties.
  81.  
  82. # Either "mysql", "postgres" or "sqlite3", it's your choice
  83. ;type = sqlite3
  84. ;host = 127.0.0.1:3306
  85. ;name = grafana
  86. ;user = root
  87. # If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
  88. ;password =
  89.  
  90. # Use either URL or the previous fields to configure the database
  91. # Example: mysql://user:secret@host:port/database
  92. ;url =
  93.  
  94. # For "postgres" only, either "disable", "require" or "verify-full"
  95. ;ssl_mode = disable
  96.  
  97. # Database drivers may support different transaction isolation levels.
  98. # Currently, only "mysql" driver supports isolation levels.
  99. # If the value is empty - driver's default isolation level is applied.
  100. # For "mysql" use "READ-UNCOMMITTED", "READ-COMMITTED", "REPEATABLE-READ" or "SERIALIZABLE".
  101. ;isolation_level =
  102.  
  103. ;ca_cert_path =
  104. ;client_key_path =
  105. ;client_cert_path =
  106. ;server_cert_name =
  107.  
  108. # For "sqlite3" only, path relative to data_path setting
  109. ;path = grafana.db
  110.  
  111. # Max idle conn setting default is 2
  112. ;max_idle_conn = 2
  113.  
  114. # Max conn setting default is 0 (mean not set)
  115. ;max_open_conn =
  116.  
  117. # Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours)
  118. ;conn_max_lifetime = 14400
  119.  
  120. # Set to true to log the sql calls and execution times.
  121. log_queries = false
  122.  
  123. # For "sqlite3" only. cache mode setting used for connecting to the database. (private, shared)
  124. ;cache_mode = private
  125.  
  126. ################################### Data sources #########################
  127. [datasources]
  128. # Upper limit of data sources that Grafana will return. This limit is a temporary configuration and it will be deprecated when pagination will be introduced on the list data sources API.
  129. ;datasource_limit = 5000
  130.  
  131. #################################### Cache server #############################
  132. [remote_cache]
  133. # Either "redis", "memcached" or "database" default is "database"
  134. ;type = database
  135.  
  136. # cache connectionstring options
  137. # database: will use Grafana primary database.
  138. # redis: config like redis server e.g. `addr=127.0.0.1:6379,pool_size=100,db=0,ssl=false`. Only addr is required. ssl may be 'true', 'false', or 'insecure'.
  139. # memcache: 127.0.0.1:11211
  140. ;connstr =
  141.  
  142. #################################### Data proxy ###########################
  143. [dataproxy]
  144.  
  145. # This enables data proxy logging, default is false
  146. logging = false
  147.  
  148. # How long the data proxy waits to read the headers of the response before timing out, default is 30 seconds.
  149. # This setting also applies to core backend HTTP data sources where query requests use an HTTP client with timeout set.
  150. ;timeout = 60
  151.  
  152. # How long the data proxy waits to establish a TCP connection before timing out, default is 10 seconds.
  153. ;dialTimeout = 60
  154.  
  155. # How many seconds the data proxy waits before sending a keepalive probe request.
  156. ;keep_alive_seconds = 30
  157.  
  158. # How many seconds the data proxy waits for a successful TLS Handshake before timing out.
  159. ;tls_handshake_timeout_seconds = 10
  160.  
  161. # How many seconds the data proxy will wait for a server's first response headers after
  162. # fully writing the request headers if the request has an "Expect: 100-continue"
  163. # header. A value of 0 will result in the body being sent immediately, without
  164. # waiting for the server to approve.
  165. ;expect_continue_timeout_seconds = 1
  166.  
  167. # Optionally limits the total number of connections per host, including connections in the dialing,
  168. # active, and idle states. On limit violation, dials will block.
  169. # A value of zero (0) means no limit.
  170. ;max_conns_per_host = 0
  171.  
  172. # The maximum number of idle connections that Grafana will keep alive.
  173. ;max_idle_connections = 100
  174.  
  175. # How many seconds the data proxy keeps an idle connection open before timing out.
  176. ;idle_conn_timeout_seconds = 90
  177.  
  178. # If enabled and user is not anonymous, data proxy will add X-Grafana-User header with username into the request, default is false.
  179. ;send_user_header = false
  180.  
  181. # Limit the amount of bytes that will be read/accepted from responses of outgoing HTTP requests.
  182. ;response_limit = 0
  183.  
  184. # Limits the number of rows that Grafana will process from SQL data sources.
  185. ;row_limit = 1000000
  186.  
  187. #################################### Analytics ####################################
  188. [analytics]
  189. # Server reporting, sends usage counters to stats.grafana.org every 24 hours.
  190. # No ip addresses are being tracked, only simple counters to track
  191. # running instances, dashboard and error counts. It is very helpful to us.
  192. # Change this option to false to disable reporting.
  193. ;reporting_enabled = true
  194.  
  195. # The name of the distributor of the Grafana instance. Ex hosted-grafana, grafana-labs
  196. ;reporting_distributor = grafana-labs
  197.  
  198. # Set to false to disable all checks to https://grafana.net
  199. # for new versions (grafana itself and plugins), check is used
  200. # in some UI views to notify that grafana or plugin update exists
  201. # This option does not cause any auto updates, nor send any information
  202. # only a GET request to http://grafana.com to get latest versions
  203. ;check_for_updates = true
  204.  
  205. # Google Analytics universal tracking code, only enabled if you specify an id here
  206. ;google_analytics_ua_id =
  207.  
  208. # Google Tag Manager ID, only enabled if you specify an id here
  209. ;google_tag_manager_id =
  210.  
  211. #################################### Security ####################################
  212. [security]
  213. # disable creation of admin user on first start of grafana
  214. ;disable_initial_admin_creation = false
  215.  
  216. # default admin user, created on startup
  217. ;admin_user = admin
  218.  
  219. # default admin password, can be changed before first start of grafana, or in profile settings
  220. ;admin_password = admin
  221.  
  222. # used for signing
  223. ;secret_key = SW2YcwTIb9zpOOhoPsMm
  224.  
  225. # disable gravatar profile images
  226. ;disable_gravatar = false
  227.  
  228. # data source proxy whitelist (ip_or_domain:port separated by spaces)
  229. ;data_source_proxy_whitelist =
  230.  
  231. # disable protection against brute force login attempts
  232. ;disable_brute_force_login_protection = false
  233.  
  234. # set to true if you host Grafana behind HTTPS. default is false.
  235. ;cookie_secure = false
  236.  
  237. # set cookie SameSite attribute. defaults to `lax`. can be set to "lax", "strict", "none" and "disabled"
  238. ;cookie_samesite = lax
  239.  
  240. # set to true if you want to allow browsers to render Grafana in a <frame>, <iframe>, <embed> or <object>. default is false.
  241. ;allow_embedding = false
  242.  
  243. # Set to true if you want to enable http strict transport security (HSTS) response header.
  244. # This is only sent when HTTPS is enabled in this configuration.
  245. # HSTS tells browsers that the site should only be accessed using HTTPS.
  246. ;strict_transport_security = false
  247.  
  248. # Sets how long a browser should cache HSTS. Only applied if strict_transport_security is enabled.
  249. ;strict_transport_security_max_age_seconds = 86400
  250.  
  251. # Set to true if to enable HSTS preloading option. Only applied if strict_transport_security is enabled.
  252. ;strict_transport_security_preload = false
  253.  
  254. # Set to true if to enable the HSTS includeSubDomains option. Only applied if strict_transport_security is enabled.
  255. ;strict_transport_security_subdomains = false
  256.  
  257. # Set to true to enable the X-Content-Type-Options response header.
  258. # The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised
  259. # in the Content-Type headers should not be changed and be followed.
  260. ;x_content_type_options = true
  261.  
  262. # Set to true to enable the X-XSS-Protection header, which tells browsers to stop pages from loading
  263. # when they detect reflected cross-site scripting (XSS) attacks.
  264. ;x_xss_protection = true
  265.  
  266. # Enable adding the Content-Security-Policy header to your requests.
  267. # CSP allows to control resources the user agent is allowed to load and helps prevent XSS attacks.
  268. ;content_security_policy = false
  269.  
  270. # Set Content Security Policy template used when adding the Content-Security-Policy header to your requests.
  271. # $NONCE in the template includes a random nonce.
  272. # $ROOT_PATH is server.root_url without the protocol.
  273. ;content_security_policy_template = """script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' $NONCE;object-src 'none';font-src 'self';style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com ws://$ROOT_PATH wss://$ROOT_PATH;manifest-src 'self';media-src 'none';form-action 'self';"""
  274.  
  275. #################################### Snapshots ###########################
  276. [snapshots]
  277. # snapshot sharing options
  278. ;external_enabled = true
  279. ;external_snapshot_url = https://snapshots-origin.raintank.io
  280. ;external_snapshot_name = Publish to snapshot.raintank.io
  281.  
  282. # Set to true to enable this Grafana instance act as an external snapshot server and allow unauthenticated requests for
  283. # creating and deleting snapshots.
  284. ;public_mode = false
  285.  
  286. # remove expired snapshot
  287. ;snapshot_remove_expired = true
  288.  
  289. #################################### Dashboards History ##################
  290. [dashboards]
  291. # Number dashboard versions to keep (per dashboard). Default: 20, Minimum: 1
  292. ;versions_to_keep = 20
  293.  
  294. # Minimum dashboard refresh interval. When set, this will restrict users to set the refresh interval of a dashboard lower than given interval. Per default this is 5 seconds.
  295. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  296. ;min_refresh_interval = 5s
  297.  
  298. # Path to the default home dashboard. If this value is empty, then Grafana uses StaticRootPath + "dashboards/home.json"
  299. ;default_home_dashboard_path =
  300.  
  301. #################################### Users ###############################
  302. [users]
  303. # disable user signup / registration
  304. ;allow_sign_up = true
  305.  
  306. # Allow non admin users to create organizations
  307. ;allow_org_create = true
  308.  
  309. # Set to true to automatically assign new users to the default organization (id 1)
  310. ;auto_assign_org = true
  311.  
  312. # Set this value to automatically add new users to the provided organization (if auto_assign_org above is set to true)
  313. ;auto_assign_org_id = 1
  314.  
  315. # Default role new users will be automatically assigned (if disabled above is set to true)
  316. ;auto_assign_org_role = Viewer
  317.  
  318. # Require email validation before sign up completes
  319. ;verify_email_enabled = false
  320.  
  321. # Background text for the user field on the login page
  322. ;login_hint = email or username
  323. ;password_hint = password
  324.  
  325. # Default UI theme ("dark" or "light")
  326. ;default_theme = dark
  327.  
  328. # Path to a custom home page. Users are only redirected to this if the default home dashboard is used. It should match a frontend route and contain a leading slash.
  329. ; home_page =
  330.  
  331. # External user management, these options affect the organization users view
  332. ;external_manage_link_url =
  333. ;external_manage_link_name =
  334. ;external_manage_info =
  335.  
  336. # Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard.
  337. ;viewers_can_edit = false
  338.  
  339. # Editors can administrate dashboard, folders and teams they create
  340. ;editors_can_admin = false
  341.  
  342. # The duration in time a user invitation remains valid before expiring. This setting should be expressed as a duration. Examples: 6h (hours), 2d (days), 1w (week). Default is 24h (24 hours). The minimum supported duration is 15m (15 minutes).
  343. ;user_invite_max_lifetime_duration = 24h
  344.  
  345. # Enter a comma-separated list of users login to hide them in the Grafana UI. These users are shown to Grafana admins and themselves.
  346. ; hidden_users =
  347.  
  348. [auth]
  349. # Login cookie name
  350. ;login_cookie_name = grafana_session
  351.  
  352. # The maximum lifetime (duration) an authenticated user can be inactive before being required to login at next visit. Default is 7 days (7d). This setting should be expressed as a duration, e.g. 5m (minutes), 6h (hours), 10d (days), 2w (weeks), 1M (month). The lifetime resets at each successful token rotation.
  353. ;login_maximum_inactive_lifetime_duration =
  354.  
  355. # The maximum lifetime (duration) an authenticated user can be logged in since login time before being required to login. Default is 30 days (30d). This setting should be expressed as a duration, e.g. 5m (minutes), 6h (hours), 10d (days), 2w (weeks), 1M (month).
  356. ;login_maximum_lifetime_duration =
  357.  
  358. # How often should auth tokens be rotated for authenticated users when being active. The default is each 10 minutes.
  359. ;token_rotation_interval_minutes = 10
  360.  
  361. # Set to true to disable (hide) the login form, useful if you use OAuth, defaults to false
  362. ;disable_login_form = false
  363.  
  364. # Set to true to disable the sign out link in the side menu. Useful if you use auth.proxy or auth.jwt, defaults to false
  365. ;disable_signout_menu = false
  366.  
  367. # URL to redirect the user to after sign out
  368. ;signout_redirect_url =
  369.  
  370. # Set to true to attempt login with OAuth automatically, skipping the login screen.
  371. # This setting is ignored if multiple OAuth providers are configured.
  372. ;oauth_auto_login = false
  373.  
  374. # OAuth state max age cookie duration in seconds. Defaults to 600 seconds.
  375. ;oauth_state_cookie_max_age = 600
  376.  
  377. # limit of api_key seconds to live before expiration
  378. ;api_key_max_seconds_to_live = -1
  379.  
  380. # Set to true to enable SigV4 authentication option for HTTP-based datasources.
  381. ;sigv4_auth_enabled = false
  382.  
  383. #################################### Anonymous Auth ######################
  384. [auth.anonymous]
  385. # enable anonymous access
  386. ;enabled = false
  387.  
  388. # specify organization name that should be used for unauthenticated users
  389. ;org_name = Main Org.
  390.  
  391. # specify role for unauthenticated users
  392. ;org_role = Viewer
  393.  
  394. # mask the Grafana version number for unauthenticated users
  395. ;hide_version = false
  396.  
  397. #################################### GitHub Auth ##########################
  398. [auth.github]
  399. ;enabled = false
  400. ;allow_sign_up = true
  401. ;client_id = some_id
  402. ;client_secret = some_secret
  403. ;scopes = user:email,read:org
  404. ;auth_url = https://github.com/login/oauth/authorize
  405. ;token_url = https://github.com/login/oauth/access_token
  406. ;api_url = https://api.github.com/user
  407. ;allowed_domains =
  408. ;team_ids =
  409. ;allowed_organizations =
  410.  
  411. #################################### GitLab Auth #########################
  412. [auth.gitlab]
  413. ;enabled = false
  414. ;allow_sign_up = true
  415. ;client_id = some_id
  416. ;client_secret = some_secret
  417. ;scopes = api
  418. ;auth_url = https://gitlab.com/oauth/authorize
  419. ;token_url = https://gitlab.com/oauth/token
  420. ;api_url = https://gitlab.com/api/v4
  421. ;allowed_domains =
  422. ;allowed_groups =
  423.  
  424. #################################### Google Auth ##########################
  425. [auth.google]
  426. ;enabled = false
  427. ;allow_sign_up = true
  428. ;client_id = some_client_id
  429. ;client_secret = some_client_secret
  430. ;scopes = https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
  431. ;auth_url = https://accounts.google.com/o/oauth2/auth
  432. ;token_url = https://accounts.google.com/o/oauth2/token
  433. ;api_url = https://www.googleapis.com/oauth2/v1/userinfo
  434. ;allowed_domains =
  435. ;hosted_domain =
  436.  
  437. #################################### Grafana.com Auth ####################
  438. [auth.grafana_com]
  439. ;enabled = false
  440. ;allow_sign_up = true
  441. ;client_id = some_id
  442. ;client_secret = some_secret
  443. ;scopes = user:email
  444. ;allowed_organizations =
  445.  
  446. #################################### Azure AD OAuth #######################
  447. [auth.azuread]
  448. ;name = Azure AD
  449. ;enabled = false
  450. ;allow_sign_up = true
  451. ;client_id = some_client_id
  452. ;client_secret = some_client_secret
  453. ;scopes = openid email profile
  454. ;auth_url = https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize
  455. ;token_url = https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/token
  456. ;allowed_domains =
  457. ;allowed_groups =
  458.  
  459. #################################### Okta OAuth #######################
  460. [auth.okta]
  461. ;name = Okta
  462. ;enabled = false
  463. ;allow_sign_up = true
  464. ;client_id = some_id
  465. ;client_secret = some_secret
  466. ;scopes = openid profile email groups
  467. ;auth_url = https://<tenant-id>.okta.com/oauth2/v1/authorize
  468. ;token_url = https://<tenant-id>.okta.com/oauth2/v1/token
  469. ;api_url = https://<tenant-id>.okta.com/oauth2/v1/userinfo
  470. ;allowed_domains =
  471. ;allowed_groups =
  472. ;role_attribute_path =
  473. ;role_attribute_strict = false
  474.  
  475. #################################### Generic OAuth ##########################
  476. [auth.generic_oauth]
  477. ;enabled = false
  478. ;name = OAuth
  479. ;allow_sign_up = true
  480. ;client_id = some_id
  481. ;client_secret = some_secret
  482. ;scopes = user:email,read:org
  483. ;empty_scopes = false
  484. ;email_attribute_name = email:primary
  485. ;email_attribute_path =
  486. ;login_attribute_path =
  487. ;name_attribute_path =
  488. ;id_token_attribute_name =
  489. ;auth_url = https://foo.bar/login/oauth/authorize
  490. ;token_url = https://foo.bar/login/oauth/access_token
  491. ;api_url = https://foo.bar/user
  492. ;teams_url =
  493. ;allowed_domains =
  494. ;team_ids =
  495. ;allowed_organizations =
  496. ;role_attribute_path =
  497. ;role_attribute_strict = false
  498. ;groups_attribute_path =
  499. ;team_ids_attribute_path =
  500. ;tls_skip_verify_insecure = false
  501. ;tls_client_cert =
  502. ;tls_client_key =
  503. ;tls_client_ca =
  504.  
  505. #################################### Basic Auth ##########################
  506. [auth.basic]
  507. ;enabled = true
  508.  
  509. #################################### Auth Proxy ##########################
  510. [auth.proxy]
  511. ;enabled = false
  512. ;header_name = X-WEBAUTH-USER
  513. ;header_property = username
  514. ;auto_sign_up = true
  515. ;sync_ttl = 60
  516. ;whitelist = 192.168.1.1, 192.168.2.1
  517. ;headers = Email:X-User-Email, Name:X-User-Name
  518. # Read the auth proxy docs for details on what the setting below enables
  519. ;enable_login_token = false
  520.  
  521. #################################### Auth JWT ##########################
  522. [auth.jwt]
  523. ;enabled = true
  524. ;header_name = X-JWT-Assertion
  525. ;email_claim = sub
  526. ;username_claim = sub
  527. ;jwk_set_url = https://foo.bar/.well-known/jwks.json
  528. ;jwk_set_file = /path/to/jwks.json
  529. ;cache_ttl = 60m
  530. ;expected_claims = {"aud": ["foo", "bar"]}
  531. ;key_file = /path/to/key/file
  532.  
  533. #################################### Auth LDAP ##########################
  534. [auth.ldap]
  535. ;enabled = false
  536. ;config_file = /etc/grafana/ldap.toml
  537. ;allow_sign_up = true
  538.  
  539. # LDAP background sync (Enterprise only)
  540. # At 1 am every day
  541. ;sync_cron = "0 0 1 * * *"
  542. ;active_sync_enabled = true
  543.  
  544. #################################### AWS ###########################
  545. [aws]
  546. # Enter a comma-separated list of allowed AWS authentication providers.
  547. # Options are: default (AWS SDK Default), keys (Access && secret key), credentials (Credentials field), ec2_iam_role (EC2 IAM Role)
  548. ; allowed_auth_providers = default,keys,credentials
  549.  
  550. # Allow AWS users to assume a role using temporary security credentials.
  551. # If true, assume role will be enabled for all AWS authentication providers that are specified in aws_auth_providers
  552. ; assume_role_enabled = true
  553.  
  554. #################################### Azure ###############################
  555. [azure]
  556. # Azure cloud environment where Grafana is hosted
  557. # Possible values are AzureCloud, AzureChinaCloud, AzureUSGovernment and AzureGermanCloud
  558. # Default value is AzureCloud (i.e. public cloud)
  559. ;cloud = AzureCloud
  560.  
  561. # Specifies whether Grafana hosted in Azure service with Managed Identity configured (e.g. Azure Virtual Machines instance)
  562. # If enabled, the managed identity can be used for authentication of Grafana in Azure services
  563. # Disabled by default, needs to be explicitly enabled
  564. ;managed_identity_enabled = false
  565.  
  566. # Client ID to use for user-assigned managed identity
  567. # Should be set for user-assigned identity and should be empty for system-assigned identity
  568. ;managed_identity_client_id =
  569.  
  570. #################################### SMTP / Emailing ##########################
  571. [smtp]
  572. ;enabled = false
  573. ;host = localhost:25
  574. ;user =
  575. # If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
  576. ;password =
  577. ;cert_file =
  578. ;key_file =
  579. ;skip_verify = false
  580. ;from_address = [email protected]
  581. ;from_name = Grafana
  582. # EHLO identity in SMTP dialog (defaults to instance_name)
  583. ;ehlo_identity = dashboard.example.com
  584. # SMTP startTLS policy (defaults to 'OpportunisticStartTLS')
  585. ;startTLS_policy = NoStartTLS
  586.  
  587. [emails]
  588. ;welcome_email_on_sign_up = false
  589. ;templates_pattern = emails/*.html, emails/*.txt
  590. ;content_types = text/html
  591.  
  592. #################################### Logging ##########################
  593. [log]
  594. # Either "console", "file", "syslog". Default is console and file
  595. # Use space to separate multiple modes, e.g. "console file"
  596. ;mode = console file
  597.  
  598. # Either "debug", "info", "warn", "error", "critical", default is "info"
  599. ;level = error
  600.  
  601. # optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug
  602. ;filters =
  603.  
  604. # For "console" mode only
  605. [log.console]
  606. ;level =
  607.  
  608. # log line format, valid options are text, console and json
  609. ;format = console
  610.  
  611. # For "file" mode only
  612. [log.file]
  613. ;level =
  614.  
  615. # log line format, valid options are text, console and json
  616. ;format = text
  617.  
  618. # This enables automated log rotate(switch of following options), default is true
  619. ;log_rotate = true
  620.  
  621. # Max line number of single file, default is 1000000
  622. ;max_lines = 1000000
  623.  
  624. # Max size shift of single file, default is 28 means 1 << 28, 256MB
  625. ;max_size_shift = 28
  626.  
  627. # Segment log daily, default is true
  628. ;daily_rotate = true
  629.  
  630. # Expired days of log file(delete after max days), default is 7
  631. ;max_days = 7
  632.  
  633. [log.syslog]
  634. ;level =
  635.  
  636. # log line format, valid options are text, console and json
  637. ;format = text
  638.  
  639. # Syslog network type and address. This can be udp, tcp, or unix. If left blank, the default unix endpoints will be used.
  640. ;network =
  641. ;address =
  642.  
  643. # Syslog facility. user, daemon and local0 through local7 are valid.
  644. ;facility =
  645.  
  646. # Syslog tag. By default, the process' argv[0] is used.
  647. ;tag =
  648.  
  649. [log.frontend]
  650. # Should Sentry javascript agent be initialized
  651. ;enabled = false
  652.  
  653. # Sentry DSN if you want to send events to Sentry.
  654. ;sentry_dsn =
  655.  
  656. # Custom HTTP endpoint to send events captured by the Sentry agent to. Default will log the events to stdout.
  657. ;custom_endpoint = /log
  658.  
  659. # Rate of events to be reported between 0 (none) and 1 (all), float
  660. ;sample_rate = 1.0
  661.  
  662. # Requests per second limit enforced an extended period, for Grafana backend log ingestion endpoint (/log).
  663. ;log_endpoint_requests_per_second_limit = 3
  664.  
  665. # Max requests accepted per short interval of time for Grafana backend log ingestion endpoint (/log).
  666. ;log_endpoint_burst_limit = 15
  667.  
  668. #################################### Usage Quotas ########################
  669. [quota]
  670. ; enabled = false
  671.  
  672. #### set quotas to -1 to make unlimited. ####
  673. # limit number of users per Org.
  674. ; org_user = 10
  675.  
  676. # limit number of dashboards per Org.
  677. ; org_dashboard = 100
  678.  
  679. # limit number of data_sources per Org.
  680. ; org_data_source = 10
  681.  
  682. # limit number of api_keys per Org.
  683. ; org_api_key = 10
  684.  
  685. # limit number of alerts per Org.
  686. ;org_alert_rule = 100
  687.  
  688. # limit number of orgs a user can create.
  689. ; user_org = 10
  690.  
  691. # Global limit of users.
  692. ; global_user = -1
  693.  
  694. # global limit of orgs.
  695. ; global_org = -1
  696.  
  697. # global limit of dashboards
  698. ; global_dashboard = -1
  699.  
  700. # global limit of api_keys
  701. ; global_api_key = -1
  702.  
  703. # global limit on number of logged in users.
  704. ; global_session = -1
  705.  
  706. # global limit of alerts
  707. ;global_alert_rule = -1
  708.  
  709. #################################### Unified Alerting ####################
  710. [unified_alerting]
  711. #Enable the Unified Alerting sub-system and interface. When enabled we'll migrate all of your alert rules and notification channels to the new system. New alert rules will be created and your notification channels will be converted into an Alertmanager configuration. Previous data is preserved to enable backwards compatibility but new data is removed.```
  712. ;enabled = false
  713.  
  714. # Comma-separated list of organization IDs for which to disable unified alerting. Only supported if unified alerting is enabled.
  715. ;disabled_orgs =
  716.  
  717. # Specify the frequency of polling for admin config changes.
  718. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  719. ;admin_config_poll_interval = 60s
  720.  
  721. # Specify the frequency of polling for Alertmanager config changes.
  722. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  723. ;alertmanager_config_poll_interval = 60s
  724.  
  725. # Listen address/hostname and port to receive unified alerting messages for other Grafana instances. The port is used for both TCP and UDP. It is assumed other Grafana instances are also running on the same port. The default value is `0.0.0.0:9094`.
  726. ;ha_listen_address = "0.0.0.0:9094"
  727.  
  728. # Listen address/hostname and port to receive unified alerting messages for other Grafana instances. The port is used for both TCP and UDP. It is assumed other Grafana instances are also running on the same port. The default value is `0.0.0.0:9094`.
  729. ;ha_advertise_address = ""
  730.  
  731. # Comma-separated list of initial instances (in a format of host:port) that will form the HA cluster. Configuring this setting will enable High Availability mode for alerting.
  732. ;ha_peers = ""
  733.  
  734. # Time to wait for an instance to send a notification via the Alertmanager. In HA, each Grafana instance will
  735. # be assigned a position (e.g. 0, 1). We then multiply this position with the timeout to indicate how long should
  736. # each instance wait before sending the notification to take into account replication lag.
  737. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  738. ;ha_peer_timeout = "15s"
  739.  
  740. # The interval between sending gossip messages. By lowering this value (more frequent) gossip messages are propagated
  741. # across cluster more quickly at the expense of increased bandwidth usage.
  742. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  743. ;ha_gossip_interval = "200ms"
  744.  
  745. # The interval between gossip full state syncs. Setting this interval lower (more frequent) will increase convergence speeds
  746. # across larger clusters at the expense of increased bandwidth usage.
  747. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  748. ;ha_push_pull_interval = "60s"
  749.  
  750. # Enable or disable alerting rule execution. The alerting UI remains visible. This option has a legacy version in the `[alerting]` section that takes precedence.
  751. ;execute_alerts = true
  752.  
  753. # Alert evaluation timeout when fetching data from the datasource. This option has a legacy version in the `[alerting]` section that takes precedence.
  754. # The timeout string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  755. ;evaluation_timeout = 30s
  756.  
  757. # Number of times we'll attempt to evaluate an alert rule before giving up on that evaluation. This option has a legacy version in the `[alerting]` section that takes precedence.
  758. ;max_attempts = 3
  759.  
  760. # Minimum interval to enforce between rule evaluations. Rules will be adjusted if they are less than this value or if they are not multiple of the scheduler interval (10s). Higher values can help with resource management as we'll schedule fewer evaluations over time. This option has a legacy version in the `[alerting]` section that takes precedence.
  761. # The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
  762. ;min_interval = 10s
  763.  
  764. #################################### Alerting ############################
  765. [alerting]
  766. # Disable legacy alerting engine & UI features
  767. ;enabled = true
  768.  
  769. # Makes it possible to turn off alert execution but alerting UI is visible
  770. ;execute_alerts = true
  771.  
  772. # Default setting for new alert rules. Defaults to categorize error and timeouts as alerting. (alerting, keep_state)
  773. ;error_or_timeout = alerting
  774.  
  775. # Default setting for how Grafana handles nodata or null values in alerting. (alerting, no_data, keep_state, ok)
  776. ;nodata_or_nullvalues = no_data
  777.  
  778. # Alert notifications can include images, but rendering many images at the same time can overload the server
  779. # This limit will protect the server from render overloading and make sure notifications are sent out quickly
  780. ;concurrent_render_limit = 5
  781.  
  782. # Default setting for alert calculation timeout. Default value is 30
  783. ;evaluation_timeout_seconds = 30
  784.  
  785. # Default setting for alert notification timeout. Default value is 30
  786. ;notification_timeout_seconds = 30
  787.  
  788. # Default setting for max attempts to sending alert notifications. Default value is 3
  789. ;max_attempts = 3
  790.  
  791. # Makes it possible to enforce a minimal interval between evaluations, to reduce load on the backend
  792. ;min_interval_seconds = 1
  793.  
  794. # Configures for how long alert annotations are stored. Default is 0, which keeps them forever.
  795. # This setting should be expressed as a duration. Examples: 6h (hours), 10d (days), 2w (weeks), 1M (month).
  796. ;max_annotation_age =
  797.  
  798. # Configures max number of alert annotations that Grafana stores. Default value is 0, which keeps all alert annotations.
  799. ;max_annotations_to_keep =
  800.  
  801. #################################### Annotations #########################
  802. [annotations]
  803. # Configures the batch size for the annotation clean-up job. This setting is used for dashboard, API, and alert annotations.
  804. ;cleanupjob_batchsize = 100
  805.  
  806. [annotations.dashboard]
  807. # Dashboard annotations means that annotations are associated with the dashboard they are created on.
  808.  
  809. # Configures how long dashboard annotations are stored. Default is 0, which keeps them forever.
  810. # This setting should be expressed as a duration. Examples: 6h (hours), 10d (days), 2w (weeks), 1M (month).
  811. ;max_age =
  812.  
  813. # Configures max number of dashboard annotations that Grafana stores. Default value is 0, which keeps all dashboard annotations.
  814. ;max_annotations_to_keep =
  815.  
  816. [annotations.api]
  817. # API annotations means that the annotations have been created using the API without any
  818. # association with a dashboard.
  819.  
  820. # Configures how long Grafana stores API annotations. Default is 0, which keeps them forever.
  821. # This setting should be expressed as a duration. Examples: 6h (hours), 10d (days), 2w (weeks), 1M (month).
  822. ;max_age =
  823.  
  824. # Configures max number of API annotations that Grafana keeps. Default value is 0, which keeps all API annotations.
  825. ;max_annotations_to_keep =
  826.  
  827. #################################### Explore #############################
  828. [explore]
  829. # Enable the Explore section
  830. ;enabled = true
  831.  
  832. #################################### Internal Grafana Metrics ##########################
  833. # Metrics available at HTTP API Url /metrics
  834. [metrics]
  835. # Disable / Enable internal metrics
  836. ;enabled = true
  837. # Graphite Publish interval
  838. ;interval_seconds = 10
  839. # Disable total stats (stat_totals_*) metrics to be generated
  840. ;disable_total_stats = false
  841.  
  842. #If both are set, basic auth will be required for the metrics endpoint.
  843. ; basic_auth_username =
  844. ; basic_auth_password =
  845.  
  846. # Metrics environment info adds dimensions to the `grafana_environment_info` metric, which
  847. # can expose more information about the Grafana instance.
  848. [metrics.environment_info]
  849. #exampleLabel1 = exampleValue1
  850. #exampleLabel2 = exampleValue2
  851.  
  852. # Send internal metrics to Graphite
  853. [metrics.graphite]
  854. # Enable by setting the address setting (ex localhost:2003)
  855. ;address =
  856. ;prefix = prod.grafana.%(instance_name)s.
  857.  
  858. #################################### Grafana.com integration ##########################
  859. # Url used to import dashboards directly from Grafana.com
  860. [grafana_com]
  861. ;url = https://grafana.com
  862.  
  863. #################################### Distributed tracing ############
  864. [tracing.jaeger]
  865. # Enable by setting the address sending traces to jaeger (ex localhost:6831)
  866. ;address = localhost:6831
  867. # Tag that will always be included in when creating new spans. ex (tag1:value1,tag2:value2)
  868. ;always_included_tag = tag1:value1
  869. # Type specifies the type of the sampler: const, probabilistic, rateLimiting, or remote
  870. ;sampler_type = const
  871. # jaeger samplerconfig param
  872. # for "const" sampler, 0 or 1 for always false/true respectively
  873. # for "probabilistic" sampler, a probability between 0 and 1
  874. # for "rateLimiting" sampler, the number of spans per second
  875. # for "remote" sampler, param is the same as for "probabilistic"
  876. # and indicates the initial sampling rate before the actual one
  877. # is received from the mothership
  878. ;sampler_param = 1
  879. # sampling_server_url is the URL of a sampling manager providing a sampling strategy.
  880. ;sampling_server_url =
  881. # Whether or not to use Zipkin propagation (x-b3- HTTP headers).
  882. ;zipkin_propagation = false
  883. # Setting this to true disables shared RPC spans.
  884. # Not disabling is the most common setting when using Zipkin elsewhere in your infrastructure.
  885. ;disable_shared_zipkin_spans = false
  886.  
  887. #################################### External image storage ##########################
  888. [external_image_storage]
  889. # Used for uploading images to public servers so they can be included in slack/email messages.
  890. # you can choose between (s3, webdav, gcs, azure_blob, local)
  891. ;provider =
  892.  
  893. [external_image_storage.s3]
  894. ;endpoint =
  895. ;path_style_access =
  896. ;bucket =
  897. ;region =
  898. ;path =
  899. ;access_key =
  900. ;secret_key =
  901.  
  902. [external_image_storage.webdav]
  903. ;url =
  904. ;public_url =
  905. ;username =
  906. ;password =
  907.  
  908. [external_image_storage.gcs]
  909. ;key_file =
  910. ;bucket =
  911. ;path =
  912.  
  913. [external_image_storage.azure_blob]
  914. ;account_name =
  915. ;account_key =
  916. ;container_name =
  917.  
  918. [external_image_storage.local]
  919. # does not require any configuration
  920.  
  921. [rendering]
  922. # Options to configure a remote HTTP image rendering service, e.g. using https://github.com/grafana/grafana-image-renderer.
  923. # URL to a remote HTTP image renderer service, e.g. http://localhost:8081/render, will enable Grafana to render panels and dashboards to PNG-images using HTTP requests to an external service.
  924. ;server_url =
  925. # If the remote HTTP image renderer service runs on a different server than the Grafana server you may have to configure this to a URL where Grafana is reachable, e.g. http://grafana.domain/.
  926. ;callback_url =
  927. # Concurrent render request limit affects when the /render HTTP endpoint is used. Rendering many images at the same time can overload the server,
  928. # which this setting can help protect against by only allowing a certain amount of concurrent requests.
  929. ;concurrent_render_request_limit = 30
  930.  
  931. [panels]
  932. # If set to true Grafana will allow script tags in text panels. Not recommended as it enable XSS vulnerabilities.
  933. ;disable_sanitize_html = false
  934.  
  935. [plugins]
  936. ;enable_alpha = false
  937. ;app_tls_skip_verify_insecure = false
  938. # Enter a comma-separated list of plugin identifiers to identify plugins to load even if they are unsigned. Plugins with modified signatures are never loaded.
  939. ;allow_loading_unsigned_plugins =
  940. # Enable or disable installing plugins directly from within Grafana.
  941. ;plugin_admin_enabled = false
  942. ;plugin_admin_external_manage_enabled = false
  943. ;plugin_catalog_url = https://grafana.com/grafana/plugins/
  944.  
  945. #################################### Grafana Live ##########################################
  946. [live]
  947. # max_connections to Grafana Live WebSocket endpoint per Grafana server instance. See Grafana Live docs
  948. # if you are planning to make it higher than default 100 since this can require some OS and infrastructure
  949. # tuning. 0 disables Live, -1 means unlimited connections.
  950. ;max_connections = 100
  951.  
  952. # allowed_origins is a comma-separated list of origins that can establish connection with Grafana Live.
  953. # If not set then origin will be matched over root_url. Supports wildcard symbol "*".
  954. ;allowed_origins =
  955.  
  956. # engine defines an HA (high availability) engine to use for Grafana Live. By default no engine used - in
  957. # this case Live features work only on a single Grafana server. Available options: "redis".
  958. # Setting ha_engine is an EXPERIMENTAL feature.
  959. ;ha_engine =
  960.  
  961. # ha_engine_address sets a connection address for Live HA engine. Depending on engine type address format can differ.
  962. # For now we only support Redis connection address in "host:port" format.
  963. # This option is EXPERIMENTAL.
  964. ;ha_engine_address = "127.0.0.1:6379"
  965.  
  966. #################################### Grafana Image Renderer Plugin ##########################
  967. [plugin.grafana-image-renderer]
  968. # Instruct headless browser instance to use a default timezone when not provided by Grafana, e.g. when rendering panel image of alert.
  969. # See ICU’s metaZones.txt (https://cs.chromium.org/chromium/src/third_party/icu/source/data/misc/metaZones.txt) for a list of supported
  970. # timezone IDs. Fallbacks to TZ environment variable if not set.
  971. ;rendering_timezone =
  972.  
  973. # Instruct headless browser instance to use a default language when not provided by Grafana, e.g. when rendering panel image of alert.
  974. # Please refer to the HTTP header Accept-Language to understand how to format this value, e.g. 'fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5'.
  975. ;rendering_language =
  976.  
  977. # Instruct headless browser instance to use a default device scale factor when not provided by Grafana, e.g. when rendering panel image of alert.
  978. # Default is 1. Using a higher value will produce more detailed images (higher DPI), but will require more disk space to store an image.
  979. ;rendering_viewport_device_scale_factor =
  980.  
  981. # Instruct headless browser instance whether to ignore HTTPS errors during navigation. Per default HTTPS errors are not ignored. Due to
  982. # the security risk it's not recommended to ignore HTTPS errors.
  983. ;rendering_ignore_https_errors =
  984.  
  985. # Instruct headless browser instance whether to capture and log verbose information when rendering an image. Default is false and will
  986. # only capture and log error messages. When enabled, debug messages are captured and logged as well.
  987. # For the verbose information to be included in the Grafana server log you have to adjust the rendering log level to debug, configure
  988. # [log].filter = rendering:debug.
  989. ;rendering_verbose_logging =
  990.  
  991. # Instruct headless browser instance whether to output its debug and error messages into running process of remote rendering service.
  992. # Default is false. This can be useful to enable (true) when troubleshooting.
  993. ;rendering_dumpio =
  994.  
  995. # Additional arguments to pass to the headless browser instance. Default is --no-sandbox. The list of Chromium flags can be found
  996. # here (https://peter.sh/experiments/chromium-command-line-switches/). Multiple arguments is separated with comma-character.
  997. ;rendering_args =
  998.  
  999. # You can configure the plugin to use a different browser binary instead of the pre-packaged version of Chromium.
  1000. # Please note that this is not recommended, since you may encounter problems if the installed version of Chrome/Chromium is not
  1001. # compatible with the plugin.
  1002. ;rendering_chrome_bin =
  1003.  
  1004. # Instruct how headless browser instances are created. Default is 'default' and will create a new browser instance on each request.
  1005. # Mode 'clustered' will make sure that only a maximum of browsers/incognito pages can execute concurrently.
  1006. # Mode 'reusable' will have one browser instance and will create a new incognito page on each request.
  1007. ;rendering_mode =
  1008.  
  1009. # When rendering_mode = clustered you can instruct how many browsers or incognito pages can execute concurrently. Default is 'browser'
  1010. # and will cluster using browser instances.
  1011. # Mode 'context' will cluster using incognito pages.
  1012. ;rendering_clustering_mode =
  1013. # When rendering_mode = clustered you can define maximum number of browser instances/incognito pages that can execute concurrently..
  1014. ;rendering_clustering_max_concurrency =
  1015.  
  1016. # Limit the maximum viewport width, height and device scale factor that can be requested.
  1017. ;rendering_viewport_max_width =
  1018. ;rendering_viewport_max_height =
  1019. ;rendering_viewport_max_device_scale_factor =
  1020.  
  1021. # Change the listening host and port of the gRPC server. Default host is 127.0.0.1 and default port is 0 and will automatically assign
  1022. # a port not in use.
  1023. ;grpc_host =
  1024. ;grpc_port =
  1025.  
  1026. [enterprise]
  1027. # Path to a valid Grafana Enterprise license.jwt file
  1028. ;license_path =
  1029.  
  1030. [feature_toggles]
  1031. # enable features, separated by spaces
  1032. ;enable =
  1033.  
  1034. [date_formats]
  1035. # For information on what formatting patterns that are supported https://momentjs.com/docs/#/displaying/
  1036.  
  1037. # Default system date format used in time range picker and other places where full time is displayed
  1038. ;full_date = YYYY-MM-DD HH:mm:ss
  1039.  
  1040. # Used by graph and other places where we only show small intervals
  1041. ;interval_second = HH:mm:ss
  1042. ;interval_minute = HH:mm
  1043. ;interval_hour = MM/DD HH:mm
  1044. ;interval_day = MM/DD
  1045. ;interval_month = YYYY-MM
  1046. ;interval_year = YYYY
  1047.  
  1048. # Experimental feature
  1049. ;use_browser_locale = false
  1050.  
  1051. # Default timezone for user preferences. Options are 'browser' for the browser local timezone or a timezone name from IANA Time Zone database, e.g. 'UTC' or 'Europe/Amsterdam' etc.
  1052. ;default_timezone = browser
  1053.  
  1054. [expressions]
  1055. # Enable or disable the expressions functionality.
  1056. ;enabled = true
  1057.  
  1058. [geomap]
  1059. # Set the JSON configuration for the default basemap
  1060. ;default_baselayer_config = `{
  1061. ; "type": "xyz",
  1062. ; "config": {
  1063. ; "attribution": "Open street map",
  1064. ; "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png"
  1065. ; }
  1066. ;}`
  1067.  
  1068. # Enable or disable loading other base map layers
  1069. ;enable_custom_baselayers = true
  1070.  
Advertisement
Add Comment
Please, Sign In to add comment