| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811 |
- // Copyright 2014 Unknwon
- // Copyright 2014 Torkel Ödegaard
- package setting
- import (
- "bytes"
- "fmt"
- "net/url"
- "os"
- "path"
- "path/filepath"
- "regexp"
- "runtime"
- "strings"
- "time"
- "github.com/go-macaron/session"
- "github.com/grafana/grafana/pkg/log"
- "github.com/grafana/grafana/pkg/util"
- ini "gopkg.in/ini.v1"
- )
- type Scheme string
- const (
- HTTP Scheme = "http"
- HTTPS Scheme = "https"
- SOCKET Scheme = "socket"
- DEFAULT_HTTP_ADDR string = "0.0.0.0"
- )
- const (
- DEV = "development"
- PROD = "production"
- TEST = "test"
- APP_NAME = "Grafana"
- APP_NAME_ENTERPRISE = "Grafana Enterprise"
- )
- var (
- ERR_TEMPLATE_NAME = "error"
- )
- var (
- // App settings.
- Env = DEV
- AppUrl string
- AppSubUrl string
- InstanceName string
- // build
- BuildVersion string
- BuildCommit string
- BuildBranch string
- BuildStamp int64
- IsEnterprise bool
- ApplicationName string
- // packaging
- Packaging = "unknown"
- // Paths
- HomePath string
- PluginsPath string
- CustomInitPath = "conf/custom.ini"
- // Log settings.
- LogConfigs []util.DynMap
- // Http server options
- Protocol Scheme
- Domain string
- HttpAddr, HttpPort string
- SshPort int
- CertFile, KeyFile string
- SocketPath string
- RouterLogging bool
- DataProxyLogging bool
- StaticRootPath string
- EnableGzip bool
- EnforceDomain bool
- // Security settings.
- SecretKey string
- DisableGravatar bool
- EmailCodeValidMinutes int
- DataProxyWhiteList map[string]bool
- DisableBruteForceLoginProtection bool
- // Snapshots
- ExternalSnapshotUrl string
- ExternalSnapshotName string
- ExternalEnabled bool
- SnapShotRemoveExpired bool
- // Dashboard history
- DashboardVersionsToKeep int
- // User settings
- AllowUserSignUp bool
- AllowUserOrgCreate bool
- AutoAssignOrg bool
- AutoAssignOrgId int
- AutoAssignOrgRole string
- VerifyEmailEnabled bool
- LoginHint string
- DefaultTheme string
- DisableLoginForm bool
- DisableSignoutMenu bool
- SignoutRedirectUrl string
- ExternalUserMngLinkUrl string
- ExternalUserMngLinkName string
- ExternalUserMngInfo string
- OAuthAutoLogin bool
- ViewersCanEdit bool
- // Http auth
- AdminUser string
- AdminPassword string
- AnonymousEnabled bool
- AnonymousOrgName string
- AnonymousOrgRole string
- // Auth proxy settings
- AuthProxyEnabled bool
- AuthProxyHeaderName string
- AuthProxyHeaderProperty string
- AuthProxyAutoSignUp bool
- AuthProxyLdapSyncTtl int
- AuthProxyWhitelist string
- AuthProxyHeaders map[string]string
- // Basic Auth
- BasicAuthEnabled bool
- // Plugin settings
- PluginAppsSkipVerifyTLS bool
- // Session settings.
- SessionOptions session.Options
- SessionConnMaxLifetime int64
- // Global setting objects.
- Raw *ini.File
- ConfRootPath string
- IsWindows bool
- // for logging purposes
- configFiles []string
- appliedCommandLineProperties []string
- appliedEnvOverrides []string
- ReportingEnabled bool
- CheckForUpdates bool
- GoogleAnalyticsId string
- GoogleTagManagerId string
- // LDAP
- LdapEnabled bool
- LdapConfigFile string
- LdapAllowSignup = true
- // QUOTA
- Quota QuotaSettings
- // Alerting
- AlertingEnabled bool
- ExecuteAlerts bool
- AlertingRenderLimit int
- AlertingErrorOrTimeout string
- AlertingNoDataOrNullValues string
- // Explore UI
- ExploreEnabled bool
- // logger
- logger log.Logger
- // Grafana.NET URL
- GrafanaComUrl string
- // S3 temp image store
- S3TempImageStoreBucketUrl string
- S3TempImageStoreAccessKey string
- S3TempImageStoreSecretKey string
- ImageUploadProvider string
- )
- // TODO move all global vars to this struct
- type Cfg struct {
- Raw *ini.File
- // HTTP Server Settings
- AppUrl string
- AppSubUrl string
- // Paths
- ProvisioningPath string
- DataPath string
- LogsPath string
- // SMTP email settings
- Smtp SmtpSettings
- // Rendering
- ImagesDir string
- PhantomDir string
- RendererUrl string
- RendererCallbackUrl string
- RendererLimit int
- RendererLimitAlerting int
- DisableBruteForceLoginProtection bool
- TempDataLifetime time.Duration
- MetricsEndpointEnabled bool
- MetricsEndpointBasicAuthUsername string
- MetricsEndpointBasicAuthPassword string
- EnableAlphaPanels bool
- DisableSanitizeHtml bool
- EnterpriseLicensePath string
- LoginCookieName string
- LoginCookieMaxDays int
- LoginCookieRotation int
- LoginDeleteExpiredTokensAfterDays int
- SecurityHTTPSCookies bool
- }
- type CommandLineArgs struct {
- Config string
- HomePath string
- Args []string
- }
- func init() {
- IsWindows = runtime.GOOS == "windows"
- logger = log.New("settings")
- }
- func parseAppUrlAndSubUrl(section *ini.Section) (string, string) {
- appUrl := section.Key("root_url").MustString("http://localhost:3000/")
- if appUrl[len(appUrl)-1] != '/' {
- appUrl += "/"
- }
- // Check if has app suburl.
- url, err := url.Parse(appUrl)
- if err != nil {
- log.Fatal(4, "Invalid root_url(%s): %s", appUrl, err)
- }
- appSubUrl := strings.TrimSuffix(url.Path, "/")
- return appUrl, appSubUrl
- }
- func ToAbsUrl(relativeUrl string) string {
- return AppUrl + relativeUrl
- }
- func shouldRedactKey(s string) bool {
- uppercased := strings.ToUpper(s)
- return strings.Contains(uppercased, "PASSWORD") || strings.Contains(uppercased, "SECRET") || strings.Contains(uppercased, "PROVIDER_CONFIG")
- }
- func shouldRedactURLKey(s string) bool {
- uppercased := strings.ToUpper(s)
- return strings.Contains(uppercased, "DATABASE_URL")
- }
- func applyEnvVariableOverrides(file *ini.File) error {
- appliedEnvOverrides = make([]string, 0)
- for _, section := range file.Sections() {
- for _, key := range section.Keys() {
- sectionName := strings.ToUpper(strings.Replace(section.Name(), ".", "_", -1))
- keyName := strings.ToUpper(strings.Replace(key.Name(), ".", "_", -1))
- envKey := fmt.Sprintf("GF_%s_%s", sectionName, keyName)
- envValue := os.Getenv(envKey)
- if len(envValue) > 0 {
- key.SetValue(envValue)
- if shouldRedactKey(envKey) {
- envValue = "*********"
- }
- if shouldRedactURLKey(envKey) {
- u, err := url.Parse(envValue)
- if err != nil {
- return fmt.Errorf("could not parse environment variable. key: %s, value: %s. error: %v", envKey, envValue, err)
- }
- ui := u.User
- if ui != nil {
- _, exists := ui.Password()
- if exists {
- u.User = url.UserPassword(ui.Username(), "-redacted-")
- envValue = u.String()
- }
- }
- }
- appliedEnvOverrides = append(appliedEnvOverrides, fmt.Sprintf("%s=%s", envKey, envValue))
- }
- }
- }
- return nil
- }
- func applyCommandLineDefaultProperties(props map[string]string, file *ini.File) {
- appliedCommandLineProperties = make([]string, 0)
- for _, section := range file.Sections() {
- for _, key := range section.Keys() {
- keyString := fmt.Sprintf("default.%s.%s", section.Name(), key.Name())
- value, exists := props[keyString]
- if exists {
- key.SetValue(value)
- if shouldRedactKey(keyString) {
- value = "*********"
- }
- appliedCommandLineProperties = append(appliedCommandLineProperties, fmt.Sprintf("%s=%s", keyString, value))
- }
- }
- }
- }
- func applyCommandLineProperties(props map[string]string, file *ini.File) {
- for _, section := range file.Sections() {
- sectionName := section.Name() + "."
- if section.Name() == ini.DEFAULT_SECTION {
- sectionName = ""
- }
- for _, key := range section.Keys() {
- keyString := sectionName + key.Name()
- value, exists := props[keyString]
- if exists {
- appliedCommandLineProperties = append(appliedCommandLineProperties, fmt.Sprintf("%s=%s", keyString, value))
- key.SetValue(value)
- }
- }
- }
- }
- func getCommandLineProperties(args []string) map[string]string {
- props := make(map[string]string)
- for _, arg := range args {
- if !strings.HasPrefix(arg, "cfg:") {
- continue
- }
- trimmed := strings.TrimPrefix(arg, "cfg:")
- parts := strings.Split(trimmed, "=")
- if len(parts) != 2 {
- log.Fatal(3, "Invalid command line argument. argument: %v", arg)
- return nil
- }
- props[parts[0]] = parts[1]
- }
- return props
- }
- func makeAbsolute(path string, root string) string {
- if filepath.IsAbs(path) {
- return path
- }
- return filepath.Join(root, path)
- }
- func evalEnvVarExpression(value string) string {
- regex := regexp.MustCompile(`\${(\w+)}`)
- return regex.ReplaceAllStringFunc(value, func(envVar string) string {
- envVar = strings.TrimPrefix(envVar, "${")
- envVar = strings.TrimSuffix(envVar, "}")
- envValue := os.Getenv(envVar)
- // if env variable is hostname and it is empty use os.Hostname as default
- if envVar == "HOSTNAME" && envValue == "" {
- envValue, _ = os.Hostname()
- }
- return envValue
- })
- }
- func evalConfigValues(file *ini.File) {
- for _, section := range file.Sections() {
- for _, key := range section.Keys() {
- key.SetValue(evalEnvVarExpression(key.Value()))
- }
- }
- }
- func loadSpecifedConfigFile(configFile string, masterFile *ini.File) error {
- if configFile == "" {
- configFile = filepath.Join(HomePath, CustomInitPath)
- // return without error if custom file does not exist
- if !pathExists(configFile) {
- return nil
- }
- }
- userConfig, err := ini.Load(configFile)
- if err != nil {
- return fmt.Errorf("Failed to parse %v, %v", configFile, err)
- }
- userConfig.BlockMode = false
- for _, section := range userConfig.Sections() {
- for _, key := range section.Keys() {
- if key.Value() == "" {
- continue
- }
- defaultSec, err := masterFile.GetSection(section.Name())
- if err != nil {
- defaultSec, _ = masterFile.NewSection(section.Name())
- }
- defaultKey, err := defaultSec.GetKey(key.Name())
- if err != nil {
- defaultKey, _ = defaultSec.NewKey(key.Name(), key.Value())
- }
- defaultKey.SetValue(key.Value())
- }
- }
- configFiles = append(configFiles, configFile)
- return nil
- }
- func (cfg *Cfg) loadConfiguration(args *CommandLineArgs) (*ini.File, error) {
- var err error
- // load config defaults
- defaultConfigFile := path.Join(HomePath, "conf/defaults.ini")
- configFiles = append(configFiles, defaultConfigFile)
- // check if config file exists
- if _, err := os.Stat(defaultConfigFile); os.IsNotExist(err) {
- fmt.Println("Grafana-server Init Failed: Could not find config defaults, make sure homepath command line parameter is set or working directory is homepath")
- os.Exit(1)
- }
- // load defaults
- parsedFile, err := ini.Load(defaultConfigFile)
- if err != nil {
- fmt.Println(fmt.Sprintf("Failed to parse defaults.ini, %v", err))
- os.Exit(1)
- return nil, err
- }
- parsedFile.BlockMode = false
- // command line props
- commandLineProps := getCommandLineProperties(args.Args)
- // load default overrides
- applyCommandLineDefaultProperties(commandLineProps, parsedFile)
- // load specified config file
- err = loadSpecifedConfigFile(args.Config, parsedFile)
- if err != nil {
- cfg.initLogging(parsedFile)
- log.Fatal(3, err.Error())
- }
- // apply environment overrides
- err = applyEnvVariableOverrides(parsedFile)
- if err != nil {
- return nil, err
- }
- // apply command line overrides
- applyCommandLineProperties(commandLineProps, parsedFile)
- // evaluate config values containing environment variables
- evalConfigValues(parsedFile)
- // update data path and logging config
- cfg.DataPath = makeAbsolute(parsedFile.Section("paths").Key("data").String(), HomePath)
- cfg.initLogging(parsedFile)
- return parsedFile, err
- }
- func pathExists(path string) bool {
- _, err := os.Stat(path)
- if err == nil {
- return true
- }
- if os.IsNotExist(err) {
- return false
- }
- return false
- }
- func setHomePath(args *CommandLineArgs) {
- if args.HomePath != "" {
- HomePath = args.HomePath
- return
- }
- HomePath, _ = filepath.Abs(".")
- // check if homepath is correct
- if pathExists(filepath.Join(HomePath, "conf/defaults.ini")) {
- return
- }
- // try down one path
- if pathExists(filepath.Join(HomePath, "../conf/defaults.ini")) {
- HomePath = filepath.Join(HomePath, "../")
- }
- }
- var skipStaticRootValidation = false
- func validateStaticRootPath() error {
- if skipStaticRootValidation {
- return nil
- }
- if _, err := os.Stat(path.Join(StaticRootPath, "build")); err != nil {
- logger.Error("Failed to detect generated javascript files in public/build")
- }
- return nil
- }
- func NewCfg() *Cfg {
- return &Cfg{
- Raw: ini.Empty(),
- }
- }
- func (cfg *Cfg) Load(args *CommandLineArgs) error {
- setHomePath(args)
- iniFile, err := cfg.loadConfiguration(args)
- if err != nil {
- return err
- }
- cfg.Raw = iniFile
- // Temporary keep global, to make refactor in steps
- Raw = cfg.Raw
- ApplicationName = APP_NAME
- if IsEnterprise {
- ApplicationName = APP_NAME_ENTERPRISE
- }
- //login
- login := iniFile.Section("login")
- cfg.LoginCookieName = login.Key("cookie_name").MustString("grafana_session")
- cfg.LoginCookieMaxDays = login.Key("login_remember_days").MustInt(7)
- cfg.LoginDeleteExpiredTokensAfterDays = login.Key("delete_expired_token_after_days").MustInt(30)
- cfg.LoginCookieRotation = login.Key("rotate_token_minutes").MustInt(10)
- if cfg.LoginCookieRotation < 2 {
- cfg.LoginCookieRotation = 2
- }
- Env = iniFile.Section("").Key("app_mode").MustString("development")
- InstanceName = iniFile.Section("").Key("instance_name").MustString("unknown_instance_name")
- PluginsPath = makeAbsolute(iniFile.Section("paths").Key("plugins").String(), HomePath)
- cfg.ProvisioningPath = makeAbsolute(iniFile.Section("paths").Key("provisioning").String(), HomePath)
- server := iniFile.Section("server")
- AppUrl, AppSubUrl = parseAppUrlAndSubUrl(server)
- cfg.AppUrl = AppUrl
- cfg.AppSubUrl = AppSubUrl
- Protocol = HTTP
- if server.Key("protocol").MustString("http") == "https" {
- Protocol = HTTPS
- CertFile = server.Key("cert_file").String()
- KeyFile = server.Key("cert_key").String()
- }
- if server.Key("protocol").MustString("http") == "socket" {
- Protocol = SOCKET
- SocketPath = server.Key("socket").String()
- }
- Domain = server.Key("domain").MustString("localhost")
- HttpAddr = server.Key("http_addr").MustString(DEFAULT_HTTP_ADDR)
- HttpPort = server.Key("http_port").MustString("3000")
- RouterLogging = server.Key("router_logging").MustBool(false)
- EnableGzip = server.Key("enable_gzip").MustBool(false)
- EnforceDomain = server.Key("enforce_domain").MustBool(false)
- StaticRootPath = makeAbsolute(server.Key("static_root_path").String(), HomePath)
- if err := validateStaticRootPath(); err != nil {
- return err
- }
- // read data proxy settings
- dataproxy := iniFile.Section("dataproxy")
- DataProxyLogging = dataproxy.Key("logging").MustBool(false)
- // read security settings
- security := iniFile.Section("security")
- SecretKey = security.Key("secret_key").String()
- DisableGravatar = security.Key("disable_gravatar").MustBool(true)
- cfg.DisableBruteForceLoginProtection = security.Key("disable_brute_force_login_protection").MustBool(false)
- cfg.SecurityHTTPSCookies = security.Key("https_flag_cookies").MustBool(false)
- DisableBruteForceLoginProtection = cfg.DisableBruteForceLoginProtection
- // read snapshots settings
- snapshots := iniFile.Section("snapshots")
- ExternalSnapshotUrl = snapshots.Key("external_snapshot_url").String()
- ExternalSnapshotName = snapshots.Key("external_snapshot_name").String()
- ExternalEnabled = snapshots.Key("external_enabled").MustBool(true)
- SnapShotRemoveExpired = snapshots.Key("snapshot_remove_expired").MustBool(true)
- // read dashboard settings
- dashboards := iniFile.Section("dashboards")
- DashboardVersionsToKeep = dashboards.Key("versions_to_keep").MustInt(20)
- // read data source proxy white list
- DataProxyWhiteList = make(map[string]bool)
- for _, hostAndIp := range util.SplitString(security.Key("data_source_proxy_whitelist").String()) {
- DataProxyWhiteList[hostAndIp] = true
- }
- // admin
- AdminUser = security.Key("admin_user").String()
- AdminPassword = security.Key("admin_password").String()
- users := iniFile.Section("users")
- AllowUserSignUp = users.Key("allow_sign_up").MustBool(true)
- AllowUserOrgCreate = users.Key("allow_org_create").MustBool(true)
- AutoAssignOrg = users.Key("auto_assign_org").MustBool(true)
- AutoAssignOrgId = users.Key("auto_assign_org_id").MustInt(1)
- AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Viewer"})
- VerifyEmailEnabled = users.Key("verify_email_enabled").MustBool(false)
- LoginHint = users.Key("login_hint").String()
- DefaultTheme = users.Key("default_theme").String()
- ExternalUserMngLinkUrl = users.Key("external_manage_link_url").String()
- ExternalUserMngLinkName = users.Key("external_manage_link_name").String()
- ExternalUserMngInfo = users.Key("external_manage_info").String()
- ViewersCanEdit = users.Key("viewers_can_edit").MustBool(false)
- // auth
- auth := iniFile.Section("auth")
- DisableLoginForm = auth.Key("disable_login_form").MustBool(false)
- DisableSignoutMenu = auth.Key("disable_signout_menu").MustBool(false)
- OAuthAutoLogin = auth.Key("oauth_auto_login").MustBool(false)
- SignoutRedirectUrl = auth.Key("signout_redirect_url").String()
- // anonymous access
- AnonymousEnabled = iniFile.Section("auth.anonymous").Key("enabled").MustBool(false)
- AnonymousOrgName = iniFile.Section("auth.anonymous").Key("org_name").String()
- AnonymousOrgRole = iniFile.Section("auth.anonymous").Key("org_role").String()
- // auth proxy
- authProxy := iniFile.Section("auth.proxy")
- AuthProxyEnabled = authProxy.Key("enabled").MustBool(false)
- AuthProxyHeaderName = authProxy.Key("header_name").String()
- AuthProxyHeaderProperty = authProxy.Key("header_property").String()
- AuthProxyAutoSignUp = authProxy.Key("auto_sign_up").MustBool(true)
- AuthProxyLdapSyncTtl = authProxy.Key("ldap_sync_ttl").MustInt()
- AuthProxyWhitelist = authProxy.Key("whitelist").String()
- AuthProxyHeaders = make(map[string]string)
- for _, propertyAndHeader := range util.SplitString(authProxy.Key("headers").String()) {
- split := strings.SplitN(propertyAndHeader, ":", 2)
- if len(split) == 2 {
- AuthProxyHeaders[split[0]] = split[1]
- }
- }
- // basic auth
- authBasic := iniFile.Section("auth.basic")
- BasicAuthEnabled = authBasic.Key("enabled").MustBool(true)
- // global plugin settings
- PluginAppsSkipVerifyTLS = iniFile.Section("plugins").Key("app_tls_skip_verify_insecure").MustBool(false)
- // Rendering
- renderSec := iniFile.Section("rendering")
- cfg.RendererUrl = renderSec.Key("server_url").String()
- cfg.RendererCallbackUrl = renderSec.Key("callback_url").String()
- if cfg.RendererCallbackUrl == "" {
- cfg.RendererCallbackUrl = AppUrl
- } else {
- if cfg.RendererCallbackUrl[len(cfg.RendererCallbackUrl)-1] != '/' {
- cfg.RendererCallbackUrl += "/"
- }
- _, err := url.Parse(cfg.RendererCallbackUrl)
- if err != nil {
- log.Fatal(4, "Invalid callback_url(%s): %s", cfg.RendererCallbackUrl, err)
- }
- }
- cfg.ImagesDir = filepath.Join(cfg.DataPath, "png")
- cfg.PhantomDir = filepath.Join(HomePath, "tools/phantomjs")
- cfg.TempDataLifetime = iniFile.Section("paths").Key("temp_data_lifetime").MustDuration(time.Second * 3600 * 24)
- cfg.MetricsEndpointEnabled = iniFile.Section("metrics").Key("enabled").MustBool(true)
- cfg.MetricsEndpointBasicAuthUsername = iniFile.Section("metrics").Key("basic_auth_username").String()
- cfg.MetricsEndpointBasicAuthPassword = iniFile.Section("metrics").Key("basic_auth_password").String()
- analytics := iniFile.Section("analytics")
- ReportingEnabled = analytics.Key("reporting_enabled").MustBool(true)
- CheckForUpdates = analytics.Key("check_for_updates").MustBool(true)
- GoogleAnalyticsId = analytics.Key("google_analytics_ua_id").String()
- GoogleTagManagerId = analytics.Key("google_tag_manager_id").String()
- ldapSec := iniFile.Section("auth.ldap")
- LdapEnabled = ldapSec.Key("enabled").MustBool(false)
- LdapConfigFile = ldapSec.Key("config_file").String()
- LdapAllowSignup = ldapSec.Key("allow_sign_up").MustBool(true)
- alerting := iniFile.Section("alerting")
- AlertingEnabled = alerting.Key("enabled").MustBool(true)
- ExecuteAlerts = alerting.Key("execute_alerts").MustBool(true)
- AlertingRenderLimit = alerting.Key("concurrent_render_limit").MustInt(5)
- AlertingErrorOrTimeout = alerting.Key("error_or_timeout").MustString("alerting")
- AlertingNoDataOrNullValues = alerting.Key("nodata_or_nullvalues").MustString("no_data")
- explore := iniFile.Section("explore")
- ExploreEnabled = explore.Key("enabled").MustBool(false)
- panels := iniFile.Section("panels")
- cfg.EnableAlphaPanels = panels.Key("enable_alpha").MustBool(false)
- cfg.DisableSanitizeHtml = panels.Key("disable_sanitize_html").MustBool(false)
- cfg.readSessionConfig()
- cfg.readSmtpSettings()
- cfg.readQuotaSettings()
- if VerifyEmailEnabled && !cfg.Smtp.Enabled {
- log.Warn("require_email_validation is enabled but smtp is disabled")
- }
- // check old key name
- GrafanaComUrl = iniFile.Section("grafana_net").Key("url").MustString("")
- if GrafanaComUrl == "" {
- GrafanaComUrl = iniFile.Section("grafana_com").Key("url").MustString("https://grafana.com")
- }
- imageUploadingSection := iniFile.Section("external_image_storage")
- ImageUploadProvider = imageUploadingSection.Key("provider").MustString("")
- enterprise := iniFile.Section("enterprise")
- cfg.EnterpriseLicensePath = enterprise.Key("license_path").MustString(filepath.Join(cfg.DataPath, "license.jwt"))
- return nil
- }
- func (cfg *Cfg) readSessionConfig() {
- sec := cfg.Raw.Section("session")
- SessionOptions = session.Options{}
- SessionOptions.Provider = sec.Key("provider").In("memory", []string{"memory", "file", "redis", "mysql", "postgres", "memcache"})
- SessionOptions.ProviderConfig = strings.Trim(sec.Key("provider_config").String(), "\" ")
- SessionOptions.CookieName = sec.Key("cookie_name").MustString("grafana_sess")
- SessionOptions.CookiePath = AppSubUrl
- SessionOptions.Secure = sec.Key("cookie_secure").MustBool()
- SessionOptions.Gclifetime = cfg.Raw.Section("session").Key("gc_interval_time").MustInt64(86400)
- SessionOptions.Maxlifetime = cfg.Raw.Section("session").Key("session_life_time").MustInt64(86400)
- SessionOptions.IDLength = 16
- if SessionOptions.Provider == "file" {
- SessionOptions.ProviderConfig = makeAbsolute(SessionOptions.ProviderConfig, cfg.DataPath)
- os.MkdirAll(path.Dir(SessionOptions.ProviderConfig), os.ModePerm)
- }
- if SessionOptions.CookiePath == "" {
- SessionOptions.CookiePath = "/"
- }
- SessionConnMaxLifetime = cfg.Raw.Section("session").Key("conn_max_lifetime").MustInt64(14400)
- }
- func (cfg *Cfg) initLogging(file *ini.File) {
- // split on comma
- logModes := strings.Split(file.Section("log").Key("mode").MustString("console"), ",")
- // also try space
- if len(logModes) == 1 {
- logModes = strings.Split(file.Section("log").Key("mode").MustString("console"), " ")
- }
- cfg.LogsPath = makeAbsolute(file.Section("paths").Key("logs").String(), HomePath)
- log.ReadLoggingConfig(logModes, cfg.LogsPath, file)
- }
- func (cfg *Cfg) LogConfigSources() {
- var text bytes.Buffer
- for _, file := range configFiles {
- logger.Info("Config loaded from", "file", file)
- }
- if len(appliedCommandLineProperties) > 0 {
- for _, prop := range appliedCommandLineProperties {
- logger.Info("Config overridden from command line", "arg", prop)
- }
- }
- if len(appliedEnvOverrides) > 0 {
- text.WriteString("\tEnvironment variables used:\n")
- for _, prop := range appliedEnvOverrides {
- logger.Info("Config overridden from Environment variable", "var", prop)
- }
- }
- logger.Info("Path Home", "path", HomePath)
- logger.Info("Path Data", "path", cfg.DataPath)
- logger.Info("Path Logs", "path", cfg.LogsPath)
- logger.Info("Path Plugins", "path", PluginsPath)
- logger.Info("Path Provisioning", "path", cfg.ProvisioningPath)
- logger.Info("App mode " + Env)
- }
|