mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
|
|
package telemetrystore
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"go.signoz.io/signoz/pkg/factory"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
// Provider is the provider to use
|
||
|
|
Provider string `mapstructure:"provider"`
|
||
|
|
// Connection is the connection configuration
|
||
|
|
Connection ConnectionConfig `mapstructure:",squash"`
|
||
|
|
// Clickhouse is the clickhouse configuration
|
||
|
|
ClickHouse ClickHouseConfig `mapstructure:"clickhouse"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ConnectionConfig struct {
|
||
|
|
// MaxOpenConns is the maximum number of open connections to the database.
|
||
|
|
MaxOpenConns int `mapstructure:"max_open_conns"`
|
||
|
|
MaxIdleConns int `mapstructure:"max_idle_conns"`
|
||
|
|
DialTimeout time.Duration `mapstructure:"dial_timeout"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ClickHouseQuerySettings struct {
|
||
|
|
MaxExecutionTime int `mapstructure:"max_execution_time"`
|
||
|
|
MaxExecutionTimeLeaf int `mapstructure:"max_execution_time_leaf"`
|
||
|
|
TimeoutBeforeCheckingExecutionSpeed int `mapstructure:"timeout_before_checking_execution_speed"`
|
||
|
|
MaxBytesToRead int `mapstructure:"max_bytes_to_read"`
|
||
|
|
MaxResultRowsForCHQuery int `mapstructure:"max_result_rows_for_ch_query"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ClickHouseConfig struct {
|
||
|
|
DSN string `mapstructure:"dsn"`
|
||
|
|
|
||
|
|
QuerySettings ClickHouseQuerySettings `mapstructure:"settings"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewConfigFactory() factory.ConfigFactory {
|
||
|
|
return factory.NewConfigFactory(factory.MustNewName("telemetrystore"), newConfig)
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
func newConfig() factory.Config {
|
||
|
|
return Config{
|
||
|
|
Provider: "clickhouse",
|
||
|
|
Connection: ConnectionConfig{
|
||
|
|
MaxOpenConns: 100,
|
||
|
|
MaxIdleConns: 50,
|
||
|
|
DialTimeout: 5 * time.Second,
|
||
|
|
},
|
||
|
|
ClickHouse: ClickHouseConfig{
|
||
|
|
DSN: "http://localhost:9000",
|
||
|
|
|
||
|
|
// No default query settings, as default's are set in ch config
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (c Config) Validate() error {
|
||
|
|
return nil
|
||
|
|
}
|