]> Untitled Git - lemmy.git/commitdiff
Add comment about opentelemetry_url
authorAode (lion) <asonix@asonix.dog>
Thu, 3 Feb 2022 22:54:57 +0000 (16:54 -0600)
committerAode (lion) <asonix@asonix.dog>
Thu, 3 Feb 2022 23:24:19 +0000 (17:24 -0600)
config/defaults.hjson
crates/utils/src/settings/structs.rs

index bdf19142e2687b7572e3a986a5ed90511b4ccca2..6b3207fde32d3bf73543522f8bb3d7880b45a504 100644 (file)
   actor_name_max_length: 20
   # Maximum number of HTTP requests allowed to handle a single incoming activity (or a single object fetch through the search).
   http_fetch_retry_limit: 25
+  # Set the URL for opentelemetry exports. If you do not have an opentelemetry collector, do not set this option
   opentelemetry_url: "http://localhost:4317"
 }
index 6e66b92d637481fc68fd376d77e4604bf0b8ed89..91867f203e27c00d3611cc3ecc803fcd5b08e547 100644 (file)
@@ -50,6 +50,7 @@ pub struct Settings {
   #[default(25)]
   pub http_fetch_retry_limit: i32,
 
+  /// Set the URL for opentelemetry exports. If you do not have an opentelemetry collector, do not set this option
   #[default(None)]
   #[doku(example = "http://localhost:4317")]
   pub opentelemetry_url: Option<String>,