Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct {
Level string `mapstructure:"level" json:"level"`
ConfigFile string `mapstructure:"config" json:"config"`
NoHeader bool `mapstructure:"noheader" json:"noheader"`
Transcode struct {
MaxJobs int `mapstructure:"max_jobs" json:"max_jobs"`
ReadPath string `mapstructure:"read_path" json:"read_path"`
WritePath string `mapstructure:"write_path" json:"write_path"`
} `mapstructure:"transcode" json:"transcode"`
Pod struct {
Name string `mapstructure:"name" json:"name"`
} `mapstructure:"pod" json:"pod"`
Mongo struct {
URI string `mapstructure:"uri" json:"uri"`
Database string `mapstructure:"database" json:"database"`
Direct bool `mapstructure:"direct" json:"direct"`
} `mapstructure:"mongo" json:"mongo"`
RMQ struct {
URI string `mapstructure:"uri" json:"uri"`
TranscoderTaskQueue string `mapstructure:"transcoder_task_queue" json:"transcoder_task_queue"`
} `mapstructure:"rmq" json:"rmq"`
Redis struct {
Username string `mapstructure:"username" json:"username"`
Password string `mapstructure:"password" json:"password"`
MasterName string `mapstructure:"master_name" json:"master_name"`
Addresses []string `mapstructure:"addresses" json:"addresses"`
Database int `mapstructure:"database" json:"database"`
Sentinel bool `mapstructure:"sentinel" json:"sentinel"`
} `mapstructure:"redis" json:"redis"`
Monitoring struct {
Enabled bool `mapstructure:"enabled" json:"enabled"`
Bind string `mapstructure:"bind" json:"bind"`
Labels []KeyValue `mapstructure:"labels" json:"labels"`
} `mapstructure:"monitoring" json:"monitoring"`
Health struct {
Enabled bool `mapstructure:"enabled" json:"enabled"`
Bind string `mapstructure:"bind" json:"bind"`
} `mapstructure:"health" json:"health"`
}
Click to show internal directories.
Click to hide internal directories.