An open API service indexing awesome lists of open source software.

https://github.com/panoramicdata/datadog.api

A .NET API for Datadog
https://github.com/panoramicdata/datadog.api

Last synced: 4 months ago
JSON representation

A .NET API for Datadog

Awesome Lists containing this project

README

          

# Datadog.Api

A .NET API for Datadog

## Unit Tests

To run unit tests, set up your unit test User secrets to match the usersecrets.example.json file.

## Usage

```csharp
using Datadog.Api;

var client = new DatadogClient(new()
{
ApiKey = "API_KEY",
ApplicationKey = "APPLICATION_KEY"
});

var users = await client.Users.GetAllAsync();
```