Files
magistrala/tools/mqtt-bench/config.go
T
Dušan Borovčanin 178aa46ad4 SMQ-2533 - Rename Magistrala to SuperMQ (#2560)
Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com>
2024-12-04 11:17:09 +01:00

69 lines
2.1 KiB
Go

// Copyright (c) Abstract Machines
// SPDX-License-Identifier: Apache-2.0
package bench
// Keep struct names exported, otherwise Viper unmarshalling won't work.
type mqttBrokerConfig struct {
URL string `toml:"url" mapstructure:"url"`
}
type mqttMessageConfig struct {
Size int `toml:"size" mapstructure:"size"`
Payload string `toml:"payload" mapstructure:"payload"`
Format string `toml:"format" mapstructure:"format"`
QoS int `toml:"qos" mapstructure:"qos"`
Retain bool `toml:"retain" mapstructure:"retain"`
}
type mqttTLSConfig struct {
MTLS bool `toml:"mtls" mapstructure:"mtls"`
SkipTLSVer bool `toml:"skiptlsver" mapstructure:"skiptlsver"`
CA string `toml:"ca" mapstructure:"ca"`
}
type mqttConfig struct {
Broker mqttBrokerConfig `toml:"broker" mapstructure:"broker"`
Message mqttMessageConfig `toml:"message" mapstructure:"message"`
Timeout int `toml:"timeout" mapstructure:"timeout"`
TLS mqttTLSConfig `toml:"tls" mapstructure:"tls"`
}
type testConfig struct {
Count int `toml:"count" mapstructure:"count"`
Pubs int `toml:"pubs" mapstructure:"pubs"`
Subs int `toml:"subs" mapstructure:"subs"`
}
type logConfig struct {
Quiet bool `toml:"quiet" mapstructure:"quiet"`
}
type smqFile struct {
ConnFile string `toml:"connections_file" mapstructure:"connections_file"`
}
type client struct {
ClientID string `toml:"client_id" mapstructure:"client_id"`
ClientSecret string `toml:"client_secret" mapstructure:"client_secret"`
MTLSCert string `toml:"mtls_cert" mapstructure:"mtls_cert"`
MTLSKey string `toml:"mtls_key" mapstructure:"mtls_key"`
}
type channel struct {
ChannelID string `toml:"channel_id" mapstructure:"channel_id"`
}
type superMQ struct {
Clients []client `toml:"clients" mapstructure:"clients"`
Channels []channel `toml:"channels" mapstructure:"channels"`
}
// Config struct holds benchmark configuration.
type Config struct {
MQTT mqttConfig `toml:"mqtt" mapstructure:"mqtt"`
Test testConfig `toml:"test" mapstructure:"test"`
Log logConfig `toml:"log" mapstructure:"log"`
Smq smqFile `toml:"supermq" mapstructure:"supermq"`
}