-
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(commands): add send-metric command
Add CLI command that can emit metrics. Fixes GH-2001
- Loading branch information
Elias Ram
committed
May 15, 2024
1 parent
554f4fc
commit 26ee405
Showing
66 changed files
with
1,499 additions
and
31 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
use super::{ | ||
errors::{ApiErrorKind, ApiResult}, | ||
Api, ApiResponse, Method, | ||
}; | ||
use crate::constants::USER_AGENT; | ||
use log::debug; | ||
use sentry::{protocol::EnvelopeItem, types::Dsn, Envelope}; | ||
use std::sync::Arc; | ||
|
||
pub struct EnvelopesApi { | ||
api: Arc<Api>, | ||
dsn: Dsn, | ||
} | ||
|
||
impl EnvelopesApi { | ||
pub fn try_new() -> ApiResult<EnvelopesApi> { | ||
let api = Api::current(); | ||
match api.config.get_dsn() { | ||
Ok(dsn) => Ok(EnvelopesApi { api, dsn }), | ||
Err(_) => Err(ApiErrorKind::DsnMissing.into()), | ||
} | ||
} | ||
|
||
pub fn send_item(&self, item: EnvelopeItem) -> ApiResult<ApiResponse> { | ||
let mut envelope = Envelope::new(); | ||
envelope.add_item(item); | ||
self.send_envelope(envelope) | ||
} | ||
|
||
pub fn send_envelope(&self, envelope: Envelope) -> ApiResult<ApiResponse> { | ||
let mut body: Vec<u8> = Vec::new(); | ||
envelope | ||
.to_writer(&mut body) | ||
.map_err(|_| ApiErrorKind::CannotSerializeEnvelope)?; | ||
debug!("Sending envelope:\n{}", String::from_utf8_lossy(&body)); | ||
let url = self.dsn.envelope_api_url(); | ||
let auth = self.dsn.to_auth(Some(USER_AGENT)); | ||
self.api | ||
.request(Method::Post, url.as_str(), None)? | ||
.with_header("X-Sentry-Auth", &auth.to_string())? | ||
.with_body(body)? | ||
.send()? | ||
.into_result() | ||
} | ||
} |
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,36 @@ | ||
use crate::utils::auth_token::AuthToken; | ||
use crate::utils::value_parsers::kv_parser; | ||
use clap::{command, value_parser, ArgAction::SetTrue, Parser, Subcommand}; | ||
|
||
use super::send_metric::SendMetricArgs; | ||
|
||
#[derive(Parser)] | ||
pub(super) struct SentryCLI { | ||
#[command(subcommand)] | ||
pub(super) command: SentryCLICommand, | ||
|
||
#[arg(global=true, long="header", value_name="KEY:VALUE", value_parser=kv_parser)] | ||
#[arg(help = "Custom headers that should be attached to all requests{n}in key:value format")] | ||
pub(super) headers: Vec<(String, String)>, | ||
|
||
#[arg(global=true, long, value_parser=value_parser!(AuthToken))] | ||
#[arg(help = "Use the given Sentry auth token")] | ||
pub(super) auth_token: Option<AuthToken>, | ||
|
||
#[arg(global=true, ignore_case=true, value_parser=["trace", "debug", "info", "warn", "error"])] | ||
#[arg(long, help = "Set the log output verbosity")] | ||
pub(super) log_level: Option<String>, | ||
|
||
#[arg(global=true, action=SetTrue, visible_alias="silent", long)] | ||
#[arg(help = "Do not print any output while preserving correct exit code. \ | ||
This flag is currently implemented only for selected subcommands")] | ||
pub(super) quiet: bool, | ||
|
||
#[arg(global=true, action=SetTrue, long, hide=true, help="Always return 0 exit code")] | ||
pub(super) allow_failure: bool, | ||
} | ||
|
||
#[derive(Subcommand)] | ||
pub(super) enum SentryCLICommand { | ||
SendMetric(SendMetricArgs), | ||
} |
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.