A Minimal Datadog SDK Built in Pure Rust.
Add the ddog
crate to your project:
toml
ddog = "0.1.0"
The simplest way to use the Datadog SDK is by using the Builder.
To create a new builder, you can instantiate one with the new method: let mut builder = ddog::prelude::Builder::new();
.
Then, to create a new query with a given endpoint, the Builder has explicit methods exposed for the specified endpoint. For example, to post metrics series data to datadog, call the post_series method which returns a Route trait.
Below we show how to use ddog to post metric series data to the Datadog API.
Note: This request will not succeed since the DD_API_KEY
environment variable is set to an invalid value in the request headers section.
```rust use ddog::prelude::*;
async {
let mut builder = builder::Builder::new();
let (status, res) = builder.v2()
.postseries()
.headers(vec![
("Accept", "application/json"),
("Content-Type", "application/json"),
("DD-API-KEY", "