Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): Update field labels for the rest of the sources and transforms fields #17564

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
apply suggestions
  • Loading branch information
maycmlee committed Jun 1, 2023
commit e70f96e69f245160c2ccb7a3d42cf29cc318f177
1 change: 0 additions & 1 deletion src/line_agg.rs
Original file line number Diff line number Diff line change
@@ -66,7 +66,6 @@ pub struct Config {
/// The maximum amount of time to wait for the next additional line, in milliseconds.
///
/// Once this timeout is reached, the buffered message is guaranteed to be flushed, even if incomplete.
#[configurable(metadata(docs::human_name = "Timeout"))]
pub timeout: Duration,
}

2 changes: 1 addition & 1 deletion src/sources/kubernetes_logs/mod.rs
Original file line number Diff line number Diff line change
@@ -168,7 +168,7 @@ pub struct Config {
#[serde(default)]
#[configurable(metadata(docs::type_unit = "seconds"))]
#[configurable(metadata(docs::examples = 600))]
#[configurable(metadata(docs::human_name = "Ignore Older Files"))]
#[configurable(metadata(docs::human_name = "Ignore Files Older Than"))]
ignore_older_secs: Option<u64>,

/// Max amount of bytes to read from a single file before switching over
2 changes: 1 addition & 1 deletion src/sources/util/http/auth.rs
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ use warp::http::HeaderMap;
))]
use super::error::ErrorMessage;

/// HTTP basic authentication configuration.
/// HTTP Basic authentication configuration.
#[configurable_component]
#[derive(Clone, Debug)]
pub struct HttpSourceAuthConfig {
2 changes: 1 addition & 1 deletion src/transforms/lua/v1/mod.rs
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ enum BuildError {
InvalidLua { source: mlua::Error },
}

/// Configuration for the version one of the `lua` transform.
/// Configuration for version one of the `lua` transform.
#[configurable_component]
#[derive(Clone, Debug)]
#[serde(deny_unknown_fields)]