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.

653 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. // Comma separated list of seed nodes to connect to
  228. // We only use these if we can’t connect to peers in the addrbook
  229. Seeds string `mapstructure:"seeds"`
  230. // Comma separated list of nodes to keep persistent connections to
  231. // Do not add private peers to this list if you don't want them advertised
  232. PersistentPeers string `mapstructure:"persistent_peers"`
  233. // Skip UPNP port forwarding
  234. SkipUPNP bool `mapstructure:"skip_upnp"`
  235. // Path to address book
  236. AddrBook string `mapstructure:"addr_book_file"`
  237. // Set true for strict address routability rules
  238. AddrBookStrict bool `mapstructure:"addr_book_strict"`
  239. // Maximum number of peers to connect to
  240. MaxNumPeers int `mapstructure:"max_num_peers"`
  241. // Time to wait before flushing messages out on the connection, in ms
  242. FlushThrottleTimeout int `mapstructure:"flush_throttle_timeout"`
  243. // Maximum size of a message packet, in bytes
  244. // Includes a header, which is ~13 bytes
  245. MaxPacketMsgSize int `mapstructure:"max_packet_msg_size"`
  246. // Rate at which packets can be sent, in bytes/second
  247. SendRate int64 `mapstructure:"send_rate"`
  248. // Rate at which packets can be received, in bytes/second
  249. RecvRate int64 `mapstructure:"recv_rate"`
  250. // Set true to enable the peer-exchange reactor
  251. PexReactor bool `mapstructure:"pex"`
  252. // Seed mode, in which node constantly crawls the network and looks for
  253. // peers. If another node asks it for addresses, it responds and disconnects.
  254. //
  255. // Does not work if the peer-exchange reactor is disabled.
  256. SeedMode bool `mapstructure:"seed_mode"`
  257. // Comma separated list of peer IDs to keep private (will not be gossiped to
  258. // other peers)
  259. PrivatePeerIDs string `mapstructure:"private_peer_ids"`
  260. // Toggle to disable guard against peers connecting from the same ip.
  261. AllowDuplicateIP bool `mapstructure:"allow_duplicate_ip"`
  262. // Peer connection configuration.
  263. HandshakeTimeout time.Duration `mapstructure:"handshake_timeout"`
  264. DialTimeout time.Duration `mapstructure:"dial_timeout"`
  265. // Testing params.
  266. // Force dial to fail
  267. TestDialFail bool `mapstructure:"test_dial_fail"`
  268. // FUzz connection
  269. TestFuzz bool `mapstructure:"test_fuzz"`
  270. TestFuzzConfig *FuzzConnConfig `mapstructure:"test_fuzz_config"`
  271. }
  272. // DefaultP2PConfig returns a default configuration for the peer-to-peer layer
  273. func DefaultP2PConfig() *P2PConfig {
  274. return &P2PConfig{
  275. ListenAddress: "tcp://0.0.0.0:26656",
  276. AddrBook: defaultAddrBookPath,
  277. AddrBookStrict: true,
  278. MaxNumPeers: 50,
  279. FlushThrottleTimeout: 100,
  280. MaxPacketMsgSize: 1024, // 1 kB
  281. SendRate: 512000, // 500 kB/s
  282. RecvRate: 512000, // 500 kB/s
  283. PexReactor: true,
  284. SeedMode: false,
  285. AllowDuplicateIP: true, // so non-breaking yet
  286. HandshakeTimeout: 20 * time.Second,
  287. DialTimeout: 3 * time.Second,
  288. TestDialFail: false,
  289. TestFuzz: false,
  290. TestFuzzConfig: DefaultFuzzConnConfig(),
  291. }
  292. }
  293. // TestP2PConfig returns a configuration for testing the peer-to-peer layer
  294. func TestP2PConfig() *P2PConfig {
  295. cfg := DefaultP2PConfig()
  296. cfg.ListenAddress = "tcp://0.0.0.0:36656"
  297. cfg.SkipUPNP = true
  298. cfg.FlushThrottleTimeout = 10
  299. cfg.AllowDuplicateIP = true
  300. return cfg
  301. }
  302. // AddrBookFile returns the full path to the address book
  303. func (cfg *P2PConfig) AddrBookFile() string {
  304. return rootify(cfg.AddrBook, cfg.RootDir)
  305. }
  306. // FuzzConnConfig is a FuzzedConnection configuration.
  307. type FuzzConnConfig struct {
  308. Mode int
  309. MaxDelay time.Duration
  310. ProbDropRW float64
  311. ProbDropConn float64
  312. ProbSleep float64
  313. }
  314. // DefaultFuzzConnConfig returns the default config.
  315. func DefaultFuzzConnConfig() *FuzzConnConfig {
  316. return &FuzzConnConfig{
  317. Mode: FuzzModeDrop,
  318. MaxDelay: 3 * time.Second,
  319. ProbDropRW: 0.2,
  320. ProbDropConn: 0.00,
  321. ProbSleep: 0.00,
  322. }
  323. }
  324. //-----------------------------------------------------------------------------
  325. // MempoolConfig
  326. // MempoolConfig defines the configuration options for the Tendermint mempool
  327. type MempoolConfig struct {
  328. RootDir string `mapstructure:"home"`
  329. Recheck bool `mapstructure:"recheck"`
  330. RecheckEmpty bool `mapstructure:"recheck_empty"`
  331. Broadcast bool `mapstructure:"broadcast"`
  332. WalPath string `mapstructure:"wal_dir"`
  333. Size int `mapstructure:"size"`
  334. CacheSize int `mapstructure:"cache_size"`
  335. }
  336. // DefaultMempoolConfig returns a default configuration for the Tendermint mempool
  337. func DefaultMempoolConfig() *MempoolConfig {
  338. return &MempoolConfig{
  339. Recheck: true,
  340. RecheckEmpty: true,
  341. Broadcast: true,
  342. WalPath: filepath.Join(defaultDataDir, "mempool.wal"),
  343. Size: 100000,
  344. CacheSize: 100000,
  345. }
  346. }
  347. // TestMempoolConfig returns a configuration for testing the Tendermint mempool
  348. func TestMempoolConfig() *MempoolConfig {
  349. cfg := DefaultMempoolConfig()
  350. cfg.CacheSize = 1000
  351. return cfg
  352. }
  353. // WalDir returns the full path to the mempool's write-ahead log
  354. func (cfg *MempoolConfig) WalDir() string {
  355. return rootify(cfg.WalPath, cfg.RootDir)
  356. }
  357. //-----------------------------------------------------------------------------
  358. // ConsensusConfig
  359. // ConsensusConfig defines the configuration for the Tendermint consensus service,
  360. // including timeouts and details about the WAL and the block structure.
  361. type ConsensusConfig struct {
  362. RootDir string `mapstructure:"home"`
  363. WalPath string `mapstructure:"wal_file"`
  364. walFile string // overrides WalPath if set
  365. // All timeouts are in milliseconds
  366. TimeoutPropose int `mapstructure:"timeout_propose"`
  367. TimeoutProposeDelta int `mapstructure:"timeout_propose_delta"`
  368. TimeoutPrevote int `mapstructure:"timeout_prevote"`
  369. TimeoutPrevoteDelta int `mapstructure:"timeout_prevote_delta"`
  370. TimeoutPrecommit int `mapstructure:"timeout_precommit"`
  371. TimeoutPrecommitDelta int `mapstructure:"timeout_precommit_delta"`
  372. TimeoutCommit int `mapstructure:"timeout_commit"`
  373. // Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  374. SkipTimeoutCommit bool `mapstructure:"skip_timeout_commit"`
  375. // BlockSize
  376. MaxBlockSizeTxs int `mapstructure:"max_block_size_txs"`
  377. MaxBlockSizeBytes int `mapstructure:"max_block_size_bytes"`
  378. // EmptyBlocks mode and possible interval between empty blocks in seconds
  379. CreateEmptyBlocks bool `mapstructure:"create_empty_blocks"`
  380. CreateEmptyBlocksInterval int `mapstructure:"create_empty_blocks_interval"`
  381. // Reactor sleep duration parameters are in milliseconds
  382. PeerGossipSleepDuration int `mapstructure:"peer_gossip_sleep_duration"`
  383. PeerQueryMaj23SleepDuration int `mapstructure:"peer_query_maj23_sleep_duration"`
  384. }
  385. // DefaultConsensusConfig returns a default configuration for the consensus service
  386. func DefaultConsensusConfig() *ConsensusConfig {
  387. return &ConsensusConfig{
  388. WalPath: filepath.Join(defaultDataDir, "cs.wal", "wal"),
  389. TimeoutPropose: 3000,
  390. TimeoutProposeDelta: 500,
  391. TimeoutPrevote: 1000,
  392. TimeoutPrevoteDelta: 500,
  393. TimeoutPrecommit: 1000,
  394. TimeoutPrecommitDelta: 500,
  395. TimeoutCommit: 1000,
  396. SkipTimeoutCommit: false,
  397. MaxBlockSizeTxs: 10000,
  398. MaxBlockSizeBytes: 1, // TODO
  399. CreateEmptyBlocks: true,
  400. CreateEmptyBlocksInterval: 0,
  401. PeerGossipSleepDuration: 100,
  402. PeerQueryMaj23SleepDuration: 2000,
  403. }
  404. }
  405. // TestConsensusConfig returns a configuration for testing the consensus service
  406. func TestConsensusConfig() *ConsensusConfig {
  407. cfg := DefaultConsensusConfig()
  408. cfg.TimeoutPropose = 100
  409. cfg.TimeoutProposeDelta = 1
  410. cfg.TimeoutPrevote = 10
  411. cfg.TimeoutPrevoteDelta = 1
  412. cfg.TimeoutPrecommit = 10
  413. cfg.TimeoutPrecommitDelta = 1
  414. cfg.TimeoutCommit = 10
  415. cfg.SkipTimeoutCommit = true
  416. cfg.PeerGossipSleepDuration = 5
  417. cfg.PeerQueryMaj23SleepDuration = 250
  418. return cfg
  419. }
  420. // WaitForTxs returns true if the consensus should wait for transactions before entering the propose step
  421. func (cfg *ConsensusConfig) WaitForTxs() bool {
  422. return !cfg.CreateEmptyBlocks || cfg.CreateEmptyBlocksInterval > 0
  423. }
  424. // EmptyBlocks returns the amount of time to wait before proposing an empty block or starting the propose timer if there are no txs available
  425. func (cfg *ConsensusConfig) EmptyBlocksInterval() time.Duration {
  426. return time.Duration(cfg.CreateEmptyBlocksInterval) * time.Second
  427. }
  428. // Propose returns the amount of time to wait for a proposal
  429. func (cfg *ConsensusConfig) Propose(round int) time.Duration {
  430. return time.Duration(cfg.TimeoutPropose+cfg.TimeoutProposeDelta*round) * time.Millisecond
  431. }
  432. // Prevote returns the amount of time to wait for straggler votes after receiving any +2/3 prevotes
  433. func (cfg *ConsensusConfig) Prevote(round int) time.Duration {
  434. return time.Duration(cfg.TimeoutPrevote+cfg.TimeoutPrevoteDelta*round) * time.Millisecond
  435. }
  436. // Precommit returns the amount of time to wait for straggler votes after receiving any +2/3 precommits
  437. func (cfg *ConsensusConfig) Precommit(round int) time.Duration {
  438. return time.Duration(cfg.TimeoutPrecommit+cfg.TimeoutPrecommitDelta*round) * time.Millisecond
  439. }
  440. // Commit returns the amount of time to wait for straggler votes after receiving +2/3 precommits for a single block (ie. a commit).
  441. func (cfg *ConsensusConfig) Commit(t time.Time) time.Time {
  442. return t.Add(time.Duration(cfg.TimeoutCommit) * time.Millisecond)
  443. }
  444. // PeerGossipSleep returns the amount of time to sleep if there is nothing to send from the ConsensusReactor
  445. func (cfg *ConsensusConfig) PeerGossipSleep() time.Duration {
  446. return time.Duration(cfg.PeerGossipSleepDuration) * time.Millisecond
  447. }
  448. // PeerQueryMaj23Sleep returns the amount of time to sleep after each VoteSetMaj23Message is sent in the ConsensusReactor
  449. func (cfg *ConsensusConfig) PeerQueryMaj23Sleep() time.Duration {
  450. return time.Duration(cfg.PeerQueryMaj23SleepDuration) * time.Millisecond
  451. }
  452. // WalFile returns the full path to the write-ahead log file
  453. func (cfg *ConsensusConfig) WalFile() string {
  454. if cfg.walFile != "" {
  455. return cfg.walFile
  456. }
  457. return rootify(cfg.WalPath, cfg.RootDir)
  458. }
  459. // SetWalFile sets the path to the write-ahead log file
  460. func (cfg *ConsensusConfig) SetWalFile(walFile string) {
  461. cfg.walFile = walFile
  462. }
  463. //-----------------------------------------------------------------------------
  464. // TxIndexConfig
  465. // TxIndexConfig defines the configuration for the transaction
  466. // indexer, including tags to index.
  467. type TxIndexConfig struct {
  468. // What indexer to use for transactions
  469. //
  470. // Options:
  471. // 1) "null"
  472. // 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
  473. Indexer string `mapstructure:"indexer"`
  474. // Comma-separated list of tags to index (by default the only tag is tx hash)
  475. //
  476. // It's recommended to index only a subset of tags due to possible memory
  477. // bloat. This is, of course, depends on the indexer's DB and the volume of
  478. // transactions.
  479. IndexTags string `mapstructure:"index_tags"`
  480. // When set to true, tells indexer to index all tags. Note this may be not
  481. // desirable (see the comment above). IndexTags has a precedence over
  482. // IndexAllTags (i.e. when given both, IndexTags will be indexed).
  483. IndexAllTags bool `mapstructure:"index_all_tags"`
  484. }
  485. // DefaultTxIndexConfig returns a default configuration for the transaction indexer.
  486. func DefaultTxIndexConfig() *TxIndexConfig {
  487. return &TxIndexConfig{
  488. Indexer: "kv",
  489. IndexTags: "",
  490. IndexAllTags: false,
  491. }
  492. }
  493. // TestTxIndexConfig returns a default configuration for the transaction indexer.
  494. func TestTxIndexConfig() *TxIndexConfig {
  495. return DefaultTxIndexConfig()
  496. }
  497. //-----------------------------------------------------------------------------
  498. // InstrumentationConfig
  499. // InstrumentationConfig defines the configuration for metrics reporting.
  500. type InstrumentationConfig struct {
  501. // When true, Prometheus metrics are served under /metrics on
  502. // PrometheusListenAddr.
  503. // Check out the documentation for the list of available metrics.
  504. Prometheus bool `mapstructure:"prometheus"`
  505. // Address to listen for Prometheus collector(s) connections.
  506. PrometheusListenAddr string `mapstructure:"prometheus_listen_addr"`
  507. }
  508. // DefaultInstrumentationConfig returns a default configuration for metrics
  509. // reporting.
  510. func DefaultInstrumentationConfig() *InstrumentationConfig {
  511. return &InstrumentationConfig{
  512. Prometheus: false,
  513. PrometheusListenAddr: ":26660",
  514. }
  515. }
  516. // TestInstrumentationConfig returns a default configuration for metrics
  517. // reporting.
  518. func TestInstrumentationConfig() *InstrumentationConfig {
  519. return DefaultInstrumentationConfig()
  520. }
  521. //-----------------------------------------------------------------------------
  522. // Utils
  523. // helper function to make config creation independent of root dir
  524. func rootify(path, root string) string {
  525. if filepath.IsAbs(path) {
  526. return path
  527. }
  528. return filepath.Join(root, path)
  529. }
  530. //-----------------------------------------------------------------------------
  531. // Moniker
  532. var defaultMoniker = getDefaultMoniker()
  533. // getDefaultMoniker returns a default moniker, which is the host name. If runtime
  534. // fails to get the host name, "anonymous" will be returned.
  535. func getDefaultMoniker() string {
  536. moniker, err := os.Hostname()
  537. if err != nil {
  538. moniker = "anonymous"
  539. }
  540. return moniker
  541. }