ddog 0.1.0

A Minimal Datadog SDK built in Pure Rust.
Documentation
//! Metrics Endpoints
//!
//! ## Overview
//!
//! The metrics endpoints, as described in the [Datadog Documentation](https://docs.datadoghq.com/api/latest/metrics/?code-lang=curl):
//!
//! ```md
//!     - Post metrics data so it can be graphed on Datadog’s dashboards
//!     - Query metrics from any time period
//!     - Modify tag configurations for metrics
//!     - View tags and volumes for metrics
//! ```
//!
//! Further, note that a graph can only contain a set number of points and as the timeframe over which a metric is viewed increases, aggregation between points occurs to stay below that set number.

/// Metric to create a new tag configuration
/// `v2/metrics/{metric_name}/tags` Endpoint [POST]
pub mod tags;

/// Metric to post series data
/// `v2/series` Endpoint [POST]
pub mod series;

/// Metric to post distribution points
/// `v1/distribution_points` Endpoint [POST]
pub mod distribution;

/// Metric to get an active metrics list
/// `v1/metrics` Endpoint [GET]
pub mod get_metrics;

/// Re-exported prelude of all metrics-related endpoints
pub mod prelude {
    pub use super::{
        distribution::{self, *},
        get_metrics::{self, *},
        series::{self, *},
        tags::{self, *},
    };
}