mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 11:21:24 +00:00
Fix specs
This commit is contained in:
parent
b786406ad0
commit
13387dec43
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ pub(crate) struct ConfigFile {
|
||||||
|
|
||||||
pub(crate) tracing: Tracing,
|
pub(crate) tracing: Tracing,
|
||||||
|
|
||||||
|
#[serde(default)]
|
||||||
pub(crate) metrics: Metrics,
|
pub(crate) metrics: Metrics,
|
||||||
|
|
||||||
pub(crate) old_db: OldDb,
|
pub(crate) old_db: OldDb,
|
||||||
|
@ -121,7 +122,7 @@ pub(crate) struct Tracing {
|
||||||
pub(crate) opentelemetry: OpenTelemetry,
|
pub(crate) opentelemetry: OpenTelemetry,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
|
#[derive(Clone, Debug, Default, serde::Deserialize, serde::Serialize)]
|
||||||
#[serde(rename_all = "snake_case")]
|
#[serde(rename_all = "snake_case")]
|
||||||
pub(crate) struct Metrics {
|
pub(crate) struct Metrics {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
|
Loading…
Reference in a new issue