using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace Wabbajack.Common { public class Metrics { /// /// This is all we track for metrics, action, and value. The action will be like /// "downloaded", the value "Joe's list". /// /// /// public static async Task Send(string action, params string[] values) { var client = new HttpClient(); try { await client.GetAsync($"http://build.wabbajack.org/metrics/{action}/{string.Join("\t", values)}"); } catch (Exception) { } } } }