-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
feat: Cleanup CLI flags for InfluxDB 3 Core #25737
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
use crate::commands::common::InfluxDb3Config; | ||
use influxdb3_client::Client; | ||
use secrecy::ExposeSecret; | ||
use std::error::Error; | ||
|
||
#[derive(Debug, clap::Parser)] | ||
pub struct Config { | ||
#[clap(subcommand)] | ||
cmd: SubCommand, | ||
} | ||
|
||
impl Config { | ||
fn get_client(&self) -> Result<Client, Box<dyn Error>> { | ||
let (host_url, auth_token) = match &self.cmd { | ||
SubCommand::Trigger(TriggerConfig { | ||
influxdb3_config: | ||
InfluxDb3Config { | ||
host_url, | ||
auth_token, | ||
.. | ||
}, | ||
.. | ||
}) => (host_url, auth_token), | ||
}; | ||
let mut client = Client::new(host_url.clone())?; | ||
if let Some(token) = &auth_token { | ||
client = client.with_auth_token(token.expose_secret()); | ||
} | ||
Ok(client) | ||
} | ||
} | ||
|
||
#[derive(Debug, clap::Subcommand)] | ||
enum SubCommand { | ||
/// Activate a trigger to enable plugin execution | ||
Trigger(TriggerConfig), | ||
} | ||
|
||
#[derive(Debug, clap::Parser)] | ||
struct TriggerConfig { | ||
#[clap(flatten)] | ||
influxdb3_config: InfluxDb3Config, | ||
|
||
/// Name of trigger to manage | ||
#[clap(required = true)] | ||
trigger_name: String, | ||
} | ||
|
||
pub async fn command(config: Config) -> Result<(), Box<dyn Error>> { | ||
let client = config.get_client()?; | ||
match config.cmd { | ||
SubCommand::Trigger(TriggerConfig { | ||
influxdb3_config: InfluxDb3Config { database_name, .. }, | ||
trigger_name, | ||
}) => { | ||
client | ||
.api_v3_configure_processing_engine_trigger_activate(database_name, &trigger_name) | ||
.await?; | ||
println!("Trigger {} activated successfully", trigger_name); | ||
} | ||
} | ||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice if we could factor out
snafu
since we usethiserror
everywhere else, but that can be done later.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this was just to get everything working with what I copied from clap blocks. I've opened up an issue here