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.

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