Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #6

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Getting Started

To utilize ClrProfiler with Datadog tracing, include the `ClrProfiler.DatadogTracing` package in your project. Initialize the Datadog client and enable the CLR tracker as demonstrated below:
To utilize ClrProfiler with Datadog metrics, include the `ClrProfiler.DatadogTracing` package in your project. Initialize the Dogstatsd and enable the CLR tracker as demonstrated below:

```sh
dotnet add package ClrProfiler.DatadogTracing
Expand All @@ -22,7 +22,7 @@ dotnet add package ClrProfiler.DatadogTracing
Start Dogstatsd and ClrTracker.

```cs
// Run Client (datadog agent with udp)
// Run Dogstatsd with UDP
var dogstatsdConfig = new StatsdConfig
{
StatsdServerName = host,
Expand All @@ -41,7 +41,7 @@ Now you are ready to use ClrTracker on your application. Metrics will be sent to

## Debugging

If you want to debug behaviour, use ClrTrackerType.Logger instead. This will log metrics to ILogger.Debug.
If you want debug behaviour, use ClrTrackerType.Logger instead. This will log metrics to ILogger.Debug.

```cs
// enable clr tracker
Expand Down
Loading