public void SendMetrics(IReporter reporter, List<IMetric> metrics)
        {
            Debug.Log("Sending metrics to New Relic");
            try {
                reporter.Post(metrics);

            } catch (System.Exception ex) {
                Debug.LogException(ex);
            }
        }