setting.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. // Copyright 2014 Unknwon
  2. // Copyright 2014 Torkel Ödegaard
  3. package setting
  4. import (
  5. "bytes"
  6. "fmt"
  7. "net/url"
  8. "os"
  9. "path"
  10. "path/filepath"
  11. "regexp"
  12. "runtime"
  13. "strings"
  14. "gopkg.in/ini.v1"
  15. "github.com/go-macaron/session"
  16. "github.com/grafana/grafana/pkg/log"
  17. "github.com/grafana/grafana/pkg/util"
  18. )
  19. type Scheme string
  20. const (
  21. HTTP Scheme = "http"
  22. HTTPS Scheme = "https"
  23. SOCKET Scheme = "socket"
  24. DEFAULT_HTTP_ADDR string = "0.0.0.0"
  25. )
  26. const (
  27. DEV string = "development"
  28. PROD string = "production"
  29. TEST string = "test"
  30. )
  31. var (
  32. // App settings.
  33. Env = DEV
  34. AppUrl string
  35. AppSubUrl string
  36. InstanceName string
  37. // build
  38. BuildVersion string
  39. BuildCommit string
  40. BuildStamp int64
  41. Enterprise bool
  42. ApplicationName string
  43. // Paths
  44. LogsPath string
  45. HomePath string
  46. DataPath string
  47. PluginsPath string
  48. CustomInitPath = "conf/custom.ini"
  49. // Log settings.
  50. LogModes []string
  51. LogConfigs []util.DynMap
  52. // Http server options
  53. Protocol Scheme
  54. Domain string
  55. HttpAddr, HttpPort string
  56. SshPort int
  57. CertFile, KeyFile string
  58. SocketPath string
  59. RouterLogging bool
  60. DataProxyLogging bool
  61. StaticRootPath string
  62. EnableGzip bool
  63. EnforceDomain bool
  64. // Security settings.
  65. SecretKey string
  66. LogInRememberDays int
  67. CookieUserName string
  68. CookieRememberName string
  69. DisableGravatar bool
  70. EmailCodeValidMinutes int
  71. DataProxyWhiteList map[string]bool
  72. DisableBruteForceLoginProtection bool
  73. // Snapshots
  74. ExternalSnapshotUrl string
  75. ExternalSnapshotName string
  76. ExternalEnabled bool
  77. SnapShotRemoveExpired bool
  78. // Dashboard history
  79. DashboardVersionsToKeep int
  80. // User settings
  81. AllowUserSignUp bool
  82. AllowUserOrgCreate bool
  83. AutoAssignOrg bool
  84. AutoAssignOrgRole string
  85. VerifyEmailEnabled bool
  86. LoginHint string
  87. DefaultTheme string
  88. DisableLoginForm bool
  89. DisableSignoutMenu bool
  90. ExternalUserMngLinkUrl string
  91. ExternalUserMngLinkName string
  92. ExternalUserMngInfo string
  93. ViewersCanEdit bool
  94. // Http auth
  95. AdminUser string
  96. AdminPassword string
  97. AnonymousEnabled bool
  98. AnonymousOrgName string
  99. AnonymousOrgRole string
  100. // Auth proxy settings
  101. AuthProxyEnabled bool
  102. AuthProxyHeaderName string
  103. AuthProxyHeaderProperty string
  104. AuthProxyAutoSignUp bool
  105. AuthProxyLdapSyncTtl int
  106. AuthProxyWhitelist string
  107. AuthProxyHeaders map[string]string
  108. // Basic Auth
  109. BasicAuthEnabled bool
  110. // Plugin settings
  111. PluginAppsSkipVerifyTLS bool
  112. // Session settings.
  113. SessionOptions session.Options
  114. SessionConnMaxLifetime int64
  115. // Global setting objects.
  116. Raw *ini.File
  117. ConfRootPath string
  118. IsWindows bool
  119. // PhantomJs Rendering
  120. ImagesDir string
  121. PhantomDir string
  122. // for logging purposes
  123. configFiles []string
  124. appliedCommandLineProperties []string
  125. appliedEnvOverrides []string
  126. ReportingEnabled bool
  127. CheckForUpdates bool
  128. GoogleAnalyticsId string
  129. GoogleTagManagerId string
  130. // LDAP
  131. LdapEnabled bool
  132. LdapConfigFile string
  133. LdapAllowSignup = true
  134. // QUOTA
  135. Quota QuotaSettings
  136. // Alerting
  137. AlertingEnabled bool
  138. ExecuteAlerts bool
  139. // Explore UI
  140. ExploreEnabled bool
  141. // logger
  142. logger log.Logger
  143. // Grafana.NET URL
  144. GrafanaComUrl string
  145. // S3 temp image store
  146. S3TempImageStoreBucketUrl string
  147. S3TempImageStoreAccessKey string
  148. S3TempImageStoreSecretKey string
  149. ImageUploadProvider string
  150. )
  151. type Cfg struct {
  152. Raw *ini.File
  153. // Paths
  154. ProvisioningPath string
  155. // SMTP email settings
  156. Smtp SmtpSettings
  157. ImagesDir string
  158. DisableBruteForceLoginProtection bool
  159. }
  160. type CommandLineArgs struct {
  161. Config string
  162. HomePath string
  163. Args []string
  164. }
  165. func init() {
  166. IsWindows = runtime.GOOS == "windows"
  167. logger = log.New("settings")
  168. }
  169. func parseAppUrlAndSubUrl(section *ini.Section) (string, string) {
  170. appUrl := section.Key("root_url").MustString("http://localhost:3000/")
  171. if appUrl[len(appUrl)-1] != '/' {
  172. appUrl += "/"
  173. }
  174. // Check if has app suburl.
  175. url, err := url.Parse(appUrl)
  176. if err != nil {
  177. log.Fatal(4, "Invalid root_url(%s): %s", appUrl, err)
  178. }
  179. appSubUrl := strings.TrimSuffix(url.Path, "/")
  180. return appUrl, appSubUrl
  181. }
  182. func ToAbsUrl(relativeUrl string) string {
  183. return AppUrl + relativeUrl
  184. }
  185. func shouldRedactKey(s string) bool {
  186. uppercased := strings.ToUpper(s)
  187. return strings.Contains(uppercased, "PASSWORD") || strings.Contains(uppercased, "SECRET") || strings.Contains(uppercased, "PROVIDER_CONFIG")
  188. }
  189. func shouldRedactURLKey(s string) bool {
  190. uppercased := strings.ToUpper(s)
  191. return strings.Contains(uppercased, "DATABASE_URL")
  192. }
  193. func applyEnvVariableOverrides(file *ini.File) error {
  194. appliedEnvOverrides = make([]string, 0)
  195. for _, section := range file.Sections() {
  196. for _, key := range section.Keys() {
  197. sectionName := strings.ToUpper(strings.Replace(section.Name(), ".", "_", -1))
  198. keyName := strings.ToUpper(strings.Replace(key.Name(), ".", "_", -1))
  199. envKey := fmt.Sprintf("GF_%s_%s", sectionName, keyName)
  200. envValue := os.Getenv(envKey)
  201. if len(envValue) > 0 {
  202. key.SetValue(envValue)
  203. if shouldRedactKey(envKey) {
  204. envValue = "*********"
  205. }
  206. if shouldRedactURLKey(envKey) {
  207. u, err := url.Parse(envValue)
  208. if err != nil {
  209. return fmt.Errorf("could not parse environment variable. key: %s, value: %s. error: %v", envKey, envValue, err)
  210. }
  211. ui := u.User
  212. if ui != nil {
  213. _, exists := ui.Password()
  214. if exists {
  215. u.User = url.UserPassword(ui.Username(), "-redacted-")
  216. envValue = u.String()
  217. }
  218. }
  219. }
  220. appliedEnvOverrides = append(appliedEnvOverrides, fmt.Sprintf("%s=%s", envKey, envValue))
  221. }
  222. }
  223. }
  224. return nil
  225. }
  226. func applyCommandLineDefaultProperties(props map[string]string, file *ini.File) {
  227. appliedCommandLineProperties = make([]string, 0)
  228. for _, section := range file.Sections() {
  229. for _, key := range section.Keys() {
  230. keyString := fmt.Sprintf("default.%s.%s", section.Name(), key.Name())
  231. value, exists := props[keyString]
  232. if exists {
  233. key.SetValue(value)
  234. if shouldRedactKey(keyString) {
  235. value = "*********"
  236. }
  237. appliedCommandLineProperties = append(appliedCommandLineProperties, fmt.Sprintf("%s=%s", keyString, value))
  238. }
  239. }
  240. }
  241. }
  242. func applyCommandLineProperties(props map[string]string, file *ini.File) {
  243. for _, section := range file.Sections() {
  244. sectionName := section.Name() + "."
  245. if section.Name() == ini.DEFAULT_SECTION {
  246. sectionName = ""
  247. }
  248. for _, key := range section.Keys() {
  249. keyString := sectionName + key.Name()
  250. value, exists := props[keyString]
  251. if exists {
  252. appliedCommandLineProperties = append(appliedCommandLineProperties, fmt.Sprintf("%s=%s", keyString, value))
  253. key.SetValue(value)
  254. }
  255. }
  256. }
  257. }
  258. func getCommandLineProperties(args []string) map[string]string {
  259. props := make(map[string]string)
  260. for _, arg := range args {
  261. if !strings.HasPrefix(arg, "cfg:") {
  262. continue
  263. }
  264. trimmed := strings.TrimPrefix(arg, "cfg:")
  265. parts := strings.Split(trimmed, "=")
  266. if len(parts) != 2 {
  267. log.Fatal(3, "Invalid command line argument", arg)
  268. return nil
  269. }
  270. props[parts[0]] = parts[1]
  271. }
  272. return props
  273. }
  274. func makeAbsolute(path string, root string) string {
  275. if filepath.IsAbs(path) {
  276. return path
  277. }
  278. return filepath.Join(root, path)
  279. }
  280. func evalEnvVarExpression(value string) string {
  281. regex := regexp.MustCompile(`\${(\w+)}`)
  282. return regex.ReplaceAllStringFunc(value, func(envVar string) string {
  283. envVar = strings.TrimPrefix(envVar, "${")
  284. envVar = strings.TrimSuffix(envVar, "}")
  285. envValue := os.Getenv(envVar)
  286. // if env variable is hostname and it is empty use os.Hostname as default
  287. if envVar == "HOSTNAME" && envValue == "" {
  288. envValue, _ = os.Hostname()
  289. }
  290. return envValue
  291. })
  292. }
  293. func evalConfigValues(file *ini.File) {
  294. for _, section := range file.Sections() {
  295. for _, key := range section.Keys() {
  296. key.SetValue(evalEnvVarExpression(key.Value()))
  297. }
  298. }
  299. }
  300. func loadSpecifedConfigFile(configFile string, masterFile *ini.File) error {
  301. if configFile == "" {
  302. configFile = filepath.Join(HomePath, CustomInitPath)
  303. // return without error if custom file does not exist
  304. if !pathExists(configFile) {
  305. return nil
  306. }
  307. }
  308. userConfig, err := ini.Load(configFile)
  309. if err != nil {
  310. return fmt.Errorf("Failed to parse %v, %v", configFile, err)
  311. }
  312. userConfig.BlockMode = false
  313. for _, section := range userConfig.Sections() {
  314. for _, key := range section.Keys() {
  315. if key.Value() == "" {
  316. continue
  317. }
  318. defaultSec, err := masterFile.GetSection(section.Name())
  319. if err != nil {
  320. defaultSec, _ = masterFile.NewSection(section.Name())
  321. }
  322. defaultKey, err := defaultSec.GetKey(key.Name())
  323. if err != nil {
  324. defaultKey, _ = defaultSec.NewKey(key.Name(), key.Value())
  325. }
  326. defaultKey.SetValue(key.Value())
  327. }
  328. }
  329. configFiles = append(configFiles, configFile)
  330. return nil
  331. }
  332. func loadConfiguration(args *CommandLineArgs) (*ini.File, error) {
  333. var err error
  334. // load config defaults
  335. defaultConfigFile := path.Join(HomePath, "conf/defaults.ini")
  336. configFiles = append(configFiles, defaultConfigFile)
  337. // check if config file exists
  338. if _, err := os.Stat(defaultConfigFile); os.IsNotExist(err) {
  339. fmt.Println("Grafana-server Init Failed: Could not find config defaults, make sure homepath command line parameter is set or working directory is homepath")
  340. os.Exit(1)
  341. }
  342. // load defaults
  343. parsedFile, err := ini.Load(defaultConfigFile)
  344. if err != nil {
  345. fmt.Println(fmt.Sprintf("Failed to parse defaults.ini, %v", err))
  346. os.Exit(1)
  347. return nil, err
  348. }
  349. parsedFile.BlockMode = false
  350. // command line props
  351. commandLineProps := getCommandLineProperties(args.Args)
  352. // load default overrides
  353. applyCommandLineDefaultProperties(commandLineProps, parsedFile)
  354. // load specified config file
  355. err = loadSpecifedConfigFile(args.Config, parsedFile)
  356. if err != nil {
  357. initLogging(parsedFile)
  358. log.Fatal(3, err.Error())
  359. }
  360. // apply environment overrides
  361. err = applyEnvVariableOverrides(parsedFile)
  362. if err != nil {
  363. return nil, err
  364. }
  365. // apply command line overrides
  366. applyCommandLineProperties(commandLineProps, parsedFile)
  367. // evaluate config values containing environment variables
  368. evalConfigValues(parsedFile)
  369. // update data path and logging config
  370. DataPath = makeAbsolute(parsedFile.Section("paths").Key("data").String(), HomePath)
  371. initLogging(parsedFile)
  372. return parsedFile, err
  373. }
  374. func pathExists(path string) bool {
  375. _, err := os.Stat(path)
  376. if err == nil {
  377. return true
  378. }
  379. if os.IsNotExist(err) {
  380. return false
  381. }
  382. return false
  383. }
  384. func setHomePath(args *CommandLineArgs) {
  385. if args.HomePath != "" {
  386. HomePath = args.HomePath
  387. return
  388. }
  389. HomePath, _ = filepath.Abs(".")
  390. // check if homepath is correct
  391. if pathExists(filepath.Join(HomePath, "conf/defaults.ini")) {
  392. return
  393. }
  394. // try down one path
  395. if pathExists(filepath.Join(HomePath, "../conf/defaults.ini")) {
  396. HomePath = filepath.Join(HomePath, "../")
  397. }
  398. }
  399. var skipStaticRootValidation = false
  400. func validateStaticRootPath() error {
  401. if skipStaticRootValidation {
  402. return nil
  403. }
  404. if _, err := os.Stat(path.Join(StaticRootPath, "build")); err != nil {
  405. logger.Error("Failed to detect generated javascript files in public/build")
  406. }
  407. return nil
  408. }
  409. func NewCfg() *Cfg {
  410. return &Cfg{}
  411. }
  412. func (cfg *Cfg) Load(args *CommandLineArgs) error {
  413. setHomePath(args)
  414. iniFile, err := loadConfiguration(args)
  415. if err != nil {
  416. return err
  417. }
  418. cfg.Raw = iniFile
  419. // Temporary keep global, to make refactor in steps
  420. Raw = cfg.Raw
  421. ApplicationName = "Grafana"
  422. if Enterprise {
  423. ApplicationName += " Enterprise"
  424. }
  425. Env = iniFile.Section("").Key("app_mode").MustString("development")
  426. InstanceName = iniFile.Section("").Key("instance_name").MustString("unknown_instance_name")
  427. PluginsPath = makeAbsolute(iniFile.Section("paths").Key("plugins").String(), HomePath)
  428. cfg.ProvisioningPath = makeAbsolute(iniFile.Section("paths").Key("provisioning").String(), HomePath)
  429. server := iniFile.Section("server")
  430. AppUrl, AppSubUrl = parseAppUrlAndSubUrl(server)
  431. Protocol = HTTP
  432. if server.Key("protocol").MustString("http") == "https" {
  433. Protocol = HTTPS
  434. CertFile = server.Key("cert_file").String()
  435. KeyFile = server.Key("cert_key").String()
  436. }
  437. if server.Key("protocol").MustString("http") == "socket" {
  438. Protocol = SOCKET
  439. SocketPath = server.Key("socket").String()
  440. }
  441. Domain = server.Key("domain").MustString("localhost")
  442. HttpAddr = server.Key("http_addr").MustString(DEFAULT_HTTP_ADDR)
  443. HttpPort = server.Key("http_port").MustString("3000")
  444. RouterLogging = server.Key("router_logging").MustBool(false)
  445. EnableGzip = server.Key("enable_gzip").MustBool(false)
  446. EnforceDomain = server.Key("enforce_domain").MustBool(false)
  447. StaticRootPath = makeAbsolute(server.Key("static_root_path").String(), HomePath)
  448. if err := validateStaticRootPath(); err != nil {
  449. return err
  450. }
  451. // read data proxy settings
  452. dataproxy := iniFile.Section("dataproxy")
  453. DataProxyLogging = dataproxy.Key("logging").MustBool(false)
  454. // read security settings
  455. security := iniFile.Section("security")
  456. SecretKey = security.Key("secret_key").String()
  457. LogInRememberDays = security.Key("login_remember_days").MustInt()
  458. CookieUserName = security.Key("cookie_username").String()
  459. CookieRememberName = security.Key("cookie_remember_name").String()
  460. DisableGravatar = security.Key("disable_gravatar").MustBool(true)
  461. cfg.DisableBruteForceLoginProtection = security.Key("disable_brute_force_login_protection").MustBool(false)
  462. DisableBruteForceLoginProtection = cfg.DisableBruteForceLoginProtection
  463. // read snapshots settings
  464. snapshots := iniFile.Section("snapshots")
  465. ExternalSnapshotUrl = snapshots.Key("external_snapshot_url").String()
  466. ExternalSnapshotName = snapshots.Key("external_snapshot_name").String()
  467. ExternalEnabled = snapshots.Key("external_enabled").MustBool(true)
  468. SnapShotRemoveExpired = snapshots.Key("snapshot_remove_expired").MustBool(true)
  469. // read dashboard settings
  470. dashboards := iniFile.Section("dashboards")
  471. DashboardVersionsToKeep = dashboards.Key("versions_to_keep").MustInt(20)
  472. // read data source proxy white list
  473. DataProxyWhiteList = make(map[string]bool)
  474. for _, hostAndIp := range util.SplitString(security.Key("data_source_proxy_whitelist").String()) {
  475. DataProxyWhiteList[hostAndIp] = true
  476. }
  477. // admin
  478. AdminUser = security.Key("admin_user").String()
  479. AdminPassword = security.Key("admin_password").String()
  480. users := iniFile.Section("users")
  481. AllowUserSignUp = users.Key("allow_sign_up").MustBool(true)
  482. AllowUserOrgCreate = users.Key("allow_org_create").MustBool(true)
  483. AutoAssignOrg = users.Key("auto_assign_org").MustBool(true)
  484. AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Viewer"})
  485. VerifyEmailEnabled = users.Key("verify_email_enabled").MustBool(false)
  486. LoginHint = users.Key("login_hint").String()
  487. DefaultTheme = users.Key("default_theme").String()
  488. ExternalUserMngLinkUrl = users.Key("external_manage_link_url").String()
  489. ExternalUserMngLinkName = users.Key("external_manage_link_name").String()
  490. ExternalUserMngInfo = users.Key("external_manage_info").String()
  491. ViewersCanEdit = users.Key("viewers_can_edit").MustBool(false)
  492. // auth
  493. auth := iniFile.Section("auth")
  494. DisableLoginForm = auth.Key("disable_login_form").MustBool(false)
  495. DisableSignoutMenu = auth.Key("disable_signout_menu").MustBool(false)
  496. // anonymous access
  497. AnonymousEnabled = iniFile.Section("auth.anonymous").Key("enabled").MustBool(false)
  498. AnonymousOrgName = iniFile.Section("auth.anonymous").Key("org_name").String()
  499. AnonymousOrgRole = iniFile.Section("auth.anonymous").Key("org_role").String()
  500. // auth proxy
  501. authProxy := iniFile.Section("auth.proxy")
  502. AuthProxyEnabled = authProxy.Key("enabled").MustBool(false)
  503. AuthProxyHeaderName = authProxy.Key("header_name").String()
  504. AuthProxyHeaderProperty = authProxy.Key("header_property").String()
  505. AuthProxyAutoSignUp = authProxy.Key("auto_sign_up").MustBool(true)
  506. AuthProxyLdapSyncTtl = authProxy.Key("ldap_sync_ttl").MustInt()
  507. AuthProxyWhitelist = authProxy.Key("whitelist").String()
  508. AuthProxyHeaders = make(map[string]string)
  509. for _, propertyAndHeader := range util.SplitString(authProxy.Key("headers").String()) {
  510. split := strings.SplitN(propertyAndHeader, ":", 2)
  511. if len(split) == 2 {
  512. AuthProxyHeaders[split[0]] = split[1]
  513. }
  514. }
  515. // basic auth
  516. authBasic := iniFile.Section("auth.basic")
  517. BasicAuthEnabled = authBasic.Key("enabled").MustBool(true)
  518. // global plugin settings
  519. PluginAppsSkipVerifyTLS = iniFile.Section("plugins").Key("app_tls_skip_verify_insecure").MustBool(false)
  520. // PhantomJS rendering
  521. cfg.ImagesDir = filepath.Join(DataPath, "png")
  522. ImagesDir = cfg.ImagesDir
  523. PhantomDir = filepath.Join(HomePath, "tools/phantomjs")
  524. analytics := iniFile.Section("analytics")
  525. ReportingEnabled = analytics.Key("reporting_enabled").MustBool(true)
  526. CheckForUpdates = analytics.Key("check_for_updates").MustBool(true)
  527. GoogleAnalyticsId = analytics.Key("google_analytics_ua_id").String()
  528. GoogleTagManagerId = analytics.Key("google_tag_manager_id").String()
  529. ldapSec := iniFile.Section("auth.ldap")
  530. LdapEnabled = ldapSec.Key("enabled").MustBool(false)
  531. LdapConfigFile = ldapSec.Key("config_file").String()
  532. LdapAllowSignup = ldapSec.Key("allow_sign_up").MustBool(true)
  533. alerting := iniFile.Section("alerting")
  534. AlertingEnabled = alerting.Key("enabled").MustBool(true)
  535. ExecuteAlerts = alerting.Key("execute_alerts").MustBool(true)
  536. explore := iniFile.Section("explore")
  537. ExploreEnabled = explore.Key("enabled").MustBool(false)
  538. cfg.readSessionConfig()
  539. cfg.readSmtpSettings()
  540. cfg.readQuotaSettings()
  541. if VerifyEmailEnabled && !cfg.Smtp.Enabled {
  542. log.Warn("require_email_validation is enabled but smtp is disabled")
  543. }
  544. // check old key name
  545. GrafanaComUrl = iniFile.Section("grafana_net").Key("url").MustString("")
  546. if GrafanaComUrl == "" {
  547. GrafanaComUrl = iniFile.Section("grafana_com").Key("url").MustString("https://grafana.com")
  548. }
  549. imageUploadingSection := iniFile.Section("external_image_storage")
  550. ImageUploadProvider = imageUploadingSection.Key("provider").MustString("")
  551. return nil
  552. }
  553. func (cfg *Cfg) readSessionConfig() {
  554. sec := cfg.Raw.Section("session")
  555. SessionOptions = session.Options{}
  556. SessionOptions.Provider = sec.Key("provider").In("memory", []string{"memory", "file", "redis", "mysql", "postgres", "memcache"})
  557. SessionOptions.ProviderConfig = strings.Trim(sec.Key("provider_config").String(), "\" ")
  558. SessionOptions.CookieName = sec.Key("cookie_name").MustString("grafana_sess")
  559. SessionOptions.CookiePath = AppSubUrl
  560. SessionOptions.Secure = sec.Key("cookie_secure").MustBool()
  561. SessionOptions.Gclifetime = cfg.Raw.Section("session").Key("gc_interval_time").MustInt64(86400)
  562. SessionOptions.Maxlifetime = cfg.Raw.Section("session").Key("session_life_time").MustInt64(86400)
  563. SessionOptions.IDLength = 16
  564. if SessionOptions.Provider == "file" {
  565. SessionOptions.ProviderConfig = makeAbsolute(SessionOptions.ProviderConfig, DataPath)
  566. os.MkdirAll(path.Dir(SessionOptions.ProviderConfig), os.ModePerm)
  567. }
  568. if SessionOptions.CookiePath == "" {
  569. SessionOptions.CookiePath = "/"
  570. }
  571. SessionConnMaxLifetime = cfg.Raw.Section("session").Key("conn_max_lifetime").MustInt64(14400)
  572. }
  573. func initLogging(file *ini.File) {
  574. // split on comma
  575. LogModes = strings.Split(file.Section("log").Key("mode").MustString("console"), ",")
  576. // also try space
  577. if len(LogModes) == 1 {
  578. LogModes = strings.Split(file.Section("log").Key("mode").MustString("console"), " ")
  579. }
  580. LogsPath = makeAbsolute(file.Section("paths").Key("logs").String(), HomePath)
  581. log.ReadLoggingConfig(LogModes, LogsPath, file)
  582. }
  583. func (cfg *Cfg) LogConfigSources() {
  584. var text bytes.Buffer
  585. for _, file := range configFiles {
  586. logger.Info("Config loaded from", "file", file)
  587. }
  588. if len(appliedCommandLineProperties) > 0 {
  589. for _, prop := range appliedCommandLineProperties {
  590. logger.Info("Config overridden from command line", "arg", prop)
  591. }
  592. }
  593. if len(appliedEnvOverrides) > 0 {
  594. text.WriteString("\tEnvironment variables used:\n")
  595. for _, prop := range appliedEnvOverrides {
  596. logger.Info("Config overridden from Environment variable", "var", prop)
  597. }
  598. }
  599. logger.Info("Path Home", "path", HomePath)
  600. logger.Info("Path Data", "path", DataPath)
  601. logger.Info("Path Logs", "path", LogsPath)
  602. logger.Info("Path Plugins", "path", PluginsPath)
  603. logger.Info("Path Provisioning", "path", cfg.ProvisioningPath)
  604. logger.Info("App mode " + Env)
  605. }