.Net Core SDK Guide
To integrate .Net web services with APItoolkit, you need to use this SDK to monitor incoming traffic, aggregate the requests, and then send them to APItoolkit's servers. Kindly follow this guide to get started and learn about all the supported features of APItoolkit's .Net Core SDK.
Prerequisites
Ensure you have already completed the first three steps of the onboarding guide.
Installation
Kindly run the command below to install the SDK:
dotnet add package ApiToolkit.Net
Configuration
Next, initialize APItoolkit in your application's entry point (e.g., Program.cs
), like so:
using ApiToolkit.Net;
// Initialize the APItoolkit client
var config = new Config
{
ApiKey = "{ENTER_YOUR_API_KEY_HERE}",
Debug = false,
Tags = new List<string> { "environment: production", "region: us-east-1" },
ServiceVersion: "v2.0",
};
var client = await APIToolkit.NewClientAsync(config);
// END Initialize the APItoolkit client
// Register APItoolkit's middleware
app.Use(async (context, next) =>
{
var apiToolkit = new APIToolkit(next, client);
await apiToolkit.InvokeAsync(context);
});
// END Register APItoolkit's middleware
// app.UseEndpoint(...)
// Other middleware and logic
// ...
In the configuration above, only the ApiKey
option is required, but you can add the following optional fields:
Option | Description |
---|---|
Debug | Set to true to enable debug mode. |
Tags | A list of defined tags for your services (used for grouping and filtering data on the dashboard). |
ServiceVersion | A defined string version of your application (used for further debugging on the dashboard). |
RedactHeaders | A list of HTTP header keys to redact. |
RedactResponseBody | A list of JSONPaths from the request body to redact. |
RedactRequestBody | A list of JSONPaths from the response body to redact. |
Tip
- Please ensure the APItoolkit middleware is added before
UseEndpoint
and other middleware are initialized. - The
{ENTER_YOUR_API_KEY_HERE}
demo string should be replaced with the API key generated from the APItoolkit dashboard.
Redacting Sensitive Data
If you have fields that are sensitive and should not be sent to APItoolkit servers, you can mark those fields to be redacted (the fields will never leave your servers).
To mark a field for redacting via this SDK, you need to provide additional arguments to the config
variable with paths to the fields that should be redacted. There are three arguments you can provide to configure what gets redacted, namely:
RedactHeaders
: A list of HTTP header keys.RedactRequestBody
: A list of JSONPaths from the request body.RedactResponseBody
: A list of JSONPaths from the response body.
JSONPath is a query language used to select and extract data from JSON files. For example, given the following sample user data JSON object:
{
"user": {
"name": "John Martha",
"email": "[email protected]",
"addresses": [
{
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345"
},
{
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345"
}
],
"credit_card": {
"number": "4111111111111111",
"expiration": "12/28",
"cvv": "123"
}
}
}
Examples of valid JSONPath expressions would be:
JSONPath | Description |
---|---|
$.user.addresses[*].zip | In this case, APItoolkit will replace the zip field in all the objects of the addresses list inside the user object with the string [CLIENT_REDACTED] . |
$.user.credit_card | In this case, APItoolkit will replace the entire credit_card object inside the user object with the string [CLIENT_REDACTED] . |
Tip
To learn more about JSONPaths, please take a look at the official docs or use this JSONPath Evaluator to validate your JSONPath expressions.
You can also use our JSON Redaction Tool to preview what the final data sent from your API to APItoolkit will look like, after redacting any given JSON object.
Here's an example of what the configuration would look like with redacted fields:
using ApiToolkit.Net;
var config = new Config
{
Debug = true, // Set debug flags to false in production
ApiKey = "{ENTER_YOUR_API_KEY_HERE}",
RedactHeaders = new List<string> { "content-type", "Authorization", "HOST" },
RedactRequestBody = new List<string> { "$.user.email", "$.user.addresses" },
RedactResponseBody = new List<string> { "$.users[*].email", "$.users[*].credit_card" }
};
var client = await APIToolkit.NewClientAsync(config);
# Register the middleware to use the initialized client
app.Use(async (context, next) =>
{
var apiToolkit = new APIToolkit(next, client);
await apiToolkit.InvokeAsync(context);
})
Note
- The
RedactHeaders
config field expects a list of case-insensitive headers as strings. - The
RedactRequestBody
andRedactResponseBody
config fields expect a list of JSONPaths as strings. - The list of items to be redacted will be applied to all endpoint requests and responses on your server.
Error Reporting
APItoolkit automatically detects different unhandled errors, API issues, and anomalies but you can report and track specific errors at different parts of your application. This will help you associate more detail and context from your backend with any failing customer request.
To manually report specific errors at different parts of your application, use the ReportError()
handler, passing in the context
and error
arguments, like so:
using ApiToolkit.Net;
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
var config = new Config
{
ApiKey = "{ENTER_YOUR_API_KEY_HERE}"
};
var client = await APIToolkit.NewClientAsync(config);
app.Use(async (context, next) =>
{
var apiToolkit = new APIToolkit(next, client);
await apiToolkit.InvokeAsync(context);
});
app.MapGet("/error-tracking", async context =>
{
try
{
// Attempt to open a non-existing file
using (var fileStream = System.IO.File.OpenRead("non_existing_file.txt"))
{
// File opened successfully, do something if needed.
}
await context.Response.WriteAsync($"Hello");
}
catch (Exception error)
{
// Report the error to APItoolkit
client.ReportError(context, error);
await context.Response.WriteAsync("Error reported!");
}
});
Monitoring Outgoing Requests
Outgoing requests are external API calls you make from your API. By default, APItoolkit monitors all requests users make from your application and they will all appear in the API Log Explorer page. However, you can separate outgoing requests from others and explore them in the Outgoing Integrations page, alongside the incoming request that triggered them.
To monitor outgoing HTTP requests from your application, we provide the APIToolkitObservingHandler()
handler. Here's an example of the outgoing requests configuration with this SDK on a sample /monitor-requests
endpoint that makes an asynchronous HttpClient
GET request to a sample public endpoint URL.
using ApiToolkit.Net;
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
var config = new Config
{
ApiKey = "{ENTER_YOUR_API_KEY_HERE}"
};
var client = await APIToolkit.NewClientAsync(config);
app.Use(async (context, next) =>
{
var apiToolkit = new APIToolkit(next, client);
await apiToolkit.InvokeAsync(context);
});
app.MapGet("/monitor-requests", async (context) =>
{
var observingHandlerOptions = new ATOptions
{
PathWildCard = "/posts/{id}",
RedactHeaders = ["User-Agent"],
RedactRequestBody = ["$.user.password"],
RedactResponseBody = ["$.user.data.email"]
};
using var httpClient = new HttpClient(client.APIToolkitObservingHandler(context, observingHandlerOptions));
var response = await httpClient.GetAsync("https://jsonplaceholder.typicode.com/posts/1");
var body = await response.Content.ReadAsStringAsync();
await context.Response.WriteAsync(body);
});
The client.APIToolkitObservingHandler
handler accepts a required context
field and the following optional fields:
Option | Description |
---|---|
pathWildCard | The url_path string for URLs with path parameters. |
RedactHeaders | A list of HTTP header keys to redact. |
RedactResponseBody | A list of JSONPaths from the request body to redact. |
RedactRequestBody | A list of JSONPaths from the response body to redact. |
Explore the .Net Core SDK