* feat(backend): renamed ios to mobile * feat(backend): added missing changes to iterator * feat(backend): added missing changes to ender * feat(backend): as usual auto deleted import in ch connector * feat(backend): updated ee/conditions func calls
32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package ender
|
|
|
|
import (
|
|
"openreplay/backend/internal/config/common"
|
|
"openreplay/backend/internal/config/configurator"
|
|
"openreplay/backend/internal/config/redis"
|
|
"openreplay/backend/pkg/logger"
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
common.Config
|
|
common.Postgres
|
|
redis.Redis
|
|
ProjectExpiration time.Duration `env:"PROJECT_EXPIRATION,default=10m"`
|
|
GroupEnder string `env:"GROUP_ENDER,required"`
|
|
LoggerTimeout int `env:"LOG_QUEUE_STATS_INTERVAL_SEC,required"`
|
|
TopicRawWeb string `env:"TOPIC_RAW_WEB,required"`
|
|
TopicRawMobile string `env:"TOPIC_RAW_IOS,required"`
|
|
TopicCanvasImages string `env:"TOPIC_CANVAS_IMAGES,required"`
|
|
TopicRawImages string `env:"TOPIC_RAW_IMAGES,required"`
|
|
ProducerTimeout int `env:"PRODUCER_TIMEOUT,default=2000"`
|
|
PartitionsNumber int `env:"PARTITIONS_NUMBER,required"`
|
|
UseEncryption bool `env:"USE_ENCRYPTION,default=false"`
|
|
UseProfiler bool `env:"PROFILER_ENABLED,default=false"`
|
|
}
|
|
|
|
func New(log logger.Logger) *Config {
|
|
cfg := &Config{}
|
|
configurator.Process(log, cfg)
|
|
return cfg
|
|
}
|