summaryrefslogtreecommitdiff
path: root/internal/config/config.go
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2020-06-17 12:59:15 +0100
committerPaul Buetow <pbuetow@mimecast.com>2020-06-17 12:59:15 +0100
commitb7b528277014879e436ae7fe1f3851024938fbd3 (patch)
tree8be1cc0ecf3a25c390c9a7ad97afb5aa52a6c512 /internal/config/config.go
parent4da9ed0f4ded049e28607cc7ea78c8b091ca721b (diff)
initial log monitoring support
Diffstat (limited to 'internal/config/config.go')
-rw-r--r--internal/config/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 7241276..39149bc 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -9,8 +9,8 @@ import (
// ControlUser is used for various DTail specific operations.
const ControlUser string = "DTAIL-CONTROL-USER"
-// ScheduleUser is used for scheduled queries.
-const ScheduleUser string = "DTAIL-SCHEDULE-USER"
+// BackgroundUser is used for non-interactive scheduled queries and log monitoring and such.
+const BackgroundUser string = "DTAIL-BACKGROUND-USER"
// Client holds a DTail client configuration.
var Client *ClientConfig