zebra/zebrad/src/config.rs

55 lines
1.3 KiB
Rust
Raw Normal View History

//! Zebrad Config
//!
//! See instructions in `commands.rs` to specify the path to your
//! application's configuration file and/or command-line options
//! for specifying it.
use std::net::SocketAddr;
use serde::{Deserialize, Serialize};
use zebra_network::Config as NetworkSection;
/// Zebrad Configuration
2019-12-20 11:20:04 -08:00
#[derive(Clone, Default, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ZebradConfig {
/// Tracing configuration
pub tracing: TracingSection,
/// Networking configuration
pub network: NetworkSection,
/// Metrics configuration
pub metrics: MetricsSection,
}
/// Tracing configuration section.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct TracingSection {
/// The filter used for tracing events.
pub filter: String,
}
impl Default for TracingSection {
fn default() -> Self {
Self {
filter: "info".to_owned(),
}
}
}
/// Metrics configuration section.
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct MetricsSection {
pub endpoint_addr: SocketAddr,
}
impl Default for MetricsSection {
fn default() -> Self {
Self {
endpoint_addr: "127.0.0.1:9999".parse().unwrap(),
}
}
}