Commit 269d1630 by Ricky Niemi

Rename to audit logging to data proxy logging

parent 0fee7c86
......@@ -47,8 +47,8 @@ root_url = %(protocol)s://%(domain)s:%(http_port)s/
# Log web requests
router_logging = false
# This enables query request audit logging, output at warn level, default is false
audit_logging = false
# This enables data proxy logging, default is false
data_proxy_logging = false
# the path relative working path
static_root_path = public
......
......@@ -50,7 +50,7 @@
;router_logging = false
# This enables query request audit logging, output at warn level, default is false
audit_logging = false
;data_proxy_logging = false
# the path relative working path
;static_root_path = public
......
......@@ -143,7 +143,7 @@ with Grafana admin permission.
"protocol":"http",
"root_url":"%(protocol)s://%(domain)s:%(http_port)s/",
"router_logging":"true",
"audit_logging":"true",
"data_proxy_logging":"true",
"static_root_path":"public"
},
"session":{
......
......@@ -125,15 +125,15 @@ func ProxyDataSourceRequest(c *middleware.Context) {
return
}
auditLog(ds.Type, c)
proxyLog(ds.Type, c)
proxy.ServeHTTP(c.Resp, c.Req.Request)
c.Resp.Header().Del("Set-Cookie")
}
func auditLog(dataSourceType string, c *middleware.Context) {
if setting.AuditLogging {
auditLogger := log.New("data-proxy-audit", "userid", c.UserId, "orgid", c.OrgId, "username", c.Login)
func proxyLog(dataSourceType string, c *middleware.Context) {
if setting.DataProxyLogging {
auditLogger := log.New("data-proxy-log", "userid", c.UserId, "orgid", c.OrgId, "username", c.Login)
var body string
if c.Req.Request.Body != nil {
......@@ -142,6 +142,6 @@ func auditLog(dataSourceType string, c *middleware.Context) {
body = string(buffer)
}
auditLogger.Warn("Proxying incoming request", "datasource", dataSourceType, "uri", c.Req.RequestURI, "method", c.Req.Request.Method, "body", body)
auditLogger.Info("Proxying incoming request", "datasource", dataSourceType, "uri", c.Req.RequestURI, "method", c.Req.Request.Method, "body", body)
}
}
......@@ -65,7 +65,7 @@ var (
SshPort int
CertFile, KeyFile string
RouterLogging bool
AuditLogging bool
DataProxyLogging bool
StaticRootPath string
EnableGzip bool
EnforceDomain bool
......@@ -491,7 +491,7 @@ func NewConfigContext(args *CommandLineArgs) error {
HttpAddr = server.Key("http_addr").MustString(DEFAULT_HTTP_ADDR)
HttpPort = server.Key("http_port").MustString("3000")
RouterLogging = server.Key("router_logging").MustBool(false)
AuditLogging = server.Key("audit_logging").MustBool(false)
DataProxyLogging = server.Key("data_proxy_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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment