Discover Packages
github.com/gunjdesai/kafka-connect-connector-manager
conf
package
Version:
v0.0.0-...-e72100f
Opens a new window with list of versions in this module.
Published: Aug 30, 2023
License: BSD-2-Clause
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type App struct {
Host string `env:"APP_HOST, default=localhost"`
Port string `env:"APP_PORT, default=8080"`
Log struct {
Level string `env:"APP_LOG_LEVEL, default=warn"`
}
}
type BasicAuth struct {
Username string `env:"BASIC_AUTH_USERNAME"`
Password string `env:"BASIC_AUTH_PASSWORD"`
}
type Connect struct {
Url string
}
type Connector struct {
ID int
Name string
TableName string `mapstructure:"table-name"`
Topic string
Type string
KeepSchema bool `mapstructure:"keep-schema"`
KeepTombstones bool `mapstructure:"keep-tombstones"`
}
type Db struct {
Host string `env:"DB_HOST, required=true"`
Port string `env:"DB_PORT, required=true"`
Name string `env:"DB_NAME, required=true"`
Username string `env:"DB_USERNAME, required=true"`
Password string `env:"DB_PASSWORD, required=true"`
}
type Kafka struct {
BootstrapServers string `mapstructure:"bootstrap-servers"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.