You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

657 lines
22 KiB

  1. package config
  2. import (
  3. "fmt"
  4. "os"
  5. "path/filepath"
  6. "time"
  7. )
  8. const (
  9. // FuzzModeDrop is a mode in which we randomly drop reads/writes, connections or sleep
  10. FuzzModeDrop = iota
  11. // FuzzModeDelay is a mode in which we randomly sleep
  12. FuzzModeDelay
  13. )
  14. // NOTE: Most of the structs & relevant comments + the
  15. // default configuration options were used to manually
  16. // generate the config.toml. Please reflect any changes
  17. // made here in the defaultConfigTemplate constant in
  18. // config/toml.go
  19. // NOTE: tmlibs/cli must know to look in the config dir!
  20. var (
  21. DefaultTendermintDir = ".tendermint"
  22. defaultConfigDir = "config"
  23. defaultDataDir = "data"
  24. defaultConfigFileName = "config.toml"
  25. defaultGenesisJSONName = "genesis.json"
  26. defaultPrivValName = "priv_validator.json"
  27. defaultNodeKeyName = "node_key.json"
  28. defaultAddrBookName = "addrbook.json"
  29. defaultConfigFilePath = filepath.Join(defaultConfigDir, defaultConfigFileName)
  30. defaultGenesisJSONPath = filepath.Join(defaultConfigDir, defaultGenesisJSONName)
  31. defaultPrivValPath = filepath.Join(defaultConfigDir, defaultPrivValName)
  32. defaultNodeKeyPath = filepath.Join(defaultConfigDir, defaultNodeKeyName)
  33. defaultAddrBookPath = filepath.Join(defaultConfigDir, defaultAddrBookName)
  34. )
  35. // Config defines the top level configuration for a Tendermint node
  36. type Config struct {
  37. // Top level options use an anonymous struct
  38. BaseConfig `mapstructure:",squash"`
  39. // Options for services
  40. RPC *RPCConfig `mapstructure:"rpc"`
  41. P2P *P2PConfig `mapstructure:"p2p"`
  42. Mempool *MempoolConfig `mapstructure:"mempool"`
  43. Consensus *ConsensusConfig `mapstructure:"consensus"`
  44. TxIndex *TxIndexConfig `mapstructure:"tx_index"`
  45. Instrumentation *InstrumentationConfig `mapstructure:"instrumentation"`
  46. }
  47. // DefaultConfig returns a default configuration for a Tendermint node
  48. func DefaultConfig() *Config {
  49. return &Config{
  50. BaseConfig: DefaultBaseConfig(),
  51. RPC: DefaultRPCConfig(),
  52. P2P: DefaultP2PConfig(),
  53. Mempool: DefaultMempoolConfig(),
  54. Consensus: DefaultConsensusConfig(),
  55. TxIndex: DefaultTxIndexConfig(),
  56. Instrumentation: DefaultInstrumentationConfig(),
  57. }
  58. }
  59. // TestConfig returns a configuration that can be used for testing
  60. func TestConfig() *Config {
  61. return &Config{
  62. BaseConfig: TestBaseConfig(),
  63. RPC: TestRPCConfig(),
  64. P2P: TestP2PConfig(),
  65. Mempool: TestMempoolConfig(),
  66. Consensus: TestConsensusConfig(),
  67. TxIndex: TestTxIndexConfig(),
  68. Instrumentation: TestInstrumentationConfig(),
  69. }
  70. }
  71. // SetRoot sets the RootDir for all Config structs
  72. func (cfg *Config) SetRoot(root string) *Config {
  73. cfg.BaseConfig.RootDir = root
  74. cfg.RPC.RootDir = root
  75. cfg.P2P.RootDir = root
  76. cfg.Mempool.RootDir = root
  77. cfg.Consensus.RootDir = root
  78. return cfg
  79. }
  80. //-----------------------------------------------------------------------------
  81. // BaseConfig
  82. // BaseConfig defines the base configuration for a Tendermint node
  83. type BaseConfig struct {
  84. // chainID is unexposed and immutable but here for convenience
  85. chainID string
  86. // The root directory for all data.
  87. // This should be set in viper so it can unmarshal into this struct
  88. RootDir string `mapstructure:"home"`
  89. // Path to the JSON file containing the initial validator set and other meta data
  90. Genesis string `mapstructure:"genesis_file"`
  91. // Path to the JSON file containing the private key to use as a validator in the consensus protocol
  92. PrivValidator string `mapstructure:"priv_validator_file"`
  93. // A JSON file containing the private key to use for p2p authenticated encryption
  94. NodeKey string `mapstructure:"node_key_file"`
  95. // A custom human readable name for this node
  96. Moniker string `mapstructure:"moniker"`
  97. // TCP or UNIX socket address for Tendermint to listen on for
  98. // connections from an external PrivValidator process
  99. PrivValidatorListenAddr string `mapstructure:"priv_validator_laddr"`
  100. // TCP or UNIX socket address of the ABCI application,
  101. // or the name of an ABCI application compiled in with the Tendermint binary
  102. ProxyApp string `mapstructure:"proxy_app"`
  103. // Mechanism to connect to the ABCI application: socket | grpc
  104. ABCI string `mapstructure:"abci"`
  105. // Output level for logging
  106. LogLevel string `mapstructure:"log_level"`
  107. // TCP or UNIX socket address for the profiling server to listen on
  108. ProfListenAddress string `mapstructure:"prof_laddr"`
  109. // If this node is many blocks behind the tip of the chain, FastSync
  110. // allows them to catchup quickly by downloading blocks in parallel
  111. // and verifying their commits
  112. FastSync bool `mapstructure:"fast_sync"`
  113. // If true, query the ABCI app on connecting to a new peer
  114. // so the app can decide if we should keep the connection or not
  115. FilterPeers bool `mapstructure:"filter_peers"` // false
  116. // Database backend: leveldb | memdb
  117. DBBackend string `mapstructure:"db_backend"`
  118. // Database directory
  119. DBPath string `mapstructure:"db_dir"`
  120. }
  121. // DefaultBaseConfig returns a default base configuration for a Tendermint node
  122. func DefaultBaseConfig() BaseConfig {
  123. return BaseConfig{
  124. Genesis: defaultGenesisJSONPath,
  125. PrivValidator: defaultPrivValPath,
  126. NodeKey: defaultNodeKeyPath,
  127. Moniker: defaultMoniker,
  128. ProxyApp: "tcp://127.0.0.1:26658",
  129. ABCI: "socket",
  130. LogLevel: DefaultPackageLogLevels(),
  131. ProfListenAddress: "",
  132. FastSync: true,
  133. FilterPeers: false,
  134. DBBackend: "leveldb",
  135. DBPath: "data",
  136. }
  137. }
  138. // TestBaseConfig returns a base configuration for testing a Tendermint node
  139. func TestBaseConfig() BaseConfig {
  140. cfg := DefaultBaseConfig()
  141. cfg.chainID = "tendermint_test"
  142. cfg.ProxyApp = "kvstore"
  143. cfg.FastSync = false
  144. cfg.DBBackend = "memdb"
  145. return cfg
  146. }
  147. func (cfg BaseConfig) ChainID() string {
  148. return cfg.chainID
  149. }
  150. // GenesisFile returns the full path to the genesis.json file
  151. func (cfg BaseConfig) GenesisFile() string {
  152. return rootify(cfg.Genesis, cfg.RootDir)
  153. }
  154. // PrivValidatorFile returns the full path to the priv_validator.json file
  155. func (cfg BaseConfig) PrivValidatorFile() string {
  156. return rootify(cfg.PrivValidator, cfg.RootDir)
  157. }
  158. // NodeKeyFile returns the full path to the node_key.json file
  159. func (cfg BaseConfig) NodeKeyFile() string {
  160. return rootify(cfg.NodeKey, cfg.RootDir)
  161. }
  162. // DBDir returns the full path to the database directory
  163. func (cfg BaseConfig) DBDir() string {
  164. return rootify(cfg.DBPath, cfg.RootDir)
  165. }
  166. // DefaultLogLevel returns a default log level of "error"
  167. func DefaultLogLevel() string {
  168. return "error"
  169. }
  170. // DefaultPackageLogLevels returns a default log level setting so all packages
  171. // log at "error", while the `state` and `main` packages log at "info"
  172. func DefaultPackageLogLevels() string {
  173. return fmt.Sprintf("main:info,state:info,*:%s", DefaultLogLevel())
  174. }
  175. //-----------------------------------------------------------------------------
  176. // RPCConfig
  177. // RPCConfig defines the configuration options for the Tendermint RPC server
  178. type RPCConfig struct {
  179. RootDir string `mapstructure:"home"`
  180. // TCP or UNIX socket address for the RPC server to listen on
  181. ListenAddress string `mapstructure:"laddr"`
  182. // TCP or UNIX socket address for the gRPC server to listen on
  183. // NOTE: This server only supports /broadcast_tx_commit
  184. GRPCListenAddress string `mapstructure:"grpc_laddr"`
  185. // Maximum number of simultaneous connections.
  186. // Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
  187. // If you want to accept more significant number than the default, make sure
  188. // you increase your OS limits.
  189. // 0 - unlimited.
  190. GRPCMaxOpenConnections int `mapstructure:"grpc_max_open_connections"`
  191. // Activate unsafe RPC commands like /dial_persistent_peers and /unsafe_flush_mempool
  192. Unsafe bool `mapstructure:"unsafe"`
  193. // Maximum number of simultaneous connections (including WebSocket).
  194. // Does not include gRPC connections. See grpc_max_open_connections
  195. // If you want to accept more significant number than the default, make sure
  196. // you increase your OS limits.
  197. // 0 - unlimited.
  198. MaxOpenConnections int `mapstructure:"max_open_connections"`
  199. }
  200. // DefaultRPCConfig returns a default configuration for the RPC server
  201. func DefaultRPCConfig() *RPCConfig {
  202. return &RPCConfig{
  203. ListenAddress: "tcp://0.0.0.0:26657",
  204. GRPCListenAddress: "",
  205. GRPCMaxOpenConnections: 900, // no ipv4
  206. Unsafe: false,
  207. // should be < {ulimit -Sn} - {MaxNumPeers} - {N of wal, db and other open files}
  208. // 1024 - 50 - 50 = 924 = ~900
  209. MaxOpenConnections: 900,
  210. }
  211. }
  212. // TestRPCConfig returns a configuration for testing the RPC server
  213. func TestRPCConfig() *RPCConfig {
  214. cfg := DefaultRPCConfig()
  215. cfg.ListenAddress = "tcp://0.0.0.0:36657"
  216. cfg.GRPCListenAddress = "tcp://0.0.0.0:36658"
  217. cfg.Unsafe = true
  218. return cfg
  219. }
  220. //-----------------------------------------------------------------------------
  221. // P2PConfig
  222. // P2PConfig defines the configuration options for the Tendermint peer-to-peer networking layer
  223. type P2PConfig struct {
  224. RootDir string `mapstructure:"home"`
  225. // Address to listen for incoming connections
  226. ListenAddress string `mapstructure:"laddr"`
  227. // Address to advertise to peers for them to dial
  228. ExternalAddress string `mapstructure:"external_address"`
  229. // Comma separated list of seed nodes to connect to
  230. // We only use these if we can’t connect to peers in the addrbook
  231. Seeds string `mapstructure:"seeds"`
  232. // Comma separated list of nodes to keep persistent connections to
  233. // Do not add private peers to this list if you don't want them advertised
  234. PersistentPeers string `mapstructure:"persistent_peers"`
  235. // UPNP port forwarding
  236. UPNP bool `mapstructure:"upnp"`
  237. // Path to address book
  238. AddrBook string `mapstructure:"addr_book_file"`
  239. // Set true for strict address routability rules
  240. AddrBookStrict bool `mapstructure:"addr_book_strict"`
  241. // Maximum number of peers to connect to
  242. MaxNumPeers int `mapstructure:"max_num_peers"`
  243. // Time to wait before flushing messages out on the connection, in ms
  244. FlushThrottleTimeout int `mapstructure:"flush_throttle_timeout"`
  245. // Maximum size of a message packet payload, in bytes
  246. MaxPacketMsgPayloadSize int `mapstructure:"max_packet_msg_payload_size"`
  247. // Rate at which packets can be sent, in bytes/second
  248. SendRate int64 `mapstructure:"send_rate"`
  249. // Rate at which packets can be received, in bytes/second
  250. RecvRate int64 `mapstructure:"recv_rate"`
  251. // Set true to enable the peer-exchange reactor
  252. PexReactor bool `mapstructure:"pex"`
  253. // Seed mode, in which node constantly crawls the network and looks for
  254. // peers. If another node asks it for addresses, it responds and disconnects.
  255. //
  256. // Does not work if the peer-exchange reactor is disabled.
  257. SeedMode bool `mapstructure:"seed_mode"`
  258. // Comma separated list of peer IDs to keep private (will not be gossiped to
  259. // other peers)
  260. PrivatePeerIDs string `mapstructure:"private_peer_ids"`
  261. // Toggle to disable guard against peers connecting from the same ip.
  262. AllowDuplicateIP bool `mapstructure:"allow_duplicate_ip"`
  263. // Peer connection configuration.
  264. HandshakeTimeout time.Duration `mapstructure:"handshake_timeout"`
  265. DialTimeout time.Duration `mapstructure:"dial_timeout"`
  266. // Testing params.
  267. // Force dial to fail
  268. TestDialFail bool `mapstructure:"test_dial_fail"`
  269. // FUzz connection
  270. TestFuzz bool `mapstructure:"test_fuzz"`
  271. TestFuzzConfig *FuzzConnConfig `mapstructure:"test_fuzz_config"`
  272. }
  273. // DefaultP2PConfig returns a default configuration for the peer-to-peer layer
  274. func DefaultP2PConfig() *P2PConfig {
  275. return &P2PConfig{
  276. ListenAddress: "tcp://0.0.0.0:26656",
  277. ExternalAddress: "",
  278. UPNP: false,
  279. AddrBook: defaultAddrBookPath,
  280. AddrBookStrict: true,
  281. MaxNumPeers: 50,
  282. FlushThrottleTimeout: 100,
  283. MaxPacketMsgPayloadSize: 1024, // 1 kB
  284. SendRate: 512000, // 500 kB/s
  285. RecvRate: 512000, // 500 kB/s
  286. PexReactor: true,
  287. SeedMode: false,
  288. AllowDuplicateIP: true, // so non-breaking yet
  289. HandshakeTimeout: 20 * time.Second,
  290. DialTimeout: 3 * time.Second,
  291. TestDialFail: false,
  292. TestFuzz: false,
  293. TestFuzzConfig: DefaultFuzzConnConfig(),
  294. }
  295. }
  296. // TestP2PConfig returns a configuration for testing the peer-to-peer layer
  297. func TestP2PConfig() *P2PConfig {
  298. cfg := DefaultP2PConfig()
  299. cfg.ListenAddress = "tcp://0.0.0.0:36656"
  300. cfg.FlushThrottleTimeout = 10
  301. cfg.AllowDuplicateIP = true
  302. return cfg
  303. }
  304. // AddrBookFile returns the full path to the address book
  305. func (cfg *P2PConfig) AddrBookFile() string {
  306. return rootify(cfg.AddrBook, cfg.RootDir)
  307. }
  308. // FuzzConnConfig is a FuzzedConnection configuration.
  309. type FuzzConnConfig struct {
  310. Mode int
  311. MaxDelay time.Duration
  312. ProbDropRW float64
  313. ProbDropConn float64
  314. ProbSleep float64
  315. }
  316. // DefaultFuzzConnConfig returns the default config.
  317. func DefaultFuzzConnConfig() *FuzzConnConfig {
  318. return &FuzzConnConfig{
  319. Mode: FuzzModeDrop,
  320. MaxDelay: 3 * time.Second,
  321. ProbDropRW: 0.2,
  322. ProbDropConn: 0.00,
  323. ProbSleep: 0.00,
  324. }
  325. }
  326. //-----------------------------------------------------------------------------
  327. // MempoolConfig
  328. // MempoolConfig defines the configuration options for the Tendermint mempool
  329. type MempoolConfig struct {
  330. RootDir string `mapstructure:"home"`
  331. Recheck bool `mapstructure:"recheck"`
  332. RecheckEmpty bool `mapstructure:"recheck_empty"`
  333. Broadcast bool `mapstructure:"broadcast"`
  334. WalPath string `mapstructure:"wal_dir"`
  335. Size int `mapstructure:"size"`
  336. CacheSize int `mapstructure:"cache_size"`
  337. }
  338. // DefaultMempoolConfig returns a default configuration for the Tendermint mempool
  339. func DefaultMempoolConfig() *MempoolConfig {
  340. return &MempoolConfig{
  341. Recheck: true,
  342. RecheckEmpty: true,
  343. Broadcast: true,
  344. WalPath: filepath.Join(defaultDataDir, "mempool.wal"),
  345. Size: 100000,
  346. CacheSize: 100000,
  347. }
  348. }
  349. // TestMempoolConfig returns a configuration for testing the Tendermint mempool
  350. func TestMempoolConfig() *MempoolConfig {
  351. cfg := DefaultMempoolConfig()
  352. cfg.CacheSize = 1000
  353. return cfg
  354. }
  355. // WalDir returns the full path to the mempool's write-ahead log
  356. func (cfg *MempoolConfig) WalDir() string {
  357. return rootify(cfg.WalPath, cfg.RootDir)
  358. }
  359. //-----------------------------------------------------------------------------
  360. // ConsensusConfig
  361. // ConsensusConfig defines the configuration for the Tendermint consensus service,
  362. // including timeouts and details about the WAL and the block structure.
  363. type ConsensusConfig struct {
  364. RootDir string `mapstructure:"home"`
  365. WalPath string `mapstructure:"wal_file"`
  366. walFile string // overrides WalPath if set
  367. // All timeouts are in milliseconds
  368. TimeoutPropose int `mapstructure:"timeout_propose"`
  369. TimeoutProposeDelta int `mapstructure:"timeout_propose_delta"`
  370. TimeoutPrevote int `mapstructure:"timeout_prevote"`
  371. TimeoutPrevoteDelta int `mapstructure:"timeout_prevote_delta"`
  372. TimeoutPrecommit int `mapstructure:"timeout_precommit"`
  373. TimeoutPrecommitDelta int `mapstructure:"timeout_precommit_delta"`
  374. TimeoutCommit int `mapstructure:"timeout_commit"`
  375. // Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  376. SkipTimeoutCommit bool `mapstructure:"skip_timeout_commit"`
  377. // EmptyBlocks mode and possible interval between empty blocks in seconds
  378. CreateEmptyBlocks bool `mapstructure:"create_empty_blocks"`
  379. CreateEmptyBlocksInterval int `mapstructure:"create_empty_blocks_interval"`
  380. // Reactor sleep duration parameters are in milliseconds
  381. PeerGossipSleepDuration int `mapstructure:"peer_gossip_sleep_duration"`
  382. PeerQueryMaj23SleepDuration int `mapstructure:"peer_query_maj23_sleep_duration"`
  383. }
  384. // DefaultConsensusConfig returns a default configuration for the consensus service
  385. func DefaultConsensusConfig() *ConsensusConfig {
  386. return &ConsensusConfig{
  387. WalPath: filepath.Join(defaultDataDir, "cs.wal", "wal"),
  388. TimeoutPropose: 3000,
  389. TimeoutProposeDelta: 500,
  390. TimeoutPrevote: 1000,
  391. TimeoutPrevoteDelta: 500,
  392. TimeoutPrecommit: 1000,
  393. TimeoutPrecommitDelta: 500,
  394. TimeoutCommit: 1000,
  395. SkipTimeoutCommit: false,
  396. CreateEmptyBlocks: true,
  397. CreateEmptyBlocksInterval: 0,
  398. PeerGossipSleepDuration: 100,
  399. PeerQueryMaj23SleepDuration: 2000,
  400. }
  401. }
  402. // TestConsensusConfig returns a configuration for testing the consensus service
  403. func TestConsensusConfig() *ConsensusConfig {
  404. cfg := DefaultConsensusConfig()
  405. cfg.TimeoutPropose = 100
  406. cfg.TimeoutProposeDelta = 1
  407. cfg.TimeoutPrevote = 10
  408. cfg.TimeoutPrevoteDelta = 1
  409. cfg.TimeoutPrecommit = 10
  410. cfg.TimeoutPrecommitDelta = 1
  411. cfg.TimeoutCommit = 10
  412. cfg.SkipTimeoutCommit = true
  413. cfg.PeerGossipSleepDuration = 5
  414. cfg.PeerQueryMaj23SleepDuration = 250
  415. return cfg
  416. }
  417. // WaitForTxs returns true if the consensus should wait for transactions before entering the propose step
  418. func (cfg *ConsensusConfig) WaitForTxs() bool {
  419. return !cfg.CreateEmptyBlocks || cfg.CreateEmptyBlocksInterval > 0
  420. }
  421. // EmptyBlocks returns the amount of time to wait before proposing an empty block or starting the propose timer if there are no txs available
  422. func (cfg *ConsensusConfig) EmptyBlocksInterval() time.Duration {
  423. return time.Duration(cfg.CreateEmptyBlocksInterval) * time.Second
  424. }
  425. // Propose returns the amount of time to wait for a proposal
  426. func (cfg *ConsensusConfig) Propose(round int) time.Duration {
  427. return time.Duration(cfg.TimeoutPropose+cfg.TimeoutProposeDelta*round) * time.Millisecond
  428. }
  429. // Prevote returns the amount of time to wait for straggler votes after receiving any +2/3 prevotes
  430. func (cfg *ConsensusConfig) Prevote(round int) time.Duration {
  431. return time.Duration(cfg.TimeoutPrevote+cfg.TimeoutPrevoteDelta*round) * time.Millisecond
  432. }
  433. // Precommit returns the amount of time to wait for straggler votes after receiving any +2/3 precommits
  434. func (cfg *ConsensusConfig) Precommit(round int) time.Duration {
  435. return time.Duration(cfg.TimeoutPrecommit+cfg.TimeoutPrecommitDelta*round) * time.Millisecond
  436. }
  437. // Commit returns the amount of time to wait for straggler votes after receiving +2/3 precommits for a single block (ie. a commit).
  438. func (cfg *ConsensusConfig) Commit(t time.Time) time.Time {
  439. return t.Add(time.Duration(cfg.TimeoutCommit) * time.Millisecond)
  440. }
  441. // PeerGossipSleep returns the amount of time to sleep if there is nothing to send from the ConsensusReactor
  442. func (cfg *ConsensusConfig) PeerGossipSleep() time.Duration {
  443. return time.Duration(cfg.PeerGossipSleepDuration) * time.Millisecond
  444. }
  445. // PeerQueryMaj23Sleep returns the amount of time to sleep after each VoteSetMaj23Message is sent in the ConsensusReactor
  446. func (cfg *ConsensusConfig) PeerQueryMaj23Sleep() time.Duration {
  447. return time.Duration(cfg.PeerQueryMaj23SleepDuration) * time.Millisecond
  448. }
  449. // WalFile returns the full path to the write-ahead log file
  450. func (cfg *ConsensusConfig) WalFile() string {
  451. if cfg.walFile != "" {
  452. return cfg.walFile
  453. }
  454. return rootify(cfg.WalPath, cfg.RootDir)
  455. }
  456. // SetWalFile sets the path to the write-ahead log file
  457. func (cfg *ConsensusConfig) SetWalFile(walFile string) {
  458. cfg.walFile = walFile
  459. }
  460. //-----------------------------------------------------------------------------
  461. // TxIndexConfig
  462. // TxIndexConfig defines the configuration for the transaction
  463. // indexer, including tags to index.
  464. type TxIndexConfig struct {
  465. // What indexer to use for transactions
  466. //
  467. // Options:
  468. // 1) "null"
  469. // 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
  470. Indexer string `mapstructure:"indexer"`
  471. // Comma-separated list of tags to index (by default the only tag is tx hash)
  472. //
  473. // It's recommended to index only a subset of tags due to possible memory
  474. // bloat. This is, of course, depends on the indexer's DB and the volume of
  475. // transactions.
  476. IndexTags string `mapstructure:"index_tags"`
  477. // When set to true, tells indexer to index all tags. Note this may be not
  478. // desirable (see the comment above). IndexTags has a precedence over
  479. // IndexAllTags (i.e. when given both, IndexTags will be indexed).
  480. IndexAllTags bool `mapstructure:"index_all_tags"`
  481. }
  482. // DefaultTxIndexConfig returns a default configuration for the transaction indexer.
  483. func DefaultTxIndexConfig() *TxIndexConfig {
  484. return &TxIndexConfig{
  485. Indexer: "kv",
  486. IndexTags: "",
  487. IndexAllTags: false,
  488. }
  489. }
  490. // TestTxIndexConfig returns a default configuration for the transaction indexer.
  491. func TestTxIndexConfig() *TxIndexConfig {
  492. return DefaultTxIndexConfig()
  493. }
  494. //-----------------------------------------------------------------------------
  495. // InstrumentationConfig
  496. // InstrumentationConfig defines the configuration for metrics reporting.
  497. type InstrumentationConfig struct {
  498. // When true, Prometheus metrics are served under /metrics on
  499. // PrometheusListenAddr.
  500. // Check out the documentation for the list of available metrics.
  501. Prometheus bool `mapstructure:"prometheus"`
  502. // Address to listen for Prometheus collector(s) connections.
  503. PrometheusListenAddr string `mapstructure:"prometheus_listen_addr"`
  504. // Maximum number of simultaneous connections.
  505. // If you want to accept more significant number than the default, make sure
  506. // you increase your OS limits.
  507. // 0 - unlimited.
  508. MaxOpenConnections int `mapstructure:"max_open_connections"`
  509. }
  510. // DefaultInstrumentationConfig returns a default configuration for metrics
  511. // reporting.
  512. func DefaultInstrumentationConfig() *InstrumentationConfig {
  513. return &InstrumentationConfig{
  514. Prometheus: false,
  515. PrometheusListenAddr: ":26660",
  516. MaxOpenConnections: 3,
  517. }
  518. }
  519. // TestInstrumentationConfig returns a default configuration for metrics
  520. // reporting.
  521. func TestInstrumentationConfig() *InstrumentationConfig {
  522. return DefaultInstrumentationConfig()
  523. }
  524. //-----------------------------------------------------------------------------
  525. // Utils
  526. // helper function to make config creation independent of root dir
  527. func rootify(path, root string) string {
  528. if filepath.IsAbs(path) {
  529. return path
  530. }
  531. return filepath.Join(root, path)
  532. }
  533. //-----------------------------------------------------------------------------
  534. // Moniker
  535. var defaultMoniker = getDefaultMoniker()
  536. // getDefaultMoniker returns a default moniker, which is the host name. If runtime
  537. // fails to get the host name, "anonymous" will be returned.
  538. func getDefaultMoniker() string {
  539. moniker, err := os.Hostname()
  540. if err != nil {
  541. moniker = "anonymous"
  542. }
  543. return moniker
  544. }