private IAsyncCollector <AppInsightsData> BuildCollector(AppInsightsAttribute attribute)
 {
     return(new AppInsightsContext
     {
         InstrumentationKey = this.telemetryConfig.InstrumentationKey,
     });
 }
 private AppInsightsData BuildItemFromAttribute(AppInsightsAttribute arg)
 {
     return(new AppInsightsData {
         Id = Activity.Current.Id, Tags = new List <AppInsightsTag>()
     });
 }