Ansible role which manage Grafana
- Install and configure Grafana
Here is the list of all variables and their default values:
grafana_enabled: yes # The role is enabled
grafana_apt_repository: deb https://packagecloud.io/grafana/stable/debian/ wheezy main
grafana_apt_key: https://packagecloud.io/gpg.key
grafana_version: 2.0.1 # Set version
grafana_app_mode: production
# Paths
grafana_data: /var/lib/grafana
grafana_logs: /var/log/grafana
# Server
grafana_protocol: http
grafana_http_addr: 0.0.0.0 # The ip address to bind to
grafana_http_port: 3000 # The http port to use
grafana_domain: localhost # The public facing domain name used to access grafana from a browser
grafana_root_url: "%(protocol)s://%(domain)s:%(http_port)s/"
grafana_router_logging: no # Log web requests
grafana_static_root_path: public # the path relative working path
grafana_enable_gzip: no # enable gzip
grafana_cert_file: # https certs & key file
grafana_cert_key:
# Database
grafana_type: sqlite3 # Either "mysql", "postgres" or "sqlite3"
grafana_host: 127.0.0.1:3306
grafana_name: grafana
grafana_user: root
grafana_password:
grafana_ssl_mode: disable # For "postgres" only, either "disable", "require" or "verify-full"
grafana_path: grafana.db # For "sqlite3" only, path relative to data_path setting
# Session
grafana_provider: file # Either "memory", "file", "redis", "mysql", default is "memory"
grafana_provider_config: sessions
grafana_cookie_name: grafana_sess # Session cookie name
grafana_cookie_secure: no # If you use session in https only
grafana_session_life_time: 86400 # Session life time, default is 86400
# Analytics
grafana_reporting_enabled: yes # Server reporting, sends usage counters to stats.grafana.org every 24 hours.
grafana_google_analytics_ua_id: # Google Analytics universal tracking code, only enabled if you specify an id here
# Security
grafana_admin_user: admin # Default admin username
grafana_admin_password: admin # Default admin password
grafana_secret_key: ECaamBjja2CChzAp # Used for signing
grafana_login_remember_days: 7
grafana_cookie_username: grafana_user
grafana_cookie_remember_name: grafana_remember
# Users
grafana_allow_sign_up: yes # Disable user signup/registration
grafana_allow_org_create: yes # Allow non admin users to create organizations
grafana_auto_assign_org: yes # Set to true to automatically assign new users to the default organization (id 1)
grafana_auto_assign_org_role: Viewer # Default role new users will be automatically assigned
# Anonymous Auth
grafana_anonymous_enabled: no # Enable Anonymous access
grafana_anonymous_org_name: Main Org. # Specify organization name that should be used for unauthenticated users
grafana_anonymous_org_role: Viewer # Specify role for unauthenticated users
# Github Auth
grafana_github_enabled: no # Enable Github Auth
grafana_github_client_id: some_id
grafana_github_client_secret: some_secret
grafana_github_scopes: user:email
grafana_github_auth_url: https://github.com/login/oauth/authorize
grafana_github_token_url: https://github.com/login/oauth/access_token
grafana_github_api_url: https://api.github.com/user
grafana_github_allowed_domains: mycompany.com othercompany.com
# Logging
grafana_log_mode: console, file
grafana_log_buffer_len: 10000
grafana_log_level: Info
Add Stouts.grafana
to your roles and setup the variables in your playbook file.
Example:
- hosts: all
roles:
- Stouts.grafana
vars:
Licensed under the MIT License. See the LICENSE file for details.
Are welcome!