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
- Host: GitHub
- URL: https://github.com/panoramicdata/datadog.api
- Owner: panoramicdata
- License: mit
- Created: 2024-04-22T20:25:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-12-18T03:42:57.000Z (6 months ago)
- Last Synced: 2025-12-21T11:45:53.411Z (6 months ago)
- Language: C#
- Size: 138 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```