mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 08:16:59 -06:00
76df096791
* basic frontend Sentry integration * backend endpoint to capture sentry events * WIP! * log user email for frontend logs * remove debug logging * lint fixes * Fix type exports & property names Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * additional struct naming fix * rename log endpoint, config section & interface * add sentry sample rate to config * refac to use EchoSrv * log user id * backend tests * tests for SentryEchoBackend * sentry echo backend tests * CustomEndpointTransport tests * Update pkg/api/frontend_logging_test.go Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Update conf/defaults.ini Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Update pkg/api/frontend_logging_test.go Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * don't export unnecesasrily * update go.sum * get rid of Convey in tests, use stdlib * add sentry config to sample.ini * cleanup to set orig logging handler in test * Apply suggestions from code review Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * PR feedback changes * lock sentry version Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
19 lines
529 B
Go
19 lines
529 B
Go
package setting
|
|
|
|
type Sentry struct {
|
|
Enabled bool `json:"enabled"`
|
|
DSN string `json:"dsn"`
|
|
CustomEndpoint string `json:"customEndpoint"`
|
|
SampleRate float64 `json:"sampleRate"`
|
|
}
|
|
|
|
func (cfg *Cfg) readSentryConfig() {
|
|
raw := cfg.Raw.Section("log.frontend")
|
|
cfg.Sentry = Sentry{
|
|
Enabled: raw.Key("enabled").MustBool(true),
|
|
DSN: raw.Key("sentry_dsn").String(),
|
|
CustomEndpoint: raw.Key("custom_endpoint").String(),
|
|
SampleRate: raw.Key("sample_rate").MustFloat64(),
|
|
}
|
|
}
|