Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Name = "cosmos-worker" Version string GitSHA string Timestamp string )
Functions ¶
func IdentityString ¶
func IdentityString() string
IdentityString returns the full app version string
Types ¶
type Config ¶
type Config struct { AppEnv string `json:"app_env" envconfig:"APP_ENV" default:"development"` Address string `json:"address" envconfig:"ADDRESS" default:"0.0.0.0"` Port string `json:"port" envconfig:"PORT" default:"3000"` HTTPPort string `json:"http_port" envconfig:"HTTP_PORT" default:"8087"` CosmosGRPCAddr string `json:"cosmos_grpc_addr" envconfig:"COSMOS_GRPC_ADDR"` ChainID string `json:"chain_id" envconfig:"CHAIN_ID"` Managers string `json:"managers" envconfig:"MANAGERS" default:"127.0.0.1:8085"` ManagerInterval time.Duration `json:"manager_interval" envconfig:"MANAGER_INTERVAL" default:"10s"` Hostname string `json:"hostname" envconfig:"HOSTNAME"` StoreHTTPEndpoints string `json:"store_http_endpoints" envconfig:"STORE_HTTP_ENDPOINTS"` MaximumHeightsToGet float64 `json:"maximum_heights_to_get" envconfig:"MAXIMUM_HEIGHTS_TO_GET" default:"10000"` RequestsPerSecond int64 `json:"requests_per_second" envconfig:"REQUESTS_PER_SECOND" default:"33"` // Rollbar RollbarAccessToken string `json:"rollbar_access_token" envconfig:"ROLLBAR_ACCESS_TOKEN"` RollbarServerRoot string `json:"rollbar_server_root" envconfig:"ROLLBAR_SERVER_ROOT" default:"github.com/figment-networks/cosmos-worker"` HealthCheckInterval time.Duration `json:"health_check_interval" envconfig:"HEALTH_CHECK_INTERVAL" default:"10s"` TimeoutBlockCall time.Duration `json:"timeout_block_call" envconfig:"TIMEOUT_BLOCK_CALL" default:"30s"` TimeoutTransactionCall time.Duration `json:"timeout_transaction_call" envconfig:"TIMEOUT_TRANSACTION_CALL" default:"30s"` }
Config holds the configuration data
Click to show internal directories.
Click to hide internal directories.