diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index 0ebc1796..efdf28cc 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -344,6 +344,7 @@ type LogsConfig struct { Timestamps bool `yaml:"timestamps,omitempty"` Since string `yaml:"since,omitempty"` Tail string `yaml:"tail,omitempty"` + Pager string `yaml:"pager,omitempty"` // Configuration for external logs viewer (e.g. "lnav", "less -R") } // GetDefaultConfig returns the application default configuration NOTE (to @@ -383,6 +384,7 @@ func GetDefaultConfig() UserConfig { Timestamps: false, Since: "60m", Tail: "", + Pager: "", }, CommandTemplates: CommandTemplatesConfig{ DockerCompose: "docker compose",