[][src]Trait camunda_client::apis::MetricsApi

pub trait MetricsApi {
    fn get_metrics(
        &self,
        metrics_name: &str,
        start_date: Option<String>,
        end_date: Option<String>
    ) -> Result<MetricsResultDto, Error>;
fn interval(
        &self,
        name: Option<&str>,
        reporter: Option<&str>,
        start_date: Option<String>,
        end_date: Option<String>,
        first_result: Option<i32>,
        max_results: Option<i32>,
        interval: Option<&str>,
        aggregate_by_reporter: Option<&str>
    ) -> Result<Vec<MetricsIntervalResultDto>, Error>; }

Required methods

fn get_metrics(
    &self,
    metrics_name: &str,
    start_date: Option<String>,
    end_date: Option<String>
) -> Result<MetricsResultDto, Error>

fn interval(
    &self,
    name: Option<&str>,
    reporter: Option<&str>,
    start_date: Option<String>,
    end_date: Option<String>,
    first_result: Option<i32>,
    max_results: Option<i32>,
    interval: Option<&str>,
    aggregate_by_reporter: Option<&str>
) -> Result<Vec<MetricsIntervalResultDto>, Error>

Loading content...

Implementors

impl MetricsApi for MetricsApiClient[src]

Loading content...