My company asked me to implement APM into our WPF application but I could not find any document supporting the case of WPF app. All they gave me is the setting information:
"ElasticApm": {
"ServerUrls": "https://__.apm.us-east-1.aws.cloud.es.io:",
"ServiceName": "",
"SecretToken": "",
"Environment": ""
}
How can I set this up for WPF app? The app runs this code when running the app
using Elastic.Apm;
using System;
namespace App_Name
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
}
}
}