public RequestsController(ITelemetryRetrievalService telemetryRetrievalService, IAuthenticationService authenticationService, ICookie cookie, ICookieManager cookieManager)
 {
     this.telemetryRetrievalService = telemetryRetrievalService;
     this.authenticationService     = authenticationService;
     this.cookie        = cookie;
     this.cookieManager = cookieManager;
 }
 public FailuresController(ITelemetryRetrievalService telemetryRetrievalService, ICustomTelemetryService customTelemetryService, IAuthenticationService authenticationService, ICookie cookie, ICookieManager cookieManager)
 {
     this.customTelemetryService = customTelemetryService;
     this.telemetryRetrievalService = telemetryRetrievalService;
     this.authenticationService = authenticationService;
     this.cookie = cookie;
     this.cookieManager = cookieManager;
 }
Example #3
0
 public HomeController(ICustomTelemetryService customTelemetryService, ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.customTelemetryService    = customTelemetryService;
     this.telemetryRetrievalService = telemetryRetrievalService;
 }
Example #4
0
 public LatestRawViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
 }
Example #5
0
 public IndexViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.telemetryCount = telemetryRetrievalService.CountTelemetry();
 }
Example #6
0
 public ShowKeysViewModel(ITelemetryRetrievalService telementryRetrievalService)
 {
     this.telementryRetrievalService = telementryRetrievalService;
     this.TelemetryKeys = this.telementryRetrievalService.GetAllTelemetryKeys();
 }
 public LastDayFailuresViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.rejectedTelemetries = telemetryRetrievalService.GetRejectedTelemetry(24);
 }
 public DailyChartViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.metadata = telemetryRetrievalService.GetMetadata(24);
 }
Example #9
0
 public RequestsIndexViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.RequestPayloads = telemetryRetrievalService.GetRequestPayloads(DateTime.UtcNow.AddHours(-1), DateTime.UtcNow);
 }
 public LatestMetricsViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.aggregateDependencyDurations = telemetryRetrievalService.GetLatestDependencyDurations();
 }
Example #11
0
 public RequestsWeeklyViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.RequestPayloads = telemetryRetrievalService.GetRequestPayloads(DateTime.UtcNow.AddDays(-7), DateTime.UtcNow);
 }
 public WeeklyChartViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
 }
Example #13
0
 public LastDayRawViewModel(ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.rawTelemetry = telemetryRetrievalService.GetRawEvents(24);
 }
Example #14
0
 public TelemetryHub(ITelemetryRetrievalService telemetryRetrievalService)
 {
     _retrievalService = telemetryRetrievalService;
 }
 public CollectController(ICustomTelemetryService telemetryService, IHubContext <TelemetryHub, IJavascriptClient> telemetryHubContext, ITelemetryRetrievalService telemetryRetrievalService)
 {
     this.customTelemetryService    = telemetryService;
     this.telemetryHubContext       = telemetryHubContext;
     this.telemetryRetrievalService = telemetryRetrievalService;
 }