From 1daa4b81159b1a393dd27ffb0e25a16a87f96cc6 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Sat, 22 Sep 2018 20:41:00 -0700 Subject: [PATCH 1/6] Revisions for 1.0.0-preview --- .../ApplicationInsights.sln | 2 +- .../ApplicationInsightsDataClient.cs | 1534 ---------------- .../ApplicationInsights/Customized/Events.cs | 1119 ++++++++++++ ...lientExtensions.cs => EventsExtensions.cs} | 829 +-------- .../IApplicationInsightsDataClient.cs | 1015 ----------- .../ApplicationInsights/Customized/IEvents.cs | 791 +++++++++ .../Customized/IMetrics.cs | 323 ++++ .../ApplicationInsights/Customized/Metrics.cs | 443 +++++ .../Customized/MetricsExtensions.cs | 666 +++++++ .../Customized/Models/QueryResult.cs | 2 +- .../ApplicationInsights/Customized/Query.cs | 0 .../ApplicationInsightsDataClient.cs | 1566 +---------------- ...ApplicationInsightsDataClientExtensions.cs | 581 ------ .../ApplicationInsights/Generated/Events.cs | 651 +++++++ .../Generated/EventsExtensions.cs | 265 +++ .../IApplicationInsightsDataClient.cs | 267 +-- .../ApplicationInsights/Generated/IEvents.cs | 165 ++ .../ApplicationInsights/Generated/IMetrics.cs | 173 ++ .../ApplicationInsights/Generated/IQuery.cs | 65 + .../ApplicationInsights/Generated/Metrics.cs | 657 +++++++ .../Generated/MetricsExtensions.cs | 283 +++ .../Generated/Models/EventType.cs | 107 +- .../Models/EventsCustomMetricInfo.cs | 4 +- .../Models/EventsPerformanceCounterInfo.cs | 4 +- .../Generated/Models/MetricId.cs | 52 + .../Generated/Models/MetricsAggregation.cs | 26 + .../Models/MetricsPostBodySchemaParameters.cs | 4 +- .../Generated/Models/MetricsSegment.cs | 36 + .../Generated/Models/QueryBody.cs | 14 +- .../Generated/Models/Table.cs | 4 +- .../ApplicationInsights/Generated/Query.cs | 237 +++ .../Generated/QueryExtensions.cs | 93 + .../SdkInfo_ApplicationInsightsDataClient.cs | 44 +- .../Data.ApplicationInsights.Tests.csproj | 2 + .../DataPlaneTestBase.cs | 1 - .../Events/EventsExtensionTests.cs | 102 +- .../ScenarioTests/Events/EventsTestBase.cs | 11 +- .../ScenarioTests/Events/EventsTests.cs | 14 +- .../ScenarioTests/Events/TraceEventsTests.cs | 6 +- .../Metrics/IntervaledMetricsTests.cs | 22 +- .../IntervaledSegmentedMetricsTests.cs | 37 +- .../ScenarioTests/Metrics/MetricTests.cs | 4 +- .../ScenarioTests/Metrics/MetricsTestBase.cs | 29 +- .../Metrics/SegmentedMetricsTests.cs | 42 +- .../Metrics/SummaryMetricsTests.cs | 22 +- .../ScenarioTests/QueryTests.cs | 12 +- .../GetAllEvents.json | 26 +- .../GetEventsByType.AvailabilityResults.json | 56 +- .../GetEventsByType.BrowserTimings.json | 56 +- .../GetEventsByType.CustomEvents.json | 56 +- .../GetEventsByType.CustomMetrics.json | 56 +- .../GetEventsByType.Dependencies.json | 56 +- .../GetEventsByType.Exceptions.json | 56 +- .../GetEventsByType.PageViews.json | 56 +- .../GetEventsByType.PerformanceCounters.json | 56 +- .../GetEventsByType.Requests.json | 56 +- .../GetEventsByType.Traces.json | 56 +- .../tmp.json | 495 ++++++ .../GetTraceEvents.json | 52 +- .../GetIntervaledMetrics.json | 24 +- .../GetIntervaledMetrics_AllAggregations.json | 28 +- .../GetIntervaledMultiSegmentedMetrics.json | 24 +- .../GetIntervaledSegmentedMetrics.json | 24 +- .../GetMetrics.AggregatedIntervalMetric.json | 36 +- ....AggregatedIntervalMultiSegmentMetric.json | 38 +- ...trics.AggregatedIntervalSegmentMetric.json | 38 +- .../GetMetrics.AggregatedMetric.json | 36 +- .../GetMetrics.AggregatedSegmentMetric.json | 36 +- .../GetMultiSegmentedMetrics.json | 24 +- .../GetSegmentedMetrics.json | 24 +- .../GetSegmentedMetrics_AllAggregations.json | 28 +- .../GetSummaryMetric.json | 24 +- .../GetSummaryMetric_AllAggregations.json | 24 +- ...tePostQueryWithTimespan_DemoWorkspace.json | 42 +- ...nExecuteSimplePostQuery_DemoWorkspace.json | 38 +- .../GetsExceptionWithShortWait.json | 34 +- .../GetsExceptionWithSyntaxError.json | 40 +- .../GetEvents.AvailabilityResults.json | 56 +- .../GetEvents.BrowserTimings.json | 56 +- .../GetEvents.CustomEvents.json | 60 +- .../GetEvents.CustomMetrics.json | 56 +- .../GetEvents.Dependencies.json | 56 +- .../GetEvents.Exceptions.json | 60 +- .../GetEvents.PageViews.json | 56 +- .../GetEvents.PerformanceCounters.json | 56 +- .../GetEvents.Requests.json | 56 +- .../GetEvents.Traces.json | 56 +- .../ApplicationInsights_data-plane.txt | 10 +- 88 files changed, 7806 insertions(+), 6793 deletions(-) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs rename src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/{ApplicationInsightsDataClientExtensions.cs => EventsExtensions.cs} (60%) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClientExtensions.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json diff --git a/src/SDKs/ApplicationInsights/ApplicationInsights.sln b/src/SDKs/ApplicationInsights/ApplicationInsights.sln index 41a751eeb94e..6a0ee3b80c4f 100644 --- a/src/SDKs/ApplicationInsights/ApplicationInsights.sln +++ b/src/SDKs/ApplicationInsights/ApplicationInsights.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.27130.2024 +VisualStudioVersion = 15.0.27004.2005 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Data.ApplicationInsights.Tests", "DataPlane\Data.ApplicationInsights.Tests\Data.ApplicationInsights.Tests.csproj", "{FA06A27D-4D07-4157-9C61-36BEBD67970D}" EndProject diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs index 14c7c7a5f815..7f119ac39273 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs @@ -44,1539 +44,5 @@ partial void CustomInitialize() public string NameHeader { get; set; } public string RequestId { get; set; } - - #region Metric Extensions - - /// - /// Retrieve summary metric data - /// - /// - /// Gets summary metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> GetMetricSummaryWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), - int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetMetricWithHttpMessagesAsync(metricId, timespan, null, aggregation, null, top, orderby, filter, customHeaders, cancellationToken); - var realBody = realResult.Body.Value; - return new HttpOperationResponse - { - Request = realResult.Request, - Response = realResult.Response, - Body = new MetricsSummaryResult - { - Start = realBody.Start, - End = realBody.End, - Sum = realBody.GetSum(), - Average = realBody.GetAverage(), - Min = realBody.GetMin(), - Max = realBody.GetMax(), - Count = realBody.GetCount() - } - }; - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> GetIntervaledMetricWithHttpMessagesAsync(string metricId, - System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), - IList aggregation = default(IList), IList segment = default(IList), - int? top = default(int?), string orderby = default(string), string filter = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetMetricWithHttpMessagesAsync(metricId, timespan, interval, aggregation, null, top, orderby, filter, customHeaders, cancellationToken); - var realBody = realResult.Body.Value; - return new HttpOperationResponse - { - Request = realResult.Request, - Response = realResult.Response, - Body = new MetricsIntervaledResult - { - Start = realBody.Start, - End = realBody.End, - Interval = realBody.Interval, - Intervals = realBody.Segments?.Select(inter => - new MetricsIntervaledData - { - Sum = inter.GetSum(), - Average = inter.GetAverage(), - Min = inter.GetMin(), - Max = inter.GetMax(), - Count = inter.GetCount() - } - ).ToList() - } - }; - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> GetSegmentedMetricWithHttpMessagesAsync(string metricId, - System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), - IList segment = default(IList), int? top = default(int?), string orderby = default(string), - string filter = default(string), Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetMetricWithHttpMessagesAsync(metricId, timespan, null, aggregation, segment, top, orderby, filter, customHeaders, cancellationToken); - var realBody = realResult.Body.Value; - return new HttpOperationResponse - { - Request = realResult.Request, - Response = realResult.Response, - Body = new MetricsSegmentedResult - { - Start = realBody.Start, - End = realBody.End, - Segments= GetSegmentInfo(realBody.Segments), - } - }; - } - - private static IList GetSegmentInfo(IList segments) - { - return segments?.Select(seg => - { - IMetricsBaseSegmentInfo result; - if (seg.Segments != null && seg.Segments.Count != 0) - { - result = new MetricsNestedSegment() - { - SegmentId = seg.SegmentId, - SegmentValue = seg.SegmentValue, - Segments = GetSegmentInfo(seg.Segments), - }; - } - else - { - result = new MetricsSegmentedData - { - SegmentId = seg.SegmentId, - SegmentValue = seg.SegmentValue, - Sum = seg.GetSum(), - Average = seg.GetAverage(), - Min = seg.GetMin(), - Max = seg.GetMax(), - Count = seg.GetCount() - }; - } - - return result; - }).ToList(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> GetIntervaledSegmentedMetricWithHttpMessagesAsync(string metricId, - System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), - IList aggregation = default(IList), IList segment = default(IList), - int? top = default(int?), string orderby = default(string), string filter = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetMetricWithHttpMessagesAsync(metricId, timespan, interval, aggregation, segment, top, orderby, filter, customHeaders, cancellationToken); - var realBody = realResult.Body.Value; - return new HttpOperationResponse - { - Request = realResult.Request, - Response = realResult.Response, - Body = new MetricsIntervaledSegmentedResult - { - Start = realBody.Start, - End = realBody.End, - Interval = realBody.Interval, - Intervals = realBody.Segments?.Select(inter => - new MetricsSegmentedIntervalData - { - Start = inter.Start, - End = inter.End, - Segments = GetSegmentInfo(inter.Segments), - } - ).ToList() - } - }; - } - - #endregion - - #region Event Extensions - - /// - /// Execute OData query for trace events - /// - /// - /// Executes an OData query for trace events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> GetTraceEventsWithHttpMessagesAsync( - System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), - string orderby = default(string), string select = default(string), int? skip = default(int?), - int? top = default(int?), string format = default(string), bool? count = default(bool?), - string apply = default(string), Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.Traces, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a trace event - /// - /// - /// Gets the data for a single trace event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> GetTraceEventWithHttpMessagesAsync( - string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.Traces, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for custom events - /// - /// - /// Executes an OData query for custom events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetCustomEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), - string search = default(string), string orderby = default(string), string select = default(string), - int? skip = default(int?), int? top = default(int?), string format = default(string), - bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.CustomEvents, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a custom event - /// - /// - /// Gets the data for a single custom event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetCustomEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.CustomEvents, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for page view events - /// - /// - /// Executes an OData query for page view events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetPageViewEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), - string search = default(string), string orderby = default(string), string select = default(string), - int? skip = default(int?), int? top = default(int?), string format = default(string), - bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.PageViews, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a page view event - /// - /// - /// Gets the data for a single page view event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetPageViewEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.PageViews, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for browser timing events - /// - /// - /// Executes an OData query for browser timing events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetBrowserTimingEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), - string filter = default(string), string search = default(string), string orderby = default(string), - string select = default(string), int? skip = default(int?), int? top = default(int?), - string format = default(string), bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.BrowserTimings, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a browser timing event - /// - /// - /// Gets the data for a single browser timing event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetBrowserTimingEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.BrowserTimings, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for request events - /// - /// - /// Executes an OData query for request events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetRequestEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), - string search = default(string), string orderby = default(string), string select = default(string), - int? skip = default(int?), int? top = default(int?), string format = default(string), - bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.Requests, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a request event - /// - /// - /// Gets the data for a single request event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetRequestEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.Requests, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for dependency events - /// - /// - /// Executes an OData query for dependency events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetDependencyEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), - string search = default(string), string orderby = default(string), string select = default(string), - int? skip = default(int?), int? top = default(int?), string format = default(string), - bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.Dependencies, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a dependency event - /// - /// - /// Gets the data for a single dependency event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetDependencyEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.Dependencies, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for exception events - /// - /// - /// Executes an OData query for exception events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetExceptionEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), - string search = default(string), string orderby = default(string), string select = default(string), - int? skip = default(int?), int? top = default(int?), string format = default(string), - bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.Exceptions, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get an exception event - /// - /// - /// Gets the data for a single exception event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetExceptionEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.Exceptions, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for availability result events - /// - /// - /// Executes an OData query for availability result events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetAvailabilityResultEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), - string filter = default(string), string search = default(string), string orderby = default(string), - string select = default(string), int? skip = default(int?), int? top = default(int?), - string format = default(string), bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.AvailabilityResults, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get an availability result event - /// - /// - /// Gets the data for a single availability result event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetAvailabilityResultEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.AvailabilityResults, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for performance counter events - /// - /// - /// Executes an OData query for performance counter events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetPerformanceCounterEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), - string filter = default(string), string search = default(string), string orderby = default(string), - string select = default(string), int? skip = default(int?), int? top = default(int?), - string format = default(string), bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.PerformanceCounters, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a performance counter event - /// - /// - /// Gets the data for a single performance counter event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetPerformanceCounterEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.PerformanceCounters, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Execute OData query for custom metric events - /// - /// - /// Executes an OData query for custom metric events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetCustomMetricEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), - string filter = default(string), string search = default(string), string orderby = default(string), - string select = default(string), int? skip = default(int?), int? top = default(int?), - string format = default(string), bool? count = default(bool?), string apply = default(string), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventsWithHttpMessagesAsync(EventType.CustomMetrics, timespan, filter, search, orderby, select, - skip, top, format, count, apply, customHeaders, cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - /// - /// Get a custom metricevent - /// - /// - /// Gets the data for a single custom metric event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task>> - GetCustomMetricEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - var realResult = await GetEventWithHttpMessagesAsync(EventType.CustomMetrics, eventId, timespan, customHeaders, - cancellationToken); - var realBody = realResult.Body; - return new HttpOperationResponse> - { - Request = realResult.Request, - Response = realResult.Response, - Body = new EventsResults - { - Aimessages = realBody.Aimessages, - Value = realBody.Value.OfType().ToList(), - } - }; - } - - #endregion } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs new file mode 100644 index 000000000000..47c7f81e06fa --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs @@ -0,0 +1,1119 @@ +using Microsoft.Azure.ApplicationInsights; +using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Rest; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.ApplicationInsights +{ + public partial class Events : IServiceOperations, IEvents + { + + #region Event Extensions + + /// + /// Execute OData query for trace events + /// + /// + /// Executes an OData query for trace events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> GetTraceEventsWithHttpMessagesAsync( + string appId, string timespan = default(string), string filter = default(string), string search = default(string), + string orderby = default(string), string select = default(string), int? skip = default(int?), + int? top = default(int?), string format = default(string), bool? count = default(bool?), + string apply = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.Traces, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a trace event + /// + /// + /// Gets the data for a single trace event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> GetTraceEventWithHttpMessagesAsync( + string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.Traces, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for custom events + /// + /// + /// Executes an OData query for custom events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetCustomEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.CustomEvents, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a custom event + /// + /// + /// Gets the data for a single custom event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetCustomEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.CustomEvents, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for page view events + /// + /// + /// Executes an OData query for page view events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetPageViewEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.PageViews, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a page view event + /// + /// + /// Gets the data for a single page view event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetPageViewEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.PageViews, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for browser timing events + /// + /// + /// Executes an OData query for browser timing events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetBrowserTimingEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.BrowserTimings, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a browser timing event + /// + /// + /// Gets the data for a single browser timing event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetBrowserTimingEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.BrowserTimings, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for request events + /// + /// + /// Executes an OData query for request events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetRequestEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.Requests, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a request event + /// + /// + /// Gets the data for a single request event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetRequestEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.Requests, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for dependency events + /// + /// + /// Executes an OData query for dependency events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetDependencyEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.Dependencies, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a dependency event + /// + /// + /// Gets the data for a single dependency event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetDependencyEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.Dependencies, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for exception events + /// + /// + /// Executes an OData query for exception events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetExceptionEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.Exceptions, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get an exception event + /// + /// + /// Gets the data for a single exception event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetExceptionEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.Exceptions, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for availability result events + /// + /// + /// Executes an OData query for availability result events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetAvailabilityResultEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.AvailabilityResults, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get an availability result event + /// + /// + /// Gets the data for a single availability result event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetAvailabilityResultEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.AvailabilityResults, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for performance counter events + /// + /// + /// Executes an OData query for performance counter events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetPerformanceCounterEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.PerformanceCounters, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a performance counter event + /// + /// + /// Gets the data for a single performance counter event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetPerformanceCounterEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.PerformanceCounters, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Execute OData query for custom metric events + /// + /// + /// Executes an OData query for custom metric events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetCustomMetricEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetByTypeWithHttpMessagesAsync(appId, EventType.CustomMetrics, timespan, filter, search, orderby, select, + skip, top, format, count, apply, customHeaders, cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + /// + /// Get a custom metricevent + /// + /// + /// Gets the data for a single custom metric event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task>> + GetCustomMetricEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, EventType.CustomMetrics, eventId, timespan, customHeaders, + cancellationToken); + var realBody = realResult.Body; + return new HttpOperationResponse> + { + Request = realResult.Request, + Response = realResult.Response, + Body = new EventsResults + { + Aimessages = realBody.Aimessages, + Value = realBody.Value.OfType().ToList(), + } + }; + } + + #endregion + + } +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClientExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs similarity index 60% rename from src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClientExtensions.cs rename to src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs index 33468fc3e442..5b8cb16e7a1c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClientExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs @@ -1,667 +1,13 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Microsoft.Azure.ApplicationInsights { - public static partial class ApplicationInsightsDataClientExtensions + public partial class EventsExtensions { - #region Metric Extensions - - /// - /// Retrieve summary metric data - /// - /// - /// Gets summary metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - public static MetricsSummaryResult GetMetricSummary(this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), - IList aggregation = default(IList), int? top = default(int?), - string orderby = default(string), string filter = default(string)) - { - return operations.GetMetricSummaryAsync(metricId, timespan, aggregation, top, orderby, filter).GetAwaiter().GetResult(); - } - - /// - /// Retrieve summary metric data - /// - /// - /// Gets summary metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The cancellation token. - /// - public static async Task GetMetricSummaryAsync(this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), - IList aggregation = default(IList), int? top = default(int?), - string orderby = default(string), string filter = default(string), - CancellationToken cancellationToken = default(CancellationToken)) - { - using (var result = await operations.GetMetricSummaryWithHttpMessagesAsync(metricId, timespan, aggregation, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) - { - return result.Body; - } - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - public static MetricsIntervaledResult GetIntervaledMetric(this IApplicationInsightsDataClient operations, - string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), - IList aggregation = default(IList), IList segment = default(IList), - int? top = default(int?), string orderby = default(string), string filter = default(string)) - { - return operations - .GetIntervaledMetricAsync(metricId, timespan, interval, aggregation, segment, top, orderby, filter) - .GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The cancellation token. - /// - public static async Task GetIntervaledMetricAsync(this IApplicationInsightsDataClient operations, - string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), - IList aggregation = default(IList), IList segment = default(IList), - int? top = default(int?), string orderby = default(string), string filter = default(string), - CancellationToken cancellationToken = default(CancellationToken)) - { - using (var result = await operations.GetIntervaledMetricWithHttpMessagesAsync(metricId, timespan, interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) - { - return result.Body; - } - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - public static MetricsSegmentedResult GetSegmentedMetric(this IApplicationInsightsDataClient operations, - string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), - IList segment = default(IList), int? top = default(int?), string orderby = default(string), - string filter = default(string)) - { - return operations.GetSegmentedMetricAsync(metricId, timespan, aggregation, segment, top, orderby, filter) - .GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The cancellation token. - /// - public static async Task GetSegmentedMetricAsync(this IApplicationInsightsDataClient operations, - string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), - IList segment = default(IList), int? top = default(int?), string orderby = default(string), - string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var result = await operations.GetSegmentedMetricWithHttpMessagesAsync(metricId, timespan, aggregation, - segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) - { - return result.Body; - } - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - public static MetricsIntervaledSegmentedResult GetIntervaledSegmentedMetric( - this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), - System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), - IList segment = default(IList), int? top = default(int?), string orderby = default(string), - string filter = default(string)) - { - return operations - .GetIntervaledSegmentedMetricAsync(metricId, timespan, interval, aggregation, segment, top, orderby, - filter).GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The cancellation token. - /// - public static async Task GetIntervaledSegmentedMetricAsync( - this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), - System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), - IList segment = default(IList), int? top = default(int?), string orderby = default(string), - string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var result = await operations.GetIntervaledSegmentedMetricWithHttpMessagesAsync(metricId, timespan, - interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) - { - return result.Body; - } - } - - #endregion - + #region Event Extensions /// @@ -708,14 +54,14 @@ public static async Task GetIntervaledSegmente /// /// An expression used for aggregation over returned events /// - public static EventsResults GetTraceEvents(this IApplicationInsightsDataClient operations, - System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), + public static EventsResults GetTraceEvents(this IEvents operations, string appId, + string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetTraceEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetTraceEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -767,13 +113,13 @@ public static EventsResults GetTraceEvents(this IApplicationI /// The cancellation token. /// public static async Task> GetTraceEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetTraceEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetTraceEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -797,10 +143,10 @@ public static async Task> GetTraceEventsAsync( /// ISO8601 time period value. This timespan is applied in addition to /// any that are specified in the Odata expression. /// - public static EventsResults GetTraceEvent(this IApplicationInsightsDataClient operations, - string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + public static EventsResults GetTraceEvent(this IEvents operations, string appId, + string eventId, string timespan = default(string)) { - return operations.GetTraceEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetTraceEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -824,10 +170,10 @@ public static EventsResults GetTraceEvent(this IApplicationIn /// The cancellation token. /// public static async Task> GetTraceEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetTraceEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetTraceEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -878,13 +224,13 @@ public static async Task> GetTraceEventAsync( /// An expression used for aggregation over returned events /// public static EventsResults GetCustomEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetCustomEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetCustomEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -936,13 +282,13 @@ public static EventsResults GetCustomEvents( /// The cancellation token. /// public static async Task> GetCustomEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetCustomEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetCustomEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -967,9 +313,9 @@ public static async Task> GetCustomEvents /// any that are specified in the Odata expression. /// public static EventsResults GetCustomEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetCustomEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetCustomEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -993,10 +339,10 @@ public static EventsResults GetCustomEvent( /// The cancellation token. /// public static async Task> GetCustomEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetCustomEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetCustomEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1047,13 +393,13 @@ public static async Task> GetCustomEventA /// An expression used for aggregation over returned events /// public static EventsResults GetPageViewEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetPageViewEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetPageViewEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1105,13 +451,13 @@ public static EventsResults GetPageViewEvents( /// The cancellation token. /// public static async Task> GetPageViewEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetPageViewEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetPageViewEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1136,9 +482,9 @@ public static async Task> GetPageViewEventsA /// any that are specified in the Odata expression. /// public static EventsResults GetPageViewEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetPageViewEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetPageViewEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -1162,10 +508,10 @@ public static EventsResults GetPageViewEvent( /// The cancellation token. /// public static async Task> GetPageViewEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetPageViewEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetPageViewEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1216,13 +562,13 @@ public static async Task> GetPageViewEventAs /// An expression used for aggregation over returned events /// public static EventsResults GetBrowserTimingEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetBrowserTimingEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetBrowserTimingEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1274,13 +620,13 @@ public static EventsResults GetBrowserTimingEvents( /// The cancellation token. /// public static async Task> GetBrowserTimingEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetBrowserTimingEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetBrowserTimingEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1305,9 +651,9 @@ public static async Task> GetBrowserTim /// any that are specified in the Odata expression. /// public static EventsResults GetBrowserTimingEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetBrowserTimingEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetBrowserTimingEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -1331,10 +677,10 @@ public static EventsResults GetBrowserTimingEvent( /// The cancellation token. /// public static async Task> GetBrowserTimingEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetBrowserTimingEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetBrowserTimingEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1385,13 +731,13 @@ public static async Task> GetBrowserTim /// An expression used for aggregation over returned events /// public static EventsResults GetRequestEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetRequestEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetRequestEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1443,13 +789,13 @@ public static EventsResults GetRequestEvents( /// The cancellation token. /// public static async Task> GetRequestEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetRequestEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetRequestEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1462,6 +808,7 @@ public static async Task> GetRequestEventsAsy /// /// Gets the data for a single request event /// + /// /// The operations group for this extension method. /// @@ -1473,10 +820,10 @@ public static async Task> GetRequestEventsAsy /// ISO8601 time period value. This timespan is applied in addition to /// any that are specified in the Odata expression. /// - public static EventsResults GetRequestEvent(this IApplicationInsightsDataClient operations, - string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + public static EventsResults GetRequestEvent(this IEvents operations, string appId, + string eventId, string timespan = default(string)) { - return operations.GetRequestEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetRequestEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -1500,10 +847,10 @@ public static EventsResults GetRequestEvent(this IApplicati /// The cancellation token. /// public static async Task> GetRequestEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetRequestEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetRequestEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1554,13 +901,13 @@ public static async Task> GetRequestEventAsyn /// An expression used for aggregation over returned events /// public static EventsResults GetDependencyEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetDependencyEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetDependencyEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1612,13 +959,13 @@ public static EventsResults GetDependencyEvents( /// The cancellation token. /// public static async Task> GetDependencyEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetDependencyEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetDependencyEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1643,9 +990,9 @@ public static async Task> GetDependencyEve /// any that are specified in the Odata expression. /// public static EventsResults GetDependencyEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetDependencyEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetDependencyEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -1669,10 +1016,10 @@ public static EventsResults GetDependencyEvent( /// The cancellation token. /// public static async Task> GetDependencyEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetDependencyEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetDependencyEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1723,13 +1070,13 @@ public static async Task> GetDependencyEve /// An expression used for aggregation over returned events /// public static EventsResults GetExceptionEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetExceptionEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetExceptionEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1781,13 +1128,13 @@ public static EventsResults GetExceptionEvents( /// The cancellation token. /// public static async Task> GetExceptionEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetExceptionEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetExceptionEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1812,9 +1159,9 @@ public static async Task> GetExceptionEvent /// any that are specified in the Odata expression. /// public static EventsResults GetExceptionEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetExceptionEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetExceptionEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -1838,10 +1185,10 @@ public static EventsResults GetExceptionEvent( /// The cancellation token. /// public static async Task> GetExceptionEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetExceptionEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetExceptionEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -1892,13 +1239,13 @@ public static async Task> GetExceptionEvent /// An expression used for aggregation over returned events /// public static EventsResults GetAvailabilityResultEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetAvailabilityResultEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetAvailabilityResultEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -1950,13 +1297,13 @@ public static EventsResults GetAvailabilityResul /// The cancellation token. /// public static async Task> GetAvailabilityResultEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetAvailabilityResultEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetAvailabilityResultEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -1981,9 +1328,9 @@ public static async Task> GetAvail /// any that are specified in the Odata expression. /// public static EventsResults GetAvailabilityResultEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetAvailabilityResultEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetAvailabilityResultEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -2007,10 +1354,10 @@ public static EventsResults GetAvailabilityResul /// The cancellation token. /// public static async Task> GetAvailabilityResultEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetAvailabilityResultEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetAvailabilityResultEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -2061,13 +1408,13 @@ public static async Task> GetAvail /// An expression used for aggregation over returned events /// public static EventsResults GetPerformanceCounterEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetPerformanceCounterEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetPerformanceCounterEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -2119,13 +1466,13 @@ public static EventsResults GetPerformanceCounte /// The cancellation token. /// public static async Task> GetPerformanceCounterEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetPerformanceCounterEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetPerformanceCounterEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -2150,9 +1497,9 @@ public static async Task> GetPerfo /// any that are specified in the Odata expression. /// public static EventsResults GetPerformanceCounterEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetPerformanceCounterEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetPerformanceCounterEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -2176,10 +1523,10 @@ public static EventsResults GetPerformanceCounte /// The cancellation token. /// public static async Task> GetPerformanceCounterEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetPerformanceCounterEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetPerformanceCounterEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -2230,13 +1577,13 @@ public static async Task> GetPerfo /// An expression used for aggregation over returned events /// public static EventsResults GetCustomMetricEvents( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) { return operations - .GetCustomMetricEventsAsync(timespan, filter, search, orderby, select, skip, top, format, count, apply) + .GetCustomMetricEventsAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply) .GetAwaiter().GetResult(); } @@ -2288,13 +1635,13 @@ public static EventsResults GetCustomMetricEvents( /// The cancellation token. /// public static async Task> GetCustomMetricEventsAsync( - this IApplicationInsightsDataClient operations, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetCustomMetricEventsWithHttpMessagesAsync(timespan, filter, search, orderby, + using (var result = await operations.GetCustomMetricEventsWithHttpMessagesAsync(appId, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) { return result.Body; @@ -2319,9 +1666,9 @@ public static async Task> GetCustomMetri /// any that are specified in the Odata expression. /// public static EventsResults GetCustomMetricEvent( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) + this IEvents operations, string appId, string eventId, string timespan = default(string)) { - return operations.GetCustomMetricEventAsync(eventId, timespan).GetAwaiter().GetResult(); + return operations.GetCustomMetricEventAsync(appId, eventId, timespan).GetAwaiter().GetResult(); } /// @@ -2345,10 +1692,10 @@ public static EventsResults GetCustomMetricEvent( /// The cancellation token. /// public static async Task> GetCustomMetricEventAsync( - this IApplicationInsightsDataClient operations, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), + this IEvents operations, string appId, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var result = await operations.GetCustomMetricEventWithHttpMessagesAsync(eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + using (var result = await operations.GetCustomMetricEventWithHttpMessagesAsync(appId, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) { return result.Body; } @@ -2356,4 +1703,4 @@ public static async Task> GetCustomMetri #endregion } -} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs index 6ae29bae7471..2625499bd7af 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs @@ -24,1020 +24,5 @@ public partial interface IApplicationInsightsDataClient /// A unique ID per request. This will be generated per request if not specified. /// string RequestId { get; set; } - - #region Metric Extensions - - /// - /// Retrieve summary metric data - /// - /// - /// Gets summary metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetMetricSummaryWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetIntervaledMetricWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetSegmentedMetricWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for a single metric - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetIntervaledSegmentedMetricWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - #endregion - - #region Event Extensions - - /// - /// Execute OData query for trace events - /// - /// - /// Executes an OData query for trace events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetTraceEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a trace event - /// - /// - /// Gets the data for a single trace event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetTraceEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for custom events - /// - /// - /// Executes an OData query for custom events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetCustomEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a custom event - /// - /// - /// Gets the data for a single custom event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetCustomEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for page view events - /// - /// - /// Executes an OData query for page view events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetPageViewEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a page view event - /// - /// - /// Gets the data for a single page view event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetPageViewEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for browser timing events - /// - /// - /// Executes an OData query for browser timing events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetBrowserTimingEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a browser timing event - /// - /// - /// Gets the data for a single browser timing event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetBrowserTimingEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for request events - /// - /// - /// Executes an OData query for request events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetRequestEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a request event - /// - /// - /// Gets the data for a single request event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetRequestEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for dependency events - /// - /// - /// Executes an OData query for dependency events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetDependencyEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a dependency event - /// - /// - /// Gets the data for a single dependency event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetDependencyEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for exception events - /// - /// - /// Executes an OData query for exception events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetExceptionEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get an exception event - /// - /// - /// Gets the data for a single exception event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetExceptionEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for availability result events - /// - /// - /// Executes an OData query for availability result events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetAvailabilityResultEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get an availability result event - /// - /// - /// Gets the data for a single availability result event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetAvailabilityResultEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for performance counter events - /// - /// - /// Executes an OData query for performance counter events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetPerformanceCounterEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a performance counter event - /// - /// - /// Gets the data for a single performance counter event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetPerformanceCounterEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query for custom metric events - /// - /// - /// Executes an OData query for custom metric events - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetCustomMetricEventsWithHttpMessagesAsync(System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get a custom metricevent - /// - /// - /// Gets the data for a single custom metric event - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetCustomMetricEventWithHttpMessagesAsync(string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - #endregion } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs new file mode 100644 index 000000000000..f5a00c6aaefb --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs @@ -0,0 +1,791 @@ +using Microsoft.Azure.ApplicationInsights.Models; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Rest; + +namespace Microsoft.Azure.ApplicationInsights +{ + public partial interface IEvents + { + /// + /// Execute OData query for trace events + /// + /// + /// Executes an OData query for trace events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetTraceEventsWithHttpMessagesAsync( + string appId, string timespan = default(string), string filter = default(string), string search = default(string), + string orderby = default(string), string select = default(string), int? skip = default(int?), + int? top = default(int?), string format = default(string), bool? count = default(bool?), + string apply = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a trace event + /// + /// + /// Gets the data for a single trace event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetTraceEventWithHttpMessagesAsync( + string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for custom events + /// + /// + /// Executes an OData query for custom events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetCustomEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a custom event + /// + /// + /// Gets the data for a single custom event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetCustomEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for page view events + /// + /// + /// Executes an OData query for page view events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetPageViewEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a page view event + /// + /// + /// Gets the data for a single page view event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetPageViewEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for browser timing events + /// + /// + /// Executes an OData query for browser timing events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetBrowserTimingEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a browser timing event + /// + /// + /// Gets the data for a single browser timing event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetBrowserTimingEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for request events + /// + /// + /// Executes an OData query for request events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetRequestEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a request event + /// + /// + /// Gets the data for a single request event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetRequestEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for dependency events + /// + /// + /// Executes an OData query for dependency events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDependencyEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a dependency event + /// + /// + /// Gets the data for a single dependency event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDependencyEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for exception events + /// + /// + /// Executes an OData query for exception events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetExceptionEventsWithHttpMessagesAsync(string appId, string timespan = default(string), string filter = default(string), + string search = default(string), string orderby = default(string), string select = default(string), + int? skip = default(int?), int? top = default(int?), string format = default(string), + bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get an exception event + /// + /// + /// Gets the data for a single exception event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetExceptionEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for availability result events + /// + /// + /// Executes an OData query for availability result events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetAvailabilityResultEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get an availability result event + /// + /// + /// Gets the data for a single availability result event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetAvailabilityResultEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for performance counter events + /// + /// + /// Executes an OData query for performance counter events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetPerformanceCounterEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a performance counter event + /// + /// + /// Gets the data for a single performance counter event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetPerformanceCounterEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Execute OData query for custom metric events + /// + /// + /// Executes an OData query for custom metric events + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetCustomMetricEventsWithHttpMessagesAsync(string appId, string timespan = default(string), + string filter = default(string), string search = default(string), string orderby = default(string), + string select = default(string), int? skip = default(int?), int? top = default(int?), + string format = default(string), bool? count = default(bool?), string apply = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Get a custom metricevent + /// + /// + /// Gets the data for a single custom metric event + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetCustomMetricEventWithHttpMessagesAsync(string appId, string eventId = default(string), string timespan = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs new file mode 100644 index 000000000000..c77d7aaa9c0a --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs @@ -0,0 +1,323 @@ +using Microsoft.Azure.ApplicationInsights.Models; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Rest; + +namespace Microsoft.Azure.ApplicationInsights +{ + public partial interface IMetrics + { + /// + /// Retrieve summary metric data + /// + /// + /// Gets summary metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetMetricSummaryWithHttpMessagesAsync(string appId, string metricId, string timespan = default(string), IList aggregation = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetIntervaledMetricWithHttpMessagesAsync(string appId, + string metricId, string timespan = default(string), + System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetSegmentedMetricWithHttpMessagesAsync(string appId, string metricId, + string timespan = default(string), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetIntervaledSegmentedMetricWithHttpMessagesAsync(string appId, string metricId, + string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), + IList aggregation = default(IList), IList segment = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)); + } +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs new file mode 100644 index 000000000000..d72f02bc05c5 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs @@ -0,0 +1,443 @@ +using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Rest; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.ApplicationInsights +{ + public partial class Metrics : IServiceOperations, IMetrics { + #region Metric Extensions + + /// + /// Retrieve summary metric data + /// + /// + /// Gets summary metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> GetMetricSummaryWithHttpMessagesAsync(string appId, string metricId, string timespan = default(string), IList aggregation = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, metricId, timespan, null, aggregation, null, top, orderby, filter, customHeaders, cancellationToken); + var realBody = realResult.Body.Value; + return new HttpOperationResponse + { + Request = realResult.Request, + Response = realResult.Response, + Body = new MetricsSummaryResult + { + Start = realBody.Start, + End = realBody.End, + Sum = realBody.GetSum(), + Average = realBody.GetAverage(), + Min = realBody.GetMin(), + Max = realBody.GetMax(), + Count = realBody.GetCount() + } + }; + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> GetIntervaledMetricWithHttpMessagesAsync(string appId, + string metricId, string timespan = default(string), + System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, metricId, timespan, interval, aggregation, null, top, orderby, filter, customHeaders, cancellationToken); + var realBody = realResult.Body.Value; + return new HttpOperationResponse + { + Request = realResult.Request, + Response = realResult.Response, + Body = new MetricsIntervaledResult + { + Start = realBody.Start, + End = realBody.End, + Interval = realBody.Interval, + Intervals = realBody.Segments?.Select(inter => + new MetricsIntervaledData + { + Sum = inter.GetSum(), + Average = inter.GetAverage(), + Min = inter.GetMin(), + Max = inter.GetMax(), + Count = inter.GetCount() + } + ).ToList() + } + }; + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> GetSegmentedMetricWithHttpMessagesAsync(string appId, string metricId, + string timespan = default(string), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, metricId, timespan, null, aggregation, segment, top, orderby, filter, customHeaders, cancellationToken); + var realBody = realResult.Body.Value; + return new HttpOperationResponse + { + Request = realResult.Request, + Response = realResult.Response, + Body = new MetricsSegmentedResult + { + Start = realBody.Start, + End = realBody.End, + Segments= GetSegmentInfo(realBody.Segments), + } + }; + } + + private static IList GetSegmentInfo(IList segments) + { + return segments?.Select(seg => + { + IMetricsBaseSegmentInfo result; + if (seg.Segments != null && seg.Segments.Count != 0) + { + result = new MetricsNestedSegment() + { + SegmentId = seg.SegmentId, + SegmentValue = seg.SegmentValue, + Segments = GetSegmentInfo(seg.Segments), + }; + } + else + { + result = new MetricsSegmentedData + { + SegmentId = seg.SegmentId, + SegmentValue = seg.SegmentValue, + Sum = seg.GetSum(), + Average = seg.GetAverage(), + Min = seg.GetMin(), + Max = seg.GetMax(), + Count = seg.GetCount() + }; + } + + return result; + }).ToList(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> GetIntervaledSegmentedMetricWithHttpMessagesAsync( + string appId, string metricId, + string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), + IList aggregation = default(IList), IList segment = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + var realResult = await GetWithHttpMessagesAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, filter, customHeaders, cancellationToken); + var realBody = realResult.Body.Value; + return new HttpOperationResponse + { + Request = realResult.Request, + Response = realResult.Response, + Body = new MetricsIntervaledSegmentedResult + { + Start = realBody.Start, + End = realBody.End, + Interval = realBody.Interval, + Intervals = realBody.Segments?.Select(inter => + new MetricsSegmentedIntervalData + { + Start = inter.Start, + End = inter.End, + Segments = GetSegmentInfo(inter.Segments), + } + ).ToList() + } + }; + } + + #endregion + } +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs new file mode 100644 index 000000000000..74b5fb0a780d --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs @@ -0,0 +1,666 @@ +using Microsoft.Azure.ApplicationInsights.Models; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.ApplicationInsights +{ + public partial class MetricsExtensions + { + + #region Metric Extensions + + /// + /// Retrieve summary metric data + /// + /// + /// Gets summary metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + public static MetricsSummaryResult GetMetricSummary(this IMetrics operations, string appId, string metricId, string timespan = default(string), + IList aggregation = default(IList), int? top = default(int?), + string orderby = default(string), string filter = default(string)) + { + return operations.GetMetricSummaryAsync(appId, metricId, timespan, aggregation, top, orderby, filter).GetAwaiter().GetResult(); + } + + /// + /// Retrieve summary metric data + /// + /// + /// Gets summary metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The cancellation token. + /// + public static async Task GetMetricSummaryAsync(this IMetrics operations, string appId, string metricId, string timespan = default(string), + IList aggregation = default(IList), int? top = default(int?), + string orderby = default(string), string filter = default(string), + CancellationToken cancellationToken = default(CancellationToken)) + { + using (var result = await operations.GetMetricSummaryWithHttpMessagesAsync(appId, metricId, timespan, aggregation, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) + { + return result.Body; + } + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + public static MetricsIntervaledResult GetIntervaledMetric(this IMetrics operations, string appId, + string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), + IList aggregation = default(IList), IList segment = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string)) + { + return operations + .GetIntervaledMetricAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, filter) + .GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The cancellation token. + /// + public static async Task GetIntervaledMetricAsync(this IMetrics operations, string appId, + string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), + IList aggregation = default(IList), IList segment = default(IList), + int? top = default(int?), string orderby = default(string), string filter = default(string), + CancellationToken cancellationToken = default(CancellationToken)) + { + using (var result = await operations.GetIntervaledMetricWithHttpMessagesAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) + { + return result.Body; + } + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + public static MetricsSegmentedResult GetSegmentedMetric(this IMetrics operations, string appId, + string metricId, string timespan = default(string), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string)) + { + return operations.GetSegmentedMetricAsync(appId, metricId, timespan, aggregation, segment, top, orderby, filter) + .GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The cancellation token. + /// + public static async Task GetSegmentedMetricAsync(this IMetrics operations, string appId, + string metricId, string timespan = default(string), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var result = await operations.GetSegmentedMetricWithHttpMessagesAsync(appId, metricId, timespan, aggregation, + segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) + { + return result.Body; + } + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + public static MetricsIntervaledSegmentedResult GetIntervaledSegmentedMetric( + this IMetrics operations, string appId, string metricId, string timespan = default(string), + System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string)) + { + return operations + .GetIntervaledSegmentedMetricAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, + filter).GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The cancellation token. + /// + public static async Task GetIntervaledSegmentedMetricAsync( + this IMetrics operations, string appId, string metricId, string timespan = default(string), + System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), + IList segment = default(IList), int? top = default(int?), string orderby = default(string), + string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var result = await operations.GetIntervaledSegmentedMetricWithHttpMessagesAsync(appId, metricId, timespan, + interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) + { + return result.Body; + } + } + + #endregion + } +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs index 7c10a39a0b10..3ff76247eb9a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs @@ -14,7 +14,7 @@ public partial class QueryResults /// Enumerates over all rows in all tables. /// [JsonProperty(PropertyName = "results")] - public IEnumerable> Results + public IEnumerable> Results { get { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs index af509a87c793..8e6045fb84d5 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs @@ -18,8 +18,6 @@ namespace Microsoft.Azure.ApplicationInsights using System.Collections.Generic; using System.Net; using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; /// /// Composite Swagger for Application Insights Data Client @@ -42,15 +40,37 @@ public partial class ApplicationInsightsDataClient : ServiceClient - /// ID of the application. This is Application ID from the API Access settings - /// blade in the Azure portal. + /// Subscription credentials which uniquely identify client subscription. /// - public string AppId { get; set; } + public ServiceClientCredentials Credentials { get; private set; } /// - /// Subscription credentials which uniquely identify client subscription. + /// Gets the IMetrics. /// - public ServiceClientCredentials Credentials { get; private set; } + public virtual IMetrics Metrics { get; private set; } + + /// + /// Gets the IEvents. + /// + public virtual IEvents Events { get; private set; } + + /// + /// Gets the IQuery. + /// + public virtual IQuery Query { get; private set; } + + /// + /// Initializes a new instance of the ApplicationInsightsDataClient class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling ApplicationInsightsDataClient.Dispose(). False: will not dispose provided httpClient + protected ApplicationInsightsDataClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } /// /// Initializes a new instance of the ApplicationInsightsDataClient class. @@ -147,6 +167,33 @@ public ApplicationInsightsDataClient(ServiceClientCredentials credentials, param } } + /// + /// Initializes a new instance of the ApplicationInsightsDataClient class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling ApplicationInsightsDataClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public ApplicationInsightsDataClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + /// /// Initializes a new instance of the ApplicationInsightsDataClient class. /// @@ -253,6 +300,9 @@ public ApplicationInsightsDataClient(System.Uri baseUri, ServiceClientCredential /// private void Initialize() { + Metrics = new Metrics(this); + Events = new Events(this); + Query = new Query(this); BaseUri = new System.Uri("https://api.applicationinsights.io/v1"); SerializationSettings = new JsonSerializerSettings { @@ -283,1507 +333,5 @@ private void Initialize() DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); CustomInitialize(); } - /// - /// Retrieve metric data - /// - /// - /// Gets data for a single metric. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', - /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', - /// 'client/processingDuration', 'client/receiveDuration', - /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', - /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', - /// 'sessions/count', 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an ISO8601 time - /// period value. If timespan is omitted, a default time range of `PT12H` - /// ("last 12 hours") is used. The actual timespan that is queried may be - /// adjusted by the server based. In all cases, the actual time span used for - /// the query is included in the response. - /// - /// - /// The time interval to use when retrieving metric values. This is an ISO8601 - /// duration. If interval is omitted, the metric value is aggregated across the - /// entire timespan. If interval is supplied, the server may adjust the - /// interval to a more appropriate size based on the timespan used for the - /// query. In all cases, the actual interval used for the query is included in - /// the response. - /// - /// - /// The aggregation to use when computing the metric values. To retrieve more - /// than one aggregation at a time, separate them with a comma. If no - /// aggregation is specified, then the default aggregation for the metric is - /// used. - /// - /// - /// The name of the dimension to segment the metric values by. This dimension - /// must be applicable to the metric you are retrieving. To segment by more - /// than one dimension at a time, separate them with a comma (,). In this case, - /// the metric data will be segmented in the order the dimensions are listed in - /// the parameter. - /// - /// - /// The number of segments to return. This value is only valid when segment is - /// specified. - /// - /// - /// The aggregation function and direction to sort the segments by. This value - /// is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a valid - /// OData filter expression where the keys of each clause should be applicable - /// dimensions for the metric you are retrieving. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetMetricWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - if (metricId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "metricId"); - } - if (aggregation != null) - { - if (aggregation.Count < 1) - { - throw new ValidationException(ValidationRules.MinItems, "aggregation", 1); - } - } - if (segment != null) - { - if (segment.Count < 1) - { - throw new ValidationException(ValidationRules.MinItems, "segment", 1); - } - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("metricId", metricId); - tracingParameters.Add("timespan", timespan); - tracingParameters.Add("interval", interval); - tracingParameters.Add("aggregation", aggregation); - tracingParameters.Add("segment", segment); - tracingParameters.Add("top", top); - tracingParameters.Add("orderby", orderby); - tracingParameters.Add("filter", filter); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMetric", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics/{metricId}").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - _url = _url.Replace("{metricId}", System.Uri.EscapeDataString(metricId)); - List _queryParameters = new List(); - if (timespan != null) - { - _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timespan, SerializationSettings).Trim('"')))); - } - if (interval != null) - { - _queryParameters.Add(string.Format("interval={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(interval, SerializationSettings).Trim('"')))); - } - if (aggregation != null) - { - _queryParameters.Add(string.Format("aggregation={0}", System.Uri.EscapeDataString(string.Join(",", aggregation)))); - } - if (segment != null) - { - _queryParameters.Add(string.Format("segment={0}", System.Uri.EscapeDataString(string.Join(",", segment)))); - } - if (top != null) - { - _queryParameters.Add(string.Format("top={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, SerializationSettings).Trim('"')))); - } - if (orderby != null) - { - _queryParameters.Add(string.Format("orderby={0}", System.Uri.EscapeDataString(orderby))); - } - if (filter != null) - { - _queryParameters.Add(string.Format("filter={0}", System.Uri.EscapeDataString(filter))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for multiple metrics - /// - /// - /// The batched metrics query. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> GetMetricsWithHttpMessagesAsync(IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } - if (body != null) - { - foreach (var element in body) - { - if (element != null) - { - element.Validate(); - } - } - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("body", body); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMetrics", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(body != null) - { - _requestContent = SafeJsonConvert.SerializeObject(body, SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Retrieve metric metatadata - /// - /// - /// Gets metadata describing the available metrics - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetMetricsMetadataWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMetricsMetadata", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics/metadata").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Execute OData query - /// - /// - /// Executes an OData query for events - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular event - /// should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" - /// to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetEventsWithHttpMessagesAsync(EventType eventType, System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("eventType", eventType); - tracingParameters.Add("timespan", timespan); - tracingParameters.Add("filter", filter); - tracingParameters.Add("search", search); - tracingParameters.Add("orderby", orderby); - tracingParameters.Add("select", select); - tracingParameters.Add("skip", skip); - tracingParameters.Add("top", top); - tracingParameters.Add("format", format); - tracingParameters.Add("count", count); - tracingParameters.Add("apply", apply); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEvents", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/{eventType}").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - _url = _url.Replace("{eventType}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(eventType, SerializationSettings).Trim('"'))); - List _queryParameters = new List(); - if (timespan != null) - { - _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timespan, SerializationSettings).Trim('"')))); - } - if (filter != null) - { - _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); - } - if (search != null) - { - _queryParameters.Add(string.Format("$search={0}", System.Uri.EscapeDataString(search))); - } - if (orderby != null) - { - _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); - } - if (select != null) - { - _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); - } - if (skip != null) - { - _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(skip, SerializationSettings).Trim('"')))); - } - if (top != null) - { - _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(top, SerializationSettings).Trim('"')))); - } - if (format != null) - { - _queryParameters.Add(string.Format("$format={0}", System.Uri.EscapeDataString(format))); - } - if (count != null) - { - _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(count, SerializationSettings).Trim('"')))); - } - if (apply != null) - { - _queryParameters.Add(string.Format("$apply={0}", System.Uri.EscapeDataString(apply))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Get an event - /// - /// - /// Gets the data for a single event - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetEventWithHttpMessagesAsync(EventType eventType, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - if (eventId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "eventId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("eventType", eventType); - tracingParameters.Add("timespan", timespan); - tracingParameters.Add("eventId", eventId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEvent", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/{eventType}/{eventId}").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - _url = _url.Replace("{eventType}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(eventType, SerializationSettings).Trim('"'))); - _url = _url.Replace("{eventId}", System.Uri.EscapeDataString(eventId)); - List _queryParameters = new List(); - if (timespan != null) - { - _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timespan, SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Get OData metadata - /// - /// - /// Gets OData EDMX metadata describing the event data model - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetEventsMetadataODataWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEventsMetadataOData", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/$metadata").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Execute an Analytics query - /// - /// - /// Executes an Analytics query for data. - /// [Here](/documentation/2-Using-the-API/Query) is an example for using POST - /// with an Analytics query. - /// - /// - /// The query to execute. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// A list of applications that are included in the query. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> QueryWithHttpMessagesAsync(string query, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? timespan1 = default(System.TimeSpan?), IList applications = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - if (query == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "query"); - } - QueryBody body = new QueryBody(); - if (query != null || timespan1 != null || applications != null) - { - body.Query = query; - body.Timespan = timespan1; - body.Applications = applications; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("timespan", timespan); - tracingParameters.Add("body", body); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Query", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/query").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - List _queryParameters = new List(); - if (timespan != null) - { - _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timespan, SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(body != null) - { - _requestContent = SafeJsonConvert.SerializeObject(body, SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Get Analytics query metadata - /// - /// - /// Gets Analytics query schema describing the data model - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetQuerySchemaWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (AppId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.AppId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetQuerySchema", tracingParameters); - } - // Construct URL - var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/query/schema").ToString(); - _url = _url.Replace("{appId}", System.Uri.EscapeDataString(AppId)); - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClientExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClientExtensions.cs deleted file mode 100644 index baeec2ae6fa8..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClientExtensions.cs +++ /dev/null @@ -1,581 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.ApplicationInsights -{ - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ApplicationInsightsDataClient. - /// - public static partial class ApplicationInsightsDataClientExtensions - { - /// - /// Retrieve metric data - /// - /// - /// Gets data for a single metric. - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', - /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', - /// 'client/processingDuration', 'client/receiveDuration', - /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', - /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', - /// 'sessions/count', 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an ISO8601 time - /// period value. If timespan is omitted, a default time range of `PT12H` - /// ("last 12 hours") is used. The actual timespan that is queried may be - /// adjusted by the server based. In all cases, the actual time span used for - /// the query is included in the response. - /// - /// - /// The time interval to use when retrieving metric values. This is an ISO8601 - /// duration. If interval is omitted, the metric value is aggregated across the - /// entire timespan. If interval is supplied, the server may adjust the - /// interval to a more appropriate size based on the timespan used for the - /// query. In all cases, the actual interval used for the query is included in - /// the response. - /// - /// - /// The aggregation to use when computing the metric values. To retrieve more - /// than one aggregation at a time, separate them with a comma. If no - /// aggregation is specified, then the default aggregation for the metric is - /// used. - /// - /// - /// The name of the dimension to segment the metric values by. This dimension - /// must be applicable to the metric you are retrieving. To segment by more - /// than one dimension at a time, separate them with a comma (,). In this case, - /// the metric data will be segmented in the order the dimensions are listed in - /// the parameter. - /// - /// - /// The number of segments to return. This value is only valid when segment is - /// specified. - /// - /// - /// The aggregation function and direction to sort the segments by. This value - /// is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a valid - /// OData filter expression where the keys of each clause should be applicable - /// dimensions for the metric you are retrieving. - /// - public static MetricsResult GetMetric(this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string)) - { - return operations.GetMetricAsync(metricId, timespan, interval, aggregation, segment, top, orderby, filter).GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets data for a single metric. - /// - /// - /// The operations group for this extension method. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', - /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', - /// 'client/processingDuration', 'client/receiveDuration', - /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', - /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', - /// 'sessions/count', 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an ISO8601 time - /// period value. If timespan is omitted, a default time range of `PT12H` - /// ("last 12 hours") is used. The actual timespan that is queried may be - /// adjusted by the server based. In all cases, the actual time span used for - /// the query is included in the response. - /// - /// - /// The time interval to use when retrieving metric values. This is an ISO8601 - /// duration. If interval is omitted, the metric value is aggregated across the - /// entire timespan. If interval is supplied, the server may adjust the - /// interval to a more appropriate size based on the timespan used for the - /// query. In all cases, the actual interval used for the query is included in - /// the response. - /// - /// - /// The aggregation to use when computing the metric values. To retrieve more - /// than one aggregation at a time, separate them with a comma. If no - /// aggregation is specified, then the default aggregation for the metric is - /// used. - /// - /// - /// The name of the dimension to segment the metric values by. This dimension - /// must be applicable to the metric you are retrieving. To segment by more - /// than one dimension at a time, separate them with a comma (,). In this case, - /// the metric data will be segmented in the order the dimensions are listed in - /// the parameter. - /// - /// - /// The number of segments to return. This value is only valid when segment is - /// specified. - /// - /// - /// The aggregation function and direction to sort the segments by. This value - /// is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a valid - /// OData filter expression where the keys of each clause should be applicable - /// dimensions for the metric you are retrieving. - /// - /// - /// The cancellation token. - /// - public static async Task GetMetricAsync(this IApplicationInsightsDataClient operations, string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetMetricWithHttpMessagesAsync(metricId, timespan, interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for multiple metrics - /// - /// - /// The operations group for this extension method. - /// - /// - /// The batched metrics query. - /// - public static IList GetMetrics(this IApplicationInsightsDataClient operations, IList body) - { - return operations.GetMetricsAsync(body).GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for multiple metrics - /// - /// - /// The operations group for this extension method. - /// - /// - /// The batched metrics query. - /// - /// - /// The cancellation token. - /// - public static async Task> GetMetricsAsync(this IApplicationInsightsDataClient operations, IList body, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetMetricsWithHttpMessagesAsync(body, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Retrieve metric metatadata - /// - /// - /// Gets metadata describing the available metrics - /// - /// - /// The operations group for this extension method. - /// - public static object GetMetricsMetadata(this IApplicationInsightsDataClient operations) - { - return operations.GetMetricsMetadataAsync().GetAwaiter().GetResult(); - } - - /// - /// Retrieve metric metatadata - /// - /// - /// Gets metadata describing the available metrics - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetMetricsMetadataAsync(this IApplicationInsightsDataClient operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetMetricsMetadataWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Execute OData query - /// - /// - /// Executes an OData query for events - /// - /// - /// The operations group for this extension method. - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular event - /// should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" - /// to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - public static EventsResults GetEvents(this IApplicationInsightsDataClient operations, EventType eventType, System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) - { - return operations.GetEventsAsync(eventType, timespan, filter, search, orderby, select, skip, top, format, count, apply).GetAwaiter().GetResult(); - } - - /// - /// Execute OData query - /// - /// - /// Executes an OData query for events - /// - /// - /// The operations group for this extension method. - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular event - /// should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" - /// to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The cancellation token. - /// - public static async Task GetEventsAsync(this IApplicationInsightsDataClient operations, EventType eventType, System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetEventsWithHttpMessagesAsync(eventType, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Get an event - /// - /// - /// Gets the data for a single event - /// - /// - /// The operations group for this extension method. - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - public static EventsResults GetEvent(this IApplicationInsightsDataClient operations, EventType eventType, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?)) - { - return operations.GetEventAsync(eventType, eventId, timespan).GetAwaiter().GetResult(); - } - - /// - /// Get an event - /// - /// - /// Gets the data for a single event - /// - /// - /// The operations group for this extension method. - /// - /// - /// The type of events to query; either a standard event type (`traces`, - /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, - /// `availabilityResults`) or `$all` to query across all event types. Possible - /// values include: '$all', 'traces', 'customEvents', 'pageViews', - /// 'browserTimings', 'requests', 'dependencies', 'exceptions', - /// 'availabilityResults', 'performanceCounters', 'customMetrics' - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an ISO8601 - /// time period value. This timespan is applied in addition to any that are - /// specified in the Odata expression. - /// - /// - /// The cancellation token. - /// - public static async Task GetEventAsync(this IApplicationInsightsDataClient operations, EventType eventType, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetEventWithHttpMessagesAsync(eventType, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Get OData metadata - /// - /// - /// Gets OData EDMX metadata describing the event data model - /// - /// - /// The operations group for this extension method. - /// - public static object GetEventsMetadataOData(this IApplicationInsightsDataClient operations) - { - return operations.GetEventsMetadataODataAsync().GetAwaiter().GetResult(); - } - - /// - /// Get OData metadata - /// - /// - /// Gets OData EDMX metadata describing the event data model - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetEventsMetadataODataAsync(this IApplicationInsightsDataClient operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetEventsMetadataODataWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Execute an Analytics query - /// - /// - /// Executes an Analytics query for data. - /// [Here](/documentation/2-Using-the-API/Query) is an example for using POST - /// with an Analytics query. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The query to execute. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// A list of applications that are included in the query. - /// - public static QueryResults Query(this IApplicationInsightsDataClient operations, string query, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? timespan1 = default(System.TimeSpan?), IList applications = default(IList)) - { - return operations.QueryAsync(query, timespan, timespan1, applications).GetAwaiter().GetResult(); - } - - /// - /// Execute an Analytics query - /// - /// - /// Executes an Analytics query for data. - /// [Here](/documentation/2-Using-the-API/Query) is an example for using POST - /// with an Analytics query. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The query to execute. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 time - /// period value. This timespan is applied in addition to any that are - /// specified in the query expression. - /// - /// - /// A list of applications that are included in the query. - /// - /// - /// The cancellation token. - /// - public static async Task QueryAsync(this IApplicationInsightsDataClient operations, string query, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? timespan1 = default(System.TimeSpan?), IList applications = default(IList), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.QueryWithHttpMessagesAsync(query, timespan, timespan1, applications, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Get Analytics query metadata - /// - /// - /// Gets Analytics query schema describing the data model - /// - /// - /// The operations group for this extension method. - /// - public static QueryResults GetQuerySchema(this IApplicationInsightsDataClient operations) - { - return operations.GetQuerySchemaAsync().GetAwaiter().GetResult(); - } - - /// - /// Get Analytics query metadata - /// - /// - /// Gets Analytics query schema describing the data model - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetQuerySchemaAsync(this IApplicationInsightsDataClient operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetQuerySchemaWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs new file mode 100644 index 000000000000..b291e4c61bbb --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs @@ -0,0 +1,651 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Events operations. + /// + public partial class Events : IServiceOperations, IEvents + { + /// + /// Initializes a new instance of the Events class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + public Events(ApplicationInsightsDataClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ApplicationInsightsDataClient + /// + public ApplicationInsightsDataClient Client { get; private set; } + + /// + /// Execute OData query + /// + /// + /// Executes an OData query for events + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular event + /// should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" + /// to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetByTypeWithHttpMessagesAsync(string appId, string eventType, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + if (eventType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventType"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("eventType", eventType); + tracingParameters.Add("timespan", timespan); + tracingParameters.Add("filter", filter); + tracingParameters.Add("search", search); + tracingParameters.Add("orderby", orderby); + tracingParameters.Add("select", select); + tracingParameters.Add("skip", skip); + tracingParameters.Add("top", top); + tracingParameters.Add("format", format); + tracingParameters.Add("count", count); + tracingParameters.Add("apply", apply); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetByType", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/{eventType}").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + _url = _url.Replace("{eventType}", System.Uri.EscapeDataString(eventType)); + List _queryParameters = new List(); + if (timespan != null) + { + _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(timespan))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (search != null) + { + _queryParameters.Add(string.Format("$search={0}", System.Uri.EscapeDataString(search))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); + } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } + if (skip != null) + { + _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (format != null) + { + _queryParameters.Add(string.Format("$format={0}", System.Uri.EscapeDataString(format))); + } + if (count != null) + { + _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"')))); + } + if (apply != null) + { + _queryParameters.Add(string.Format("$apply={0}", System.Uri.EscapeDataString(apply))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get an event + /// + /// + /// Gets the data for a single event + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string appId, string eventType, string eventId, string timespan = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + if (eventType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventType"); + } + if (eventId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("eventType", eventType); + tracingParameters.Add("timespan", timespan); + tracingParameters.Add("eventId", eventId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/{eventType}/{eventId}").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + _url = _url.Replace("{eventType}", System.Uri.EscapeDataString(eventType)); + _url = _url.Replace("{eventId}", System.Uri.EscapeDataString(eventId)); + List _queryParameters = new List(); + if (timespan != null) + { + _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(timespan))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get OData metadata + /// + /// + /// Gets OData EDMX metadata describing the event data model + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetOdataMetadataWithHttpMessagesAsync(string appId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetOdataMetadata", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/events/$metadata").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs new file mode 100644 index 000000000000..6e39aa1420fd --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs @@ -0,0 +1,265 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Events. + /// + public static partial class EventsExtensions + { + /// + /// Execute OData query + /// + /// + /// Executes an OData query for events + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular event + /// should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" + /// to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + public static EventsResults GetByType(this IEvents operations, string appId, string eventType, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string)) + { + return operations.GetByTypeAsync(appId, eventType, timespan, filter, search, orderby, select, skip, top, format, count, apply).GetAwaiter().GetResult(); + } + + /// + /// Execute OData query + /// + /// + /// Executes an OData query for events + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular event + /// should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or \"desc\" + /// to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The cancellation token. + /// + public static async Task GetByTypeAsync(this IEvents operations, string appId, string eventType, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetByTypeWithHttpMessagesAsync(appId, eventType, timespan, filter, search, orderby, select, skip, top, format, count, apply, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get an event + /// + /// + /// Gets the data for a single event + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + public static EventsResults Get(this IEvents operations, string appId, string eventType, string eventId, string timespan = default(string)) + { + return operations.GetAsync(appId, eventType, eventId, timespan).GetAwaiter().GetResult(); + } + + /// + /// Get an event + /// + /// + /// Gets the data for a single event + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type (`traces`, + /// `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, + /// `availabilityResults`) or `$all` to query across all event types. Possible + /// values include: '$all', 'traces', 'customEvents', 'pageViews', + /// 'browserTimings', 'requests', 'dependencies', 'exceptions', + /// 'availabilityResults', 'performanceCounters', 'customMetrics' + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an ISO8601 + /// time period value. This timespan is applied in addition to any that are + /// specified in the Odata expression. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IEvents operations, string appId, string eventType, string eventId, string timespan = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(appId, eventType, eventId, timespan, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get OData metadata + /// + /// + /// Gets OData EDMX metadata describing the event data model + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + public static object GetOdataMetadata(this IEvents operations, string appId) + { + return operations.GetOdataMetadataAsync(appId).GetAwaiter().GetResult(); + } + + /// + /// Get OData metadata + /// + /// + /// Gets OData EDMX metadata describing the event data model + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The cancellation token. + /// + public static async Task GetOdataMetadataAsync(this IEvents operations, string appId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetOdataMetadataWithHttpMessagesAsync(appId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs index a4b00ad82341..d7db92032c66 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs @@ -13,10 +13,6 @@ namespace Microsoft.Azure.ApplicationInsights using Microsoft.Rest; using Models; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; /// /// Composite Swagger for Application Insights Data Client @@ -38,12 +34,6 @@ public partial interface IApplicationInsightsDataClient : System.IDisposable /// JsonSerializerSettings DeserializationSettings { get; } - /// - /// ID of the application. This is Application ID from the API Access - /// settings blade in the Azure portal. - /// - string AppId { get; set; } - /// /// Subscription credentials which uniquely identify client /// subscription. @@ -52,264 +42,19 @@ public partial interface IApplicationInsightsDataClient : System.IDisposable /// - /// Retrieve metric data - /// - /// - /// Gets data for a single metric. - /// - /// - /// ID of the metric. This is either a standard AI metric, or an - /// application-specific custom metric. Possible values include: - /// 'requests/count', 'requests/duration', 'requests/failed', - /// 'users/count', 'users/authenticated', 'pageViews/count', - /// 'pageViews/duration', 'client/processingDuration', - /// 'client/receiveDuration', 'client/networkDuration', - /// 'client/sendDuration', 'client/totalDuration', - /// 'dependencies/count', 'dependencies/failed', - /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', - /// 'exceptions/server', 'sessions/count', - /// 'performanceCounters/requestExecutionTime', - /// 'performanceCounters/requestsPerSecond', - /// 'performanceCounters/requestsInQueue', - /// 'performanceCounters/memoryAvailableBytes', - /// 'performanceCounters/exceptionsPerSecond', - /// 'performanceCounters/processCpuPercentage', - /// 'performanceCounters/processIOBytesPerSecond', - /// 'performanceCounters/processPrivateBytes', - /// 'performanceCounters/processorCpuPercentage', - /// 'availabilityResults/availabilityPercentage', - /// 'availabilityResults/duration', 'billing/telemetryCount', - /// 'customEvents/count' - /// - /// - /// The timespan over which to retrieve metric values. This is an - /// ISO8601 time period value. If timespan is omitted, a default time - /// range of `PT12H` ("last 12 hours") is used. The actual timespan - /// that is queried may be adjusted by the server based. In all cases, - /// the actual time span used for the query is included in the - /// response. - /// - /// - /// The time interval to use when retrieving metric values. This is an - /// ISO8601 duration. If interval is omitted, the metric value is - /// aggregated across the entire timespan. If interval is supplied, the - /// server may adjust the interval to a more appropriate size based on - /// the timespan used for the query. In all cases, the actual interval - /// used for the query is included in the response. - /// - /// - /// The aggregation to use when computing the metric values. To - /// retrieve more than one aggregation at a time, separate them with a - /// comma. If no aggregation is specified, then the default aggregation - /// for the metric is used. - /// - /// - /// The name of the dimension to segment the metric values by. This - /// dimension must be applicable to the metric you are retrieving. To - /// segment by more than one dimension at a time, separate them with a - /// comma (,). In this case, the metric data will be segmented in the - /// order the dimensions are listed in the parameter. - /// - /// - /// The number of segments to return. This value is only valid when - /// segment is specified. - /// - /// - /// The aggregation function and direction to sort the segments by. - /// This value is only valid when segment is specified. - /// - /// - /// An expression used to filter the results. This value should be a - /// valid OData filter expression where the keys of each clause should - /// be applicable dimensions for the metric you are retrieving. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetMetricWithHttpMessagesAsync(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Retrieve metric data - /// - /// - /// Gets metric values for multiple metrics - /// - /// - /// The batched metrics query. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task>> GetMetricsWithHttpMessagesAsync(IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Retrieve metric metatadata - /// - /// - /// Gets metadata describing the available metrics - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetMetricsMetadataWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Execute OData query - /// - /// - /// Executes an OData query for events - /// - /// - /// The type of events to query; either a standard event type - /// (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, - /// `exceptions`, `availabilityResults`) or `$all` to query across all - /// event types. Possible values include: '$all', 'traces', - /// 'customEvents', 'pageViews', 'browserTimings', 'requests', - /// 'dependencies', 'exceptions', 'availabilityResults', - /// 'performanceCounters', 'customMetrics' - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// An expression used to filter the returned events - /// - /// - /// A free-text search expression to match for whether a particular - /// event should be returned - /// - /// - /// A comma-separated list of properties with \"asc\" (the default) or - /// \"desc\" to control the order of returned events - /// - /// - /// Limits the properties to just those requested on each returned - /// event - /// - /// - /// The number of items to skip over before returning events - /// - /// - /// The number of events to return - /// - /// - /// Format for the returned events - /// - /// - /// Request a count of matching items included with the returned events - /// - /// - /// An expression used for aggregation over returned events - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetEventsWithHttpMessagesAsync(EventType eventType, System.TimeSpan? timespan = default(System.TimeSpan?), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get an event - /// - /// - /// Gets the data for a single event - /// - /// - /// The type of events to query; either a standard event type - /// (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, - /// `exceptions`, `availabilityResults`) or `$all` to query across all - /// event types. Possible values include: '$all', 'traces', - /// 'customEvents', 'pageViews', 'browserTimings', 'requests', - /// 'dependencies', 'exceptions', 'availabilityResults', - /// 'performanceCounters', 'customMetrics' - /// - /// - /// ID of event. - /// - /// - /// Optional. The timespan over which to retrieve events. This is an - /// ISO8601 time period value. This timespan is applied in addition to - /// any that are specified in the Odata expression. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetEventWithHttpMessagesAsync(EventType eventType, string eventId, System.TimeSpan? timespan = default(System.TimeSpan?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// Get OData metadata + /// Gets the IMetrics. /// - /// - /// Gets OData EDMX metadata describing the event data model - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetEventsMetadataODataWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + IMetrics Metrics { get; } /// - /// Execute an Analytics query + /// Gets the IEvents. /// - /// - /// Executes an Analytics query for data. - /// [Here](/documentation/2-Using-the-API/Query) is an example for - /// using POST with an Analytics query. - /// - /// - /// The query to execute. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 - /// time period value. This timespan is applied in addition to any - /// that are specified in the query expression. - /// - /// - /// Optional. The timespan over which to query data. This is an ISO8601 - /// time period value. This timespan is applied in addition to any - /// that are specified in the query expression. - /// - /// - /// A list of applications that are included in the query. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> QueryWithHttpMessagesAsync(string query, System.TimeSpan? timespan = default(System.TimeSpan?), System.TimeSpan? timespan1 = default(System.TimeSpan?), IList applications = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + IEvents Events { get; } /// - /// Get Analytics query metadata + /// Gets the IQuery. /// - /// - /// Gets Analytics query schema describing the data model - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetQuerySchemaWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + IQuery Query { get; } } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs new file mode 100644 index 000000000000..154d65060d2f --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs @@ -0,0 +1,165 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Events operations. + /// + public partial interface IEvents + { + /// + /// Execute OData query + /// + /// + /// Executes an OData query for events + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type + /// (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, + /// `exceptions`, `availabilityResults`) or `$all` to query across all + /// event types. Possible values include: '$all', 'traces', + /// 'customEvents', 'pageViews', 'browserTimings', 'requests', + /// 'dependencies', 'exceptions', 'availabilityResults', + /// 'performanceCounters', 'customMetrics' + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// An expression used to filter the returned events + /// + /// + /// A free-text search expression to match for whether a particular + /// event should be returned + /// + /// + /// A comma-separated list of properties with \"asc\" (the default) or + /// \"desc\" to control the order of returned events + /// + /// + /// Limits the properties to just those requested on each returned + /// event + /// + /// + /// The number of items to skip over before returning events + /// + /// + /// The number of events to return + /// + /// + /// Format for the returned events + /// + /// + /// Request a count of matching items included with the returned events + /// + /// + /// An expression used for aggregation over returned events + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetByTypeWithHttpMessagesAsync(string appId, string eventType, string timespan = default(string), string filter = default(string), string search = default(string), string orderby = default(string), string select = default(string), int? skip = default(int?), int? top = default(int?), string format = default(string), bool? count = default(bool?), string apply = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get an event + /// + /// + /// Gets the data for a single event + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The type of events to query; either a standard event type + /// (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, + /// `exceptions`, `availabilityResults`) or `$all` to query across all + /// event types. Possible values include: '$all', 'traces', + /// 'customEvents', 'pageViews', 'browserTimings', 'requests', + /// 'dependencies', 'exceptions', 'availabilityResults', + /// 'performanceCounters', 'customMetrics' + /// + /// + /// ID of event. + /// + /// + /// Optional. The timespan over which to retrieve events. This is an + /// ISO8601 time period value. This timespan is applied in addition to + /// any that are specified in the Odata expression. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string appId, string eventType, string eventId, string timespan = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get OData metadata + /// + /// + /// Gets OData EDMX metadata describing the event data model + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetOdataMetadataWithHttpMessagesAsync(string appId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs new file mode 100644 index 000000000000..7d794c33fea4 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs @@ -0,0 +1,173 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Metrics operations. + /// + public partial interface IMetrics + { + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', + /// 'users/count', 'users/authenticated', 'pageViews/count', + /// 'pageViews/duration', 'client/processingDuration', + /// 'client/receiveDuration', 'client/networkDuration', + /// 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', + /// 'dependencies/duration', 'exceptions/count', 'exceptions/browser', + /// 'exceptions/server', 'sessions/count', + /// 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an + /// ISO8601 time period value. If timespan is omitted, a default time + /// range of `PT12H` ("last 12 hours") is used. The actual timespan + /// that is queried may be adjusted by the server based. In all cases, + /// the actual time span used for the query is included in the + /// response. + /// + /// + /// The time interval to use when retrieving metric values. This is an + /// ISO8601 duration. If interval is omitted, the metric value is + /// aggregated across the entire timespan. If interval is supplied, the + /// server may adjust the interval to a more appropriate size based on + /// the timespan used for the query. In all cases, the actual interval + /// used for the query is included in the response. + /// + /// + /// The aggregation to use when computing the metric values. To + /// retrieve more than one aggregation at a time, separate them with a + /// comma. If no aggregation is specified, then the default aggregation + /// for the metric is used. + /// + /// + /// The name of the dimension to segment the metric values by. This + /// dimension must be applicable to the metric you are retrieving. To + /// segment by more than one dimension at a time, separate them with a + /// comma (,). In this case, the metric data will be segmented in the + /// order the dimensions are listed in the parameter. + /// + /// + /// The number of segments to return. This value is only valid when + /// segment is specified. + /// + /// + /// The aggregation function and direction to sort the segments by. + /// This value is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a + /// valid OData filter expression where the keys of each clause should + /// be applicable dimensions for the metric you are retrieving. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string appId, string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for multiple metrics + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The batched metrics query. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> GetMultipleWithHttpMessagesAsync(string appId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve metric metatadata + /// + /// + /// Gets metadata describing the available metrics + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetMetadataWithHttpMessagesAsync(string appId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs new file mode 100644 index 000000000000..89de36fd3abf --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs @@ -0,0 +1,65 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Query operations. + /// + public partial interface IQuery + { + /// + /// Execute an Analytics query + /// + /// + /// Executes an Analytics query for data. + /// [Here](https://dev.applicationinsights.io/documentation/Using-the-API/Query) + /// is an example for using POST with an Analytics query. + /// + /// + /// ID of the application. This is Application ID from the API Access + /// settings blade in the Azure portal. + /// + /// + /// The query to execute. + /// + /// + /// Optional. The timespan over which to query data. This is an ISO8601 + /// time period value. This timespan is applied in addition to any + /// that are specified in the query expression. + /// + /// + /// A list of Application IDs for cross-application queries. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ExecuteWithHttpMessagesAsync(string appId, string query, string timespan = default(string), IList applications = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs new file mode 100644 index 000000000000..2e04a973c6bd --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs @@ -0,0 +1,657 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Metrics operations. + /// + public partial class Metrics : IServiceOperations, IMetrics + { + /// + /// Initializes a new instance of the Metrics class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + public Metrics(ApplicationInsightsDataClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ApplicationInsightsDataClient + /// + public ApplicationInsightsDataClient Client { get; private set; } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', + /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', + /// 'client/processingDuration', 'client/receiveDuration', + /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', + /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', + /// 'sessions/count', 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an ISO8601 time + /// period value. If timespan is omitted, a default time range of `PT12H` + /// ("last 12 hours") is used. The actual timespan that is queried may be + /// adjusted by the server based. In all cases, the actual time span used for + /// the query is included in the response. + /// + /// + /// The time interval to use when retrieving metric values. This is an ISO8601 + /// duration. If interval is omitted, the metric value is aggregated across the + /// entire timespan. If interval is supplied, the server may adjust the + /// interval to a more appropriate size based on the timespan used for the + /// query. In all cases, the actual interval used for the query is included in + /// the response. + /// + /// + /// The aggregation to use when computing the metric values. To retrieve more + /// than one aggregation at a time, separate them with a comma. If no + /// aggregation is specified, then the default aggregation for the metric is + /// used. + /// + /// + /// The name of the dimension to segment the metric values by. This dimension + /// must be applicable to the metric you are retrieving. To segment by more + /// than one dimension at a time, separate them with a comma (,). In this case, + /// the metric data will be segmented in the order the dimensions are listed in + /// the parameter. + /// + /// + /// The number of segments to return. This value is only valid when segment is + /// specified. + /// + /// + /// The aggregation function and direction to sort the segments by. This value + /// is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a valid + /// OData filter expression where the keys of each clause should be applicable + /// dimensions for the metric you are retrieving. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string appId, string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + if (metricId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "metricId"); + } + if (aggregation != null) + { + if (aggregation.Count < 1) + { + throw new ValidationException(ValidationRules.MinItems, "aggregation", 1); + } + } + if (segment != null) + { + if (segment.Count < 1) + { + throw new ValidationException(ValidationRules.MinItems, "segment", 1); + } + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("metricId", metricId); + tracingParameters.Add("timespan", timespan); + tracingParameters.Add("interval", interval); + tracingParameters.Add("aggregation", aggregation); + tracingParameters.Add("segment", segment); + tracingParameters.Add("top", top); + tracingParameters.Add("orderby", orderby); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics/{metricId}").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + _url = _url.Replace("{metricId}", System.Uri.EscapeDataString(metricId)); + List _queryParameters = new List(); + if (timespan != null) + { + _queryParameters.Add(string.Format("timespan={0}", System.Uri.EscapeDataString(timespan))); + } + if (interval != null) + { + _queryParameters.Add(string.Format("interval={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(interval, Client.SerializationSettings).Trim('"')))); + } + if (aggregation != null) + { + _queryParameters.Add(string.Format("aggregation={0}", System.Uri.EscapeDataString(string.Join(",", aggregation)))); + } + if (segment != null) + { + _queryParameters.Add(string.Format("segment={0}", System.Uri.EscapeDataString(string.Join(",", segment)))); + } + if (top != null) + { + _queryParameters.Add(string.Format("top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("orderby={0}", System.Uri.EscapeDataString(orderby))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("filter={0}", System.Uri.EscapeDataString(filter))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for multiple metrics + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The batched metrics query. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> GetMultipleWithHttpMessagesAsync(string appId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + foreach (var element in body) + { + if (element != null) + { + element.Validate(); + } + } + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("body", body); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetMultiple", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(body != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(body, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve metric metatadata + /// + /// + /// Gets metadata describing the available metrics + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetMetadataWithHttpMessagesAsync(string appId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetMetadata", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/metrics/metadata").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs new file mode 100644 index 000000000000..404ff7082e97 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs @@ -0,0 +1,283 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Metrics. + /// + public static partial class MetricsExtensions + { + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', + /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', + /// 'client/processingDuration', 'client/receiveDuration', + /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', + /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', + /// 'sessions/count', 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an ISO8601 time + /// period value. If timespan is omitted, a default time range of `PT12H` + /// ("last 12 hours") is used. The actual timespan that is queried may be + /// adjusted by the server based. In all cases, the actual time span used for + /// the query is included in the response. + /// + /// + /// The time interval to use when retrieving metric values. This is an ISO8601 + /// duration. If interval is omitted, the metric value is aggregated across the + /// entire timespan. If interval is supplied, the server may adjust the + /// interval to a more appropriate size based on the timespan used for the + /// query. In all cases, the actual interval used for the query is included in + /// the response. + /// + /// + /// The aggregation to use when computing the metric values. To retrieve more + /// than one aggregation at a time, separate them with a comma. If no + /// aggregation is specified, then the default aggregation for the metric is + /// used. + /// + /// + /// The name of the dimension to segment the metric values by. This dimension + /// must be applicable to the metric you are retrieving. To segment by more + /// than one dimension at a time, separate them with a comma (,). In this case, + /// the metric data will be segmented in the order the dimensions are listed in + /// the parameter. + /// + /// + /// The number of segments to return. This value is only valid when segment is + /// specified. + /// + /// + /// The aggregation function and direction to sort the segments by. This value + /// is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a valid + /// OData filter expression where the keys of each clause should be applicable + /// dimensions for the metric you are retrieving. + /// + public static MetricsResult Get(this IMetrics operations, string appId, string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string)) + { + return operations.GetAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, filter).GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for a single metric + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// ID of the metric. This is either a standard AI metric, or an + /// application-specific custom metric. Possible values include: + /// 'requests/count', 'requests/duration', 'requests/failed', 'users/count', + /// 'users/authenticated', 'pageViews/count', 'pageViews/duration', + /// 'client/processingDuration', 'client/receiveDuration', + /// 'client/networkDuration', 'client/sendDuration', 'client/totalDuration', + /// 'dependencies/count', 'dependencies/failed', 'dependencies/duration', + /// 'exceptions/count', 'exceptions/browser', 'exceptions/server', + /// 'sessions/count', 'performanceCounters/requestExecutionTime', + /// 'performanceCounters/requestsPerSecond', + /// 'performanceCounters/requestsInQueue', + /// 'performanceCounters/memoryAvailableBytes', + /// 'performanceCounters/exceptionsPerSecond', + /// 'performanceCounters/processCpuPercentage', + /// 'performanceCounters/processIOBytesPerSecond', + /// 'performanceCounters/processPrivateBytes', + /// 'performanceCounters/processorCpuPercentage', + /// 'availabilityResults/availabilityPercentage', + /// 'availabilityResults/duration', 'billing/telemetryCount', + /// 'customEvents/count' + /// + /// + /// The timespan over which to retrieve metric values. This is an ISO8601 time + /// period value. If timespan is omitted, a default time range of `PT12H` + /// ("last 12 hours") is used. The actual timespan that is queried may be + /// adjusted by the server based. In all cases, the actual time span used for + /// the query is included in the response. + /// + /// + /// The time interval to use when retrieving metric values. This is an ISO8601 + /// duration. If interval is omitted, the metric value is aggregated across the + /// entire timespan. If interval is supplied, the server may adjust the + /// interval to a more appropriate size based on the timespan used for the + /// query. In all cases, the actual interval used for the query is included in + /// the response. + /// + /// + /// The aggregation to use when computing the metric values. To retrieve more + /// than one aggregation at a time, separate them with a comma. If no + /// aggregation is specified, then the default aggregation for the metric is + /// used. + /// + /// + /// The name of the dimension to segment the metric values by. This dimension + /// must be applicable to the metric you are retrieving. To segment by more + /// than one dimension at a time, separate them with a comma (,). In this case, + /// the metric data will be segmented in the order the dimensions are listed in + /// the parameter. + /// + /// + /// The number of segments to return. This value is only valid when segment is + /// specified. + /// + /// + /// The aggregation function and direction to sort the segments by. This value + /// is only valid when segment is specified. + /// + /// + /// An expression used to filter the results. This value should be a valid + /// OData filter expression where the keys of each clause should be applicable + /// dimensions for the metric you are retrieving. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IMetrics operations, string appId, string metricId, string timespan = default(string), System.TimeSpan? interval = default(System.TimeSpan?), IList aggregation = default(IList), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(appId, metricId, timespan, interval, aggregation, segment, top, orderby, filter, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for multiple metrics + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The batched metrics query. + /// + public static IList GetMultiple(this IMetrics operations, string appId, IList body) + { + return operations.GetMultipleAsync(appId, body).GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric data + /// + /// + /// Gets metric values for multiple metrics + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The batched metrics query. + /// + /// + /// The cancellation token. + /// + public static async Task> GetMultipleAsync(this IMetrics operations, string appId, IList body, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetMultipleWithHttpMessagesAsync(appId, body, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieve metric metatadata + /// + /// + /// Gets metadata describing the available metrics + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + public static object GetMetadata(this IMetrics operations, string appId) + { + return operations.GetMetadataAsync(appId).GetAwaiter().GetResult(); + } + + /// + /// Retrieve metric metatadata + /// + /// + /// Gets metadata describing the available metrics + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The cancellation token. + /// + public static async Task GetMetadataAsync(this IMetrics operations, string appId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetMetadataWithHttpMessagesAsync(appId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs index 00b88b3c257b..b60e8830947a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs @@ -10,105 +10,22 @@ namespace Microsoft.Azure.ApplicationInsights.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; /// /// Defines values for EventType. /// - [JsonConverter(typeof(StringEnumConverter))] - public enum EventType + public static class EventType { - [EnumMember(Value = "$all")] - All, - [EnumMember(Value = "traces")] - Traces, - [EnumMember(Value = "customEvents")] - CustomEvents, - [EnumMember(Value = "pageViews")] - PageViews, - [EnumMember(Value = "browserTimings")] - BrowserTimings, - [EnumMember(Value = "requests")] - Requests, - [EnumMember(Value = "dependencies")] - Dependencies, - [EnumMember(Value = "exceptions")] - Exceptions, - [EnumMember(Value = "availabilityResults")] - AvailabilityResults, - [EnumMember(Value = "performanceCounters")] - PerformanceCounters, - [EnumMember(Value = "customMetrics")] - CustomMetrics - } - internal static class EventTypeEnumExtension - { - internal static string ToSerializedValue(this EventType? value) - { - return value == null ? null : ((EventType)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this EventType value) - { - switch( value ) - { - case EventType.All: - return "$all"; - case EventType.Traces: - return "traces"; - case EventType.CustomEvents: - return "customEvents"; - case EventType.PageViews: - return "pageViews"; - case EventType.BrowserTimings: - return "browserTimings"; - case EventType.Requests: - return "requests"; - case EventType.Dependencies: - return "dependencies"; - case EventType.Exceptions: - return "exceptions"; - case EventType.AvailabilityResults: - return "availabilityResults"; - case EventType.PerformanceCounters: - return "performanceCounters"; - case EventType.CustomMetrics: - return "customMetrics"; - } - return null; - } - - internal static EventType? ParseEventType(this string value) - { - switch( value ) - { - case "$all": - return EventType.All; - case "traces": - return EventType.Traces; - case "customEvents": - return EventType.CustomEvents; - case "pageViews": - return EventType.PageViews; - case "browserTimings": - return EventType.BrowserTimings; - case "requests": - return EventType.Requests; - case "dependencies": - return EventType.Dependencies; - case "exceptions": - return EventType.Exceptions; - case "availabilityResults": - return EventType.AvailabilityResults; - case "performanceCounters": - return EventType.PerformanceCounters; - case "customMetrics": - return EventType.CustomMetrics; - } - return null; - } + public const string All = "$all"; + public const string Traces = "traces"; + public const string CustomEvents = "customEvents"; + public const string PageViews = "pageViews"; + public const string BrowserTimings = "browserTimings"; + public const string Requests = "requests"; + public const string Dependencies = "dependencies"; + public const string Exceptions = "exceptions"; + public const string AvailabilityResults = "availabilityResults"; + public const string PerformanceCounters = "performanceCounters"; + public const string CustomMetrics = "customMetrics"; } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs index 4f410b16b871..11bfbde2d6bb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs @@ -39,7 +39,7 @@ public EventsCustomMetricInfo() /// metric /// The standard deviation of the custom /// metric - public EventsCustomMetricInfo(string name = default(string), double? value = default(double?), double? valueSum = default(double?), double? valueCount = default(double?), double? valueMin = default(double?), double? valueMax = default(double?), double? valueStdDev = default(double?)) + public EventsCustomMetricInfo(string name = default(string), double? value = default(double?), double? valueSum = default(double?), int? valueCount = default(int?), double? valueMin = default(double?), double? valueMax = default(double?), double? valueStdDev = default(double?)) { Name = name; Value = value; @@ -78,7 +78,7 @@ public EventsCustomMetricInfo() /// Gets or sets the count of the custom metric /// [JsonProperty(PropertyName = "valueCount")] - public double? ValueCount { get; set; } + public int? ValueCount { get; set; } /// /// Gets or sets the minimum value of the custom metric diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs index dfba97fe1f67..ea204ad16a13 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs @@ -41,7 +41,7 @@ public EventsPerformanceCounterInfo() /// counter /// The instance of the performance /// counter - public EventsPerformanceCounterInfo(long? value = default(long?), string name = default(string), string category = default(string), string counter = default(string), string instanceName = default(string), string instance = default(string)) + public EventsPerformanceCounterInfo(double? value = default(double?), string name = default(string), string category = default(string), string counter = default(string), string instanceName = default(string), string instance = default(string)) { Value = value; Name = name; @@ -61,7 +61,7 @@ public EventsPerformanceCounterInfo() /// Gets or sets the value of the performance counter /// [JsonProperty(PropertyName = "value")] - public long? Value { get; set; } + public double? Value { get; set; } /// /// Gets or sets the name of the performance counter diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs new file mode 100644 index 000000000000..a96d09085611 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights.Models +{ + + /// + /// Defines values for MetricId. + /// + public static class MetricId + { + public const string RequestsCount = "requests/count"; + public const string RequestsDuration = "requests/duration"; + public const string RequestsFailed = "requests/failed"; + public const string UsersCount = "users/count"; + public const string UsersAuthenticated = "users/authenticated"; + public const string PageViewsCount = "pageViews/count"; + public const string PageViewsDuration = "pageViews/duration"; + public const string ClientProcessingDuration = "client/processingDuration"; + public const string ClientReceiveDuration = "client/receiveDuration"; + public const string ClientNetworkDuration = "client/networkDuration"; + public const string ClientSendDuration = "client/sendDuration"; + public const string ClientTotalDuration = "client/totalDuration"; + public const string DependenciesCount = "dependencies/count"; + public const string DependenciesFailed = "dependencies/failed"; + public const string DependenciesDuration = "dependencies/duration"; + public const string ExceptionsCount = "exceptions/count"; + public const string ExceptionsBrowser = "exceptions/browser"; + public const string ExceptionsServer = "exceptions/server"; + public const string SessionsCount = "sessions/count"; + public const string PerformanceCountersRequestExecutionTime = "performanceCounters/requestExecutionTime"; + public const string PerformanceCountersRequestsPerSecond = "performanceCounters/requestsPerSecond"; + public const string PerformanceCountersRequestsInQueue = "performanceCounters/requestsInQueue"; + public const string PerformanceCountersMemoryAvailableBytes = "performanceCounters/memoryAvailableBytes"; + public const string PerformanceCountersExceptionsPerSecond = "performanceCounters/exceptionsPerSecond"; + public const string PerformanceCountersProcessCpuPercentage = "performanceCounters/processCpuPercentage"; + public const string PerformanceCountersProcessIOBytesPerSecond = "performanceCounters/processIOBytesPerSecond"; + public const string PerformanceCountersProcessPrivateBytes = "performanceCounters/processPrivateBytes"; + public const string PerformanceCountersProcessorCpuPercentage = "performanceCounters/processorCpuPercentage"; + public const string AvailabilityResultsAvailabilityPercentage = "availabilityResults/availabilityPercentage"; + public const string AvailabilityResultsDuration = "availabilityResults/duration"; + public const string BillingTelemetryCount = "billing/telemetryCount"; + public const string CustomEventsCount = "customEvents/count"; + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs new file mode 100644 index 000000000000..1858347f81fe --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights.Models +{ + + /// + /// Defines values for MetricsAggregation. + /// + public static class MetricsAggregation + { + public const string Min = "min"; + public const string Max = "max"; + public const string Avg = "avg"; + public const string Sum = "sum"; + public const string Count = "count"; + public const string Unique = "unique"; + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs index 25be79daadbe..9b4dd7573c4c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs @@ -54,7 +54,7 @@ public MetricsPostBodySchemaParameters() /// 'availabilityResults/availabilityPercentage', /// 'availabilityResults/duration', 'billing/telemetryCount', /// 'customEvents/count' - public MetricsPostBodySchemaParameters(string metricId, System.TimeSpan? timespan = default(System.TimeSpan?), IList aggregation = default(IList), System.TimeSpan? interval = default(System.TimeSpan?), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string)) + public MetricsPostBodySchemaParameters(string metricId, string timespan = default(string), IList aggregation = default(IList), System.TimeSpan? interval = default(System.TimeSpan?), IList segment = default(IList), int? top = default(int?), string orderby = default(string), string filter = default(string)) { MetricId = metricId; Timespan = timespan; @@ -100,7 +100,7 @@ public MetricsPostBodySchemaParameters() /// /// [JsonProperty(PropertyName = "timespan")] - public System.TimeSpan? Timespan { get; set; } + public string Timespan { get; set; } /// /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs new file mode 100644 index 000000000000..9f5db41035c9 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs @@ -0,0 +1,36 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights.Models +{ + + /// + /// Defines values for MetricsSegment. + /// + public static class MetricsSegment + { + public const string ApplicationBuild = "applicationBuild"; + public const string ApplicationVersion = "applicationVersion"; + public const string AuthenticatedOrAnonymousTraffic = "authenticatedOrAnonymousTraffic"; + public const string Browser = "browser"; + public const string BrowserVersion = "browserVersion"; + public const string City = "city"; + public const string CloudRoleName = "cloudRoleName"; + public const string CloudServiceName = "cloudServiceName"; + public const string Continent = "continent"; + public const string CountryOrRegion = "countryOrRegion"; + public const string DeploymentId = "deploymentId"; + public const string DeploymentUnit = "deploymentUnit"; + public const string DeviceType = "deviceType"; + public const string Environment = "environment"; + public const string HostingLocation = "hostingLocation"; + public const string InstanceName = "instanceName"; + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs index 8f4174c19c4a..109e1224ded5 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs @@ -17,7 +17,8 @@ namespace Microsoft.Azure.ApplicationInsights.Models using System.Linq; /// - /// Query request body + /// The Analytics query. Learn more about the [Analytics query + /// syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) /// public partial class QueryBody { @@ -37,9 +38,9 @@ public QueryBody() /// data. This is an ISO8601 time period value. This timespan is /// applied in addition to any that are specified in the query /// expression. - /// A list of applications that are included - /// in the query. - public QueryBody(string query, System.TimeSpan? timespan = default(System.TimeSpan?), IList applications = default(IList)) + /// A list of Application IDs for + /// cross-application queries. + public QueryBody(string query, string timespan = default(string), IList applications = default(IList)) { Query = query; Timespan = timespan; @@ -64,10 +65,11 @@ public QueryBody() /// addition to any that are specified in the query expression. /// [JsonProperty(PropertyName = "timespan")] - public System.TimeSpan? Timespan { get; set; } + public string Timespan { get; set; } /// - /// Gets or sets a list of applications that are included in the query. + /// Gets or sets a list of Application IDs for cross-application + /// queries. /// [JsonProperty(PropertyName = "applications")] public IList Applications { get; set; } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs index 9684f65517ce..58c32577a7e7 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs @@ -38,7 +38,7 @@ public Table() /// The name of the table. /// The list of columns in this table. /// The resulting rows from this query. - public Table(string name, IList columns, IList> rows) + public Table(string name, IList columns, IList> rows) { Name = name; Columns = columns; @@ -67,7 +67,7 @@ public Table(string name, IList columns, IList> rows) /// Gets or sets the resulting rows from this query. /// [JsonProperty(PropertyName = "rows")] - public IList> Rows { get; set; } + public IList> Rows { get; set; } /// /// Validate the object. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs new file mode 100644 index 000000000000..ad313a59bbe4 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs @@ -0,0 +1,237 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Microsoft.Rest; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Query operations. + /// + public partial class Query : IServiceOperations, IQuery + { + /// + /// Initializes a new instance of the Query class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + public Query(ApplicationInsightsDataClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ApplicationInsightsDataClient + /// + public ApplicationInsightsDataClient Client { get; private set; } + + /// + /// Execute an Analytics query + /// + /// + /// Executes an Analytics query for data. + /// [Here](https://dev.applicationinsights.io/documentation/Using-the-API/Query) + /// is an example for using POST with an Analytics query. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The query to execute. + /// + /// + /// Optional. The timespan over which to query data. This is an ISO8601 time + /// period value. This timespan is applied in addition to any that are + /// specified in the query expression. + /// + /// + /// A list of Application IDs for cross-application queries. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ExecuteWithHttpMessagesAsync(string appId, string query, string timespan = default(string), IList applications = default(IList), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (appId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "appId"); + } + if (query == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "query"); + } + QueryBody body = new QueryBody(); + if (query != null || timespan != null || applications != null) + { + body.Query = query; + body.Timespan = timespan; + body.Applications = applications; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("body", body); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Execute", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apps/{appId}/query").ToString(); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(appId)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(body != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(body, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs new file mode 100644 index 000000000000..2690d4303ebe --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs @@ -0,0 +1,93 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.ApplicationInsights +{ + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Query. + /// + public static partial class QueryExtensions + { + /// + /// Execute an Analytics query + /// + /// + /// Executes an Analytics query for data. + /// [Here](https://dev.applicationinsights.io/documentation/Using-the-API/Query) + /// is an example for using POST with an Analytics query. + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The query to execute. + /// + /// + /// Optional. The timespan over which to query data. This is an ISO8601 time + /// period value. This timespan is applied in addition to any that are + /// specified in the query expression. + /// + /// + /// A list of Application IDs for cross-application queries. + /// + public static QueryResults Execute(this IQuery operations, string appId, string query, string timespan = default(string), IList applications = default(IList)) + { + return operations.ExecuteAsync(appId, query, timespan, applications).GetAwaiter().GetResult(); + } + + /// + /// Execute an Analytics query + /// + /// + /// Executes an Analytics query for data. + /// [Here](https://dev.applicationinsights.io/documentation/Using-the-API/Query) + /// is an example for using POST with an Analytics query. + /// + /// + /// The operations group for this extension method. + /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// + /// + /// The query to execute. + /// + /// + /// Optional. The timespan over which to query data. This is an ISO8601 time + /// period value. This timespan is applied in addition to any that are + /// specified in the query expression. + /// + /// + /// A list of Application IDs for cross-application queries. + /// + /// + /// The cancellation token. + /// + public static async Task ExecuteAsync(this IQuery operations, string appId, string query, string timespan = default(string), IList applications = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ExecuteWithHttpMessagesAsync(appId, query, timespan, applications, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs index 37505b95aae6..d91881e2eaef 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs @@ -1,25 +1,29 @@ -using System; -using System.Collections.Generic; -using System.Linq; +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// -internal static partial class SdkInfo +namespace Microsoft.Azure.ApplicationInsights { - public static IEnumerable> ApiInfo_ApplicationInsightsDataClient - { - get - { - return new Tuple[] - { - new Tuple("ApplicationInsightsDataClient", "GetEvent", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetEvents", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetEventsMetadataOData", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetMetric", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetMetrics", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetMetricsMetadata", "v1"), - new Tuple("ApplicationInsightsDataClient", "GetQuerySchema", "v1"), + using System; + using System.Collections.Generic; + using System.Linq; + + internal static partial class SdkInfo + { + public static IEnumerable> ApiInfo_ApplicationInsightsDataClient + { + get + { + return new Tuple[] + { + new Tuple("ApplicationInsightsDataClient", "Events", "v1"), + new Tuple("ApplicationInsightsDataClient", "Metrics", "v1"), new Tuple("ApplicationInsightsDataClient", "Query", "v1"), - }.AsEnumerable(); - } - } + }.AsEnumerable(); + } + } + } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj index 9f4e88b8545c..439069c7850d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj @@ -15,6 +15,8 @@ + + diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs index 6ff7c9816009..7173703b00cf 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs @@ -14,7 +14,6 @@ protected ApplicationInsightsDataClient GetClient(MockContext ctx, string appId { var credentials = new ApiKeyClientCredentials(apiKey); var client = new ApplicationInsightsDataClient(credentials, HttpMockServer.CreateInstance()); - client.AppId = appId; client.BaseUri = new Uri("https://api.applicationinsights.io/v1"); return client; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs index aab429ea531e..35ce0faf35fb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs @@ -23,20 +23,20 @@ public class EventsExtensionTests : EventsTestBase [MemberData(nameof(AvailabilityResultsData))] [MemberData(nameof(PerformanceCountersData))] [MemberData(nameof(CustomMetricsData))] - public async Task GetEventsAsync(EventType eventType, MultiQueryAsync multiQueryAsync, SingleQueryAsync singleQueryAsync, + public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQueryAsync, SingleQueryAsync singleQueryAsync, object unused1, object unused2) where T : EventsResultData { using (var ctx = MockContext.Start(GetType().FullName, $"GetEvents.{eventType}")) { - var timespan = new TimeSpan(12, 0, 0); - var top = 10; + var timespan = "P1D"; + var top = 1; var client = GetClient(ctx); var events = await multiQueryAsync(client, timespan, top); Assert.NotNull(events); Assert.NotNull(events.Value); - Assert.True(events.Value.Count > 0); + Assert.True(events.Value.Count >= 0); Assert.True(events.Value.Count <= top); foreach (var e in events.Value) @@ -68,12 +68,12 @@ public async Task GetEventsAsync(EventType eventType, MultiQueryAsync mult [MemberData(nameof(AvailabilityResultsData))] [MemberData(nameof(PerformanceCountersData))] [MemberData(nameof(CustomMetricsData))] - public void GetEvents(EventType eventType, object unused1, object unused2, + public void GetEvents(string eventType, object unused1, object unused2, MultiQuery multiQuery, SingleQuery singleQuery) where T : EventsResultData { using (var ctx = MockContext.Start(GetType().FullName, $"GetEvents.{eventType}")) { - var timespan = new TimeSpan(12, 0, 0); + var timespan = "P1D"; var top = 10; var client = GetClient(ctx); @@ -81,7 +81,7 @@ public void GetEvents(EventType eventType, object unused1, object unused2, Assert.NotNull(events); Assert.NotNull(events.Value); - Assert.True(events.Value.Count > 0); + Assert.True(events.Value.Count >= 0); Assert.True(events.Value.Count <= top); foreach (var e in events.Value) @@ -102,100 +102,100 @@ public void GetEvents(EventType eventType, object unused1, object unused2, } } - public delegate Task> MultiQueryAsync(ApplicationInsightsDataClient client, System.TimeSpan? timespan, int top) where T : EventsResultData; - public delegate Task> SingleQueryAsync(ApplicationInsightsDataClient client, string id, System.TimeSpan? timespan) where T : EventsResultData; + public delegate Task> MultiQueryAsync(ApplicationInsightsDataClient client, string timespan, int top) where T : EventsResultData; + public delegate Task> SingleQueryAsync(ApplicationInsightsDataClient client, string id, string timespan) where T : EventsResultData; - public delegate EventsResults MultiQuery(ApplicationInsightsDataClient client, System.TimeSpan? timespan, int top) where T : EventsResultData; - public delegate EventsResults SingleQuery(ApplicationInsightsDataClient client, string id, System.TimeSpan? timespan) where T : EventsResultData; + public delegate EventsResults MultiQuery(ApplicationInsightsDataClient client, string timespan, int top) where T : EventsResultData; + public delegate EventsResults SingleQuery(ApplicationInsightsDataClient client, string id, string timespan) where T : EventsResultData; private static readonly object[] TraceParams = new object[] { EventType.Traces, - new MultiQueryAsync(async (client, timespan, top) => await client.GetTraceEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetTraceEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetTraceEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetTraceEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetTraceEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetTraceEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetTraceEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetTraceEvent(DefaultAppId, id, timespan)), }; private static readonly object[] CustomEventsParams = new object[] { EventType.CustomEvents, - new MultiQueryAsync(async (client, timespan, top) => await client.GetCustomEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetCustomEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetCustomEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetCustomEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetCustomEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetCustomEvent(DefaultAppId, id, timespan)), }; private static readonly object[] PageViewsParams = new object[] { EventType.PageViews, - new MultiQueryAsync(async (client, timespan, top) => await client.GetPageViewEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetPageViewEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetPageViewEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetPageViewEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPageViewEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPageViewEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetPageViewEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetPageViewEvent(DefaultAppId, id, timespan)), }; private static readonly object[] BrowserTimingsParams = new object[] { EventType.BrowserTimings, - new MultiQueryAsync(async (client, timespan, top) => await client.GetBrowserTimingEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetBrowserTimingEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetBrowserTimingEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetBrowserTimingEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetBrowserTimingEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetBrowserTimingEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetBrowserTimingEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetBrowserTimingEvent(DefaultAppId, id, timespan)), }; private static readonly object[] RequestsParams = new object[] { EventType.Requests, - new MultiQueryAsync(async (client, timespan, top) => await client.GetRequestEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetRequestEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetRequestEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetRequestEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetRequestEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetRequestEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetRequestEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetRequestEvent(DefaultAppId, id, timespan)), }; private static readonly object[] DependenciesParams = new object[] { EventType.Dependencies, - new MultiQueryAsync(async (client, timespan, top) => await client.GetDependencyEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetDependencyEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetDependencyEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetDependencyEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetDependencyEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetDependencyEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetDependencyEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetDependencyEvent(DefaultAppId, id, timespan)), }; private static readonly object[] ExceptionsParams = new object[] { EventType.Exceptions, - new MultiQueryAsync(async (client, timespan, top) => await client.GetExceptionEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetExceptionEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetExceptionEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetExceptionEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetExceptionEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetExceptionEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetExceptionEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetExceptionEvent(DefaultAppId, id, timespan)), }; private static readonly object[] AvailabilityResultsParams = new object[] { EventType.AvailabilityResults, - new MultiQueryAsync(async (client, timespan, top) => await client.GetAvailabilityResultEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetAvailabilityResultEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetAvailabilityResultEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetAvailabilityResultEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetAvailabilityResultEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetAvailabilityResultEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetAvailabilityResultEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetAvailabilityResultEvent(DefaultAppId, id, timespan)), }; private static readonly object[] PerformanceCountersParams = new object[] { EventType.PerformanceCounters, - new MultiQueryAsync(async (client, timespan, top) => await client.GetPerformanceCounterEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetPerformanceCounterEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetPerformanceCounterEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetPerformanceCounterEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPerformanceCounterEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPerformanceCounterEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetPerformanceCounterEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetPerformanceCounterEvent(DefaultAppId, id, timespan)), }; private static readonly object[] CustomMetricsParams = new object[] { EventType.CustomMetrics, - new MultiQueryAsync(async (client, timespan, top) => await client.GetCustomMetricEventsAsync(timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.GetCustomMetricEventAsync(id, timespan)), - new MultiQuery((client, timespan, top) => client.GetCustomMetricEvents(timespan, top: top)), - new SingleQuery((client, id, timespan) => client.GetCustomMetricEvent(id, timespan)), + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomMetricEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomMetricEventAsync(DefaultAppId, id, timespan)), + new MultiQuery((client, timespan, top) => client.Events.GetCustomMetricEvents(DefaultAppId, timespan, top: top)), + new SingleQuery((client, id, timespan) => client.Events.GetCustomMetricEvent(DefaultAppId, id, timespan)), }; public static IEnumerable TraceData { get { yield return TraceParams; } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs index 4701540b4670..d1b9d0de2130 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs @@ -7,7 +7,7 @@ namespace Data.ApplicationInsights.Tests.Events { public class EventsTestBase : DataPlaneTestBase { - protected EventType? GetEventType(EventsResultData evnt) + protected string GetEventType(EventsResultData evnt) { if (evnt is EventsTraceResult) return EventType.Traces; else if (evnt is EventsCustomEventResult) return EventType.CustomEvents; @@ -23,7 +23,7 @@ public class EventsTestBase : DataPlaneTestBase return null; } - protected void AssertEvent(EventsResultData evnt, EventType expectedType) + protected void AssertEvent(EventsResultData evnt, string expectedType) { Assert.NotNull(evnt); Assert.True(!string.IsNullOrEmpty(evnt.Id)); @@ -147,8 +147,6 @@ protected void VerifyBrowserTiming(EventsResultData evnt) var browserTiming = evnt as EventsBrowserTimingResult; Assert.NotNull(browserTiming.BrowserTiming); - Assert.False(string.IsNullOrWhiteSpace(browserTiming.BrowserTiming.UrlPath)); - Assert.False(string.IsNullOrWhiteSpace(browserTiming.BrowserTiming.UrlHost)); Assert.False(string.IsNullOrWhiteSpace(browserTiming.BrowserTiming.Name)); Assert.False(string.IsNullOrWhiteSpace(browserTiming.BrowserTiming.Url)); Assert.True(browserTiming.BrowserTiming.TotalDuration >= 0); @@ -157,9 +155,6 @@ protected void VerifyBrowserTiming(EventsResultData evnt) Assert.True(browserTiming.BrowserTiming.SendDuration >= 0); Assert.True(browserTiming.BrowserTiming.ReceiveDuration >= 0); Assert.True(browserTiming.BrowserTiming.ProcessingDuration >= 0); - - Assert.NotNull(browserTiming.ClientPerformance); - Assert.False(string.IsNullOrWhiteSpace(browserTiming.ClientPerformance.Name)); } protected void VerifyRequest(EventsResultData evnt) @@ -239,7 +234,7 @@ protected void VerifyPerformanceCounter(EventsResultData evnt) Assert.False(string.IsNullOrWhiteSpace(customEvent.PerformanceCounter.Name)); Assert.False(string.IsNullOrWhiteSpace(customEvent.PerformanceCounter.Category)); Assert.False(string.IsNullOrWhiteSpace(customEvent.PerformanceCounter.Counter)); - Assert.False(string.IsNullOrWhiteSpace(customEvent.PerformanceCounter.Instance)); + Assert.NotNull(customEvent.PerformanceCounter.Instance); // InstanceName can be null } diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs index d6769632f85e..44efedf362fe 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs @@ -10,7 +10,7 @@ namespace Data.ApplicationInsights.Tests.Events public class EventsTests : EventsTestBase { private const int TopCount = 10; - private readonly TimeSpan Timespan = new TimeSpan(1, 0, 0, 0); + private readonly string Timespan = "P1D"; [Fact] public async Task GetAllEvents() @@ -18,7 +18,7 @@ public async Task GetAllEvents() using (var ctx = MockContext.Start(GetType().FullName)) { var client = GetClient(ctx); - var events = await client.GetEventsAsync(EventType.All, timespan: Timespan, top: TopCount); + var events = await client.Events.GetByTypeAsync(DefaultAppId, EventType.All, timespan: Timespan, top: TopCount); Assert.NotNull(events); Assert.NotNull(events.Value); @@ -27,8 +27,8 @@ public async Task GetAllEvents() foreach (var evnt in events.Value) { var eventType = GetEventType(evnt); - if (!eventType.HasValue) continue; // This means there is a new type that we don't support here yet - AssertEvent(evnt, eventType.Value); + if (eventType != null) continue; // This means there is a new type that we don't support here yet + AssertEvent(evnt, eventType); } } } @@ -44,12 +44,12 @@ public async Task GetAllEvents() [InlineData(EventType.AvailabilityResults)] [InlineData(EventType.PerformanceCounters)] [InlineData(EventType.CustomMetrics)] - public async Task GetEventsByType(EventType eventType) + public async Task GetEventsByType(string eventType) { using (var ctx = MockContext.Start(GetType().FullName, $"GetEventsByType.{eventType}")) { var client = GetClient(ctx); - var traces = await client.GetEventsAsync(eventType, timespan: Timespan, top: TopCount); + var traces = await client.Events.GetByTypeAsync(DefaultAppId, eventType, timespan: Timespan, top: TopCount); Assert.NotNull(traces); Assert.NotNull(traces.Value); @@ -59,7 +59,7 @@ public async Task GetEventsByType(EventType eventType) AssertEvent(evnt, eventType); - traces = await client.GetEventAsync(eventType, evnt.Id); + traces = await client.Events.GetAsync(DefaultAppId, eventType, evnt.Id); Assert.NotNull(traces); Assert.NotNull(traces.Value); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs index 7dd15f93e5a8..e1862b3935a3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs @@ -15,11 +15,11 @@ public async Task GetTraceEvents() { using (var ctx = MockContext.Start(GetType().FullName)) { - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var top = 10; var client = GetClient(ctx); - var events = await client.GetTraceEventsAsync(timespan, top: top); + var events = await client.Events.GetTraceEventsAsync(DefaultAppId, timespan, top: top); Assert.NotNull(events); Assert.NotNull(events.Value); @@ -33,7 +33,7 @@ public async Task GetTraceEvents() Assert.True(!string.IsNullOrEmpty(events.Value[0].Id)); - var evnt = await client.GetTraceEventAsync(events.Value[0].Id, timespan); + var evnt = await client.Events.GetTraceEventAsync(DefaultAppId, events.Value[0].Id, timespan); Assert.NotNull(evnt); Assert.NotNull(evnt.Value); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs index 944510faea98..1ed7cd3eed43 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs @@ -1,5 +1,7 @@ -using System.Threading.Tasks; +using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.Azure.ApplicationInsights; +using Microsoft.Azure.ApplicationInsights.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; using System; @@ -14,12 +16,12 @@ public async Task GetIntervaledMetrics() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg" }; + var aggregation = new List { MetricsAggregation.Avg }; var client = GetClient(ctx); - var metric = await client.GetIntervaledMetricAsync(metricId, timespan, interval, aggregation); + var metric = await client.Metrics.GetIntervaledMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose @@ -37,12 +39,18 @@ public async Task GetIntervaledMetrics_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg", "count", "max", "min", "sum" }; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var client = GetClient(ctx); - var metric = await client.GetIntervaledMetricAsync(metricId, timespan, interval, aggregation); + var metric = await client.Metrics.GetIntervaledMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs index 6cc9f8cc648d..51ce522b2fbd 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Azure.ApplicationInsights; using Microsoft.Azure.ApplicationInsights.Models; @@ -15,13 +16,13 @@ public async Task GetIntervaledSegmentedMetrics() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg" }; + var aggregation = new List { MetricsAggregation.Avg }; var segments = new[] { "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetIntervaledSegmentedMetricAsync(metricId, timespan, interval, aggregation, segments); + var metric = await client.Metrics.GetIntervaledSegmentedMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation, segments); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose @@ -49,13 +50,19 @@ public async Task GetIntervaledSegmentedMetrics_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg", "count", "max", "min", "sum" }; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var segments = new[] { "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetIntervaledSegmentedMetricAsync(metricId, timespan, interval, aggregation, segments); + var metric = await client.Metrics.GetIntervaledSegmentedMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation, segments); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose @@ -83,13 +90,13 @@ public async Task GetIntervaledMultiSegmentedMetrics() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg" }; + var aggregation = new List { MetricsAggregation.Avg }; var segments = new[] { "request/name", "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetIntervaledSegmentedMetricAsync(metricId, timespan, interval, aggregation, segments); + var metric = await client.Metrics.GetIntervaledSegmentedMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation, segments); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose @@ -126,13 +133,19 @@ public async Task GetIntervaledMultiSegmentedMetrics_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); + var timespan = "PT12H"; var interval = new TimeSpan(1, 0, 0); - var aggregation = new[] { "avg", "count", "max", "min", "sum" }; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var segments = new[] { "request/name", "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetIntervaledSegmentedMetricAsync(metricId, timespan, interval, aggregation, segments); + var metric = await client.Metrics.GetIntervaledSegmentedMetricAsync(DefaultAppId, metricId, timespan, interval, aggregation, segments); Assert.Equal(interval, metric.Interval); Assert.Equal(13, metric.Intervals.Count); // Actually 13 because of time rounding, I suppose diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs index b7433b106277..a8ae23749281 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs @@ -4,6 +4,8 @@ using Microsoft.Azure.ApplicationInsights.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; +using System.Runtime.Serialization; +using System; namespace Data.ApplicationInsights.Tests.Metrics { @@ -25,7 +27,7 @@ public async Task GetMetrics(MetricsPostBodySchema metric, bool hasInterval, boo }; var client = GetClient(ctx); - var metrics = await client.GetMetricsAsync(metricRequest); + var metrics = await client.Metrics.GetMultipleAsync(DefaultAppId, metricRequest); Assert.NotNull(metrics); Assert.Equal(1, metrics.Count); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs index e40de8f41ea8..e271935ed6d9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using Microsoft.Azure.ApplicationInsights.Models; using Xunit; @@ -12,8 +13,8 @@ public class MetricsTestBase : DataPlaneTestBase Parameters = new MetricsPostBodySchemaParameters { MetricId = "requests/duration", - Aggregation = new[] { "avg" }, - Timespan = new System.TimeSpan(12, 0, 0) + Aggregation = new List { MetricsAggregation.Avg }, + Timespan = "PT12H" } }, false, @@ -27,9 +28,9 @@ public class MetricsTestBase : DataPlaneTestBase Parameters = new MetricsPostBodySchemaParameters { MetricId = "requests/duration", - Aggregation = new[] { "avg" }, - Timespan = new System.TimeSpan(12, 0, 0), - Interval = new System.TimeSpan(3, 0, 0) + Aggregation = new List { MetricsAggregation.Avg }, + Timespan = "PT12H", + Interval = new TimeSpan(3, 0, 0) } }, true, @@ -43,8 +44,8 @@ public class MetricsTestBase : DataPlaneTestBase Parameters = new MetricsPostBodySchemaParameters { MetricId = "requests/duration", - Aggregation = new[] { "avg" }, - Timespan = new System.TimeSpan(12, 0, 0), + Aggregation = new List { MetricsAggregation.Avg }, + Timespan = "PT12H", Segment = new[] { "request/name" } } }, @@ -59,9 +60,9 @@ public class MetricsTestBase : DataPlaneTestBase Parameters = new MetricsPostBodySchemaParameters { MetricId = "requests/duration", - Aggregation = new[] { "avg" }, - Timespan = new System.TimeSpan(12, 0, 0), - Interval = new System.TimeSpan(3, 0, 0), + Aggregation = new List { MetricsAggregation.Avg }, + Timespan = "PT12H", + Interval = new TimeSpan(3, 0, 0), Segment = new[] { "request/name" } } }, @@ -76,9 +77,9 @@ public class MetricsTestBase : DataPlaneTestBase Parameters = new MetricsPostBodySchemaParameters { MetricId = "requests/duration", - Aggregation = new[] { "avg" }, - Timespan = new System.TimeSpan(12, 0, 0), - Interval = new System.TimeSpan(3, 0, 0), + Aggregation = new List { MetricsAggregation.Avg }, + Timespan = "PT12H", + Interval = new TimeSpan(3, 0, 0), Segment = new[] { "request/name", "request/success" } } }, diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs index aa3bd16fc561..c7e3ef21c3b4 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs @@ -1,9 +1,11 @@ -using System.Threading.Tasks; +using System; +using System.Threading.Tasks; +using System.Collections.Generic; using Microsoft.Azure.ApplicationInsights; using Microsoft.Azure.ApplicationInsights.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; -using System; + namespace Data.ApplicationInsights.Tests.Metrics { @@ -15,12 +17,12 @@ public async Task GetSegmentedMetrics() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); - var aggregation = new[] { "avg" }; + var timespan = "PT12H"; + var aggregation = new List { MetricsAggregation.Avg }; var segments = new[] { "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetSegmentedMetricAsync(metricId, timespan, aggregation, segments); + var metric = await client.Metrics.GetSegmentedMetricAsync(DefaultAppId, metricId, timespan, aggregation, segments); Assert.True(metric.Segments.Count > 0); @@ -42,12 +44,18 @@ public async Task GetSegmentedMetrics_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); - var aggregation = new[] { "avg", "count", "max", "min", "sum" }; + var timespan = "PT12H"; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var segments = new[] { "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetSegmentedMetricAsync(metricId, timespan, aggregation, segments); + var metric = await client.Metrics.GetSegmentedMetricAsync(DefaultAppId, metricId, timespan, aggregation, segments); Assert.True(metric.Segments.Count > 0); @@ -69,12 +77,12 @@ public async Task GetMultiSegmentedMetrics() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); - var aggregation = new[] { "avg" }; + var timespan = "PT12H"; + var aggregation = new List { MetricsAggregation.Avg }; var segments = new[] { "request/name", "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetSegmentedMetricAsync(metricId, timespan, aggregation, segments); + var metric = await client.Metrics.GetSegmentedMetricAsync(DefaultAppId, metricId, timespan, aggregation, segments); Assert.True(metric.Segments.Count > 0); @@ -105,12 +113,18 @@ public async Task GetMultiSegmentedMetrics_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new TimeSpan(12, 0, 0); - var aggregation = new[] { "avg", "count", "max", "min", "sum" }; + var timespan = "PT12H"; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var segments = new[] { "request/name", "request/resultCode" }; var client = GetClient(ctx); - var metric = await client.GetSegmentedMetricAsync(metricId, timespan, aggregation, segments); + var metric = await client.Metrics.GetSegmentedMetricAsync(DefaultAppId, metricId, timespan, aggregation, segments); Assert.True(metric.Segments.Count > 0); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs index acba948a4a08..331529d13ad3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs @@ -1,5 +1,7 @@ -using System.Threading.Tasks; +using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.Azure.ApplicationInsights; +using Microsoft.Azure.ApplicationInsights.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; @@ -13,11 +15,11 @@ public async Task GetSummaryMetric() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new System.TimeSpan(12, 0, 0); - var aggregation = new[] {"avg"}; + var timespan = "PT12H"; + var aggregation = new List { MetricsAggregation.Avg }; var client = GetClient(ctx); - var metric = await client.GetMetricSummaryAsync(metricId, timespan, aggregation); + var metric = await client.Metrics.GetMetricSummaryAsync(DefaultAppId, metricId, timespan, aggregation); AssertMetrics(metric, true, false, false, false, false); } @@ -29,11 +31,17 @@ public async Task GetSummaryMetric_AllAggregations() using (var ctx = MockContext.Start(GetType().FullName)) { var metricId = "requests/duration"; - var timespan = new System.TimeSpan(12, 0, 0); - var aggregation = new[] { "avg", "count", "min", "max", "sum" }; + var timespan = "PT12H"; + var aggregation = new List { + MetricsAggregation.Avg, + MetricsAggregation.Count, + MetricsAggregation.Min, + MetricsAggregation.Max, + MetricsAggregation.Sum + }; var client = GetClient(ctx); - var metric = await client.GetMetricSummaryAsync(metricId, timespan, aggregation); + var metric = await client.Metrics.GetMetricSummaryAsync(DefaultAppId, metricId, timespan, aggregation); AssertMetrics(metric, true, true, true, true, true); } diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs index 3bbddf2064d6..c5183e9b67e0 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs @@ -14,14 +14,14 @@ public class QueryTests : DataPlaneTestBase private const int TakeCount = 25; private readonly string SimpleQuery = $"union * | take {TakeCount}"; - private readonly TimeSpan PastHourTimespan = new TimeSpan(1, 0, 0); + private readonly string PastHourTimespan = "PT1H"; [Fact] public async Task CanExecuteSimplePostQuery_DemoWorkspace() { using (var ctx = MockContext.Start(GetType().FullName)) { - await ExecuteAndVerify(async (client) => await client.QueryWithHttpMessagesAsync(SimpleQuery), ctx: ctx); + await ExecuteAndVerify(async (client) => await client.Query.ExecuteWithHttpMessagesAsync(DefaultAppId, SimpleQuery), ctx: ctx); } } @@ -30,7 +30,7 @@ public async Task CanExecutePostQueryWithTimespan_DemoWorkspace() { using (var ctx = MockContext.Start(GetType().FullName)) { - await ExecuteAndVerify(async (client) => await client.QueryWithHttpMessagesAsync(SimpleQuery, PastHourTimespan), ctx: ctx); + await ExecuteAndVerify(async (client) => await client.Query.ExecuteWithHttpMessagesAsync(DefaultAppId, SimpleQuery, PastHourTimespan), ctx: ctx); } } @@ -44,7 +44,7 @@ public async Task GetsExceptionWithSyntaxError() try { - await client.QueryWithHttpMessagesAsync(badQuery, PastHourTimespan); + await client.Query.ExecuteWithHttpMessagesAsync(DefaultAppId, badQuery, PastHourTimespan); Assert.True(false, "An exception should have been thrown."); } catch (ErrorResponseException e) @@ -72,7 +72,7 @@ public async Task GetsExceptionWithShortWait() try { - var result = await client.QueryWithHttpMessagesAsync(longQuery, customHeaders: new Dictionary> { { "Cache-Control", new List { "no-cache" } } }); + var result = await client.Query.ExecuteWithHttpMessagesAsync(DefaultAppId, longQuery, customHeaders: new Dictionary> { { "Cache-Control", new List { "no-cache" } } }); Assert.True(false, "An exception should have been thrown."); } catch (ErrorResponseException e) @@ -94,8 +94,6 @@ private async Task ExecuteAndVerify(ExecuteQuery runQuery, MockContext ctx, stri client.Preferences.IncludeStatistics = true; client.Preferences.IncludeRender = true; - client.AppId = appId; - var response = await runQuery.Invoke(client); Assert.Equal(System.Net.HttpStatusCode.OK, response.Response.StatusCode); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json index 49cdf594b49a..4427f55060af 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "0ad2810e-5ce5-4c1b-be82-1104b70ade60" + "77677a2a-32f3-4895-adca-f77fffd4159e" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#Collection(Edm.EntityType)\",\r\n \"value\": [\r\n {\r\n \"id\": \"71cc0c07-c4b2-11e7-a91f-5bf3105ea323\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:27:04.251Z\",\r\n \"availabilityResult\": {\r\n \"id\": \"18d1e035-d69e-46b3-8c9a-612630ce446e\",\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 56,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"US : CA-San Jose\",\r\n \"size\": null\r\n },\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7cc68fe2-c4b2-11e7-80d6-358c94948698\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:59.745Z\",\r\n \"availabilityResult\": {\r\n \"id\": \"77eba573-82b1-4cfb-8f48-5ee278b38f23\",\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 402,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"US : IL-Chicago\",\r\n \"size\": null\r\n },\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"23.96.249.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f4e-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:58.153Z\",\r\n \"trace\": {\r\n \"severityLevel\": 0,\r\n \"message\": \"New Request Received\"\r\n },\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"UbMRN5wKsdA=\",\r\n \"parentId\": \"|UbMRN5wKsdA=.bbc126df_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"77eba573-82b1-4cfb-8f48-5ee278b38f23\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_77eba573-82b1-4cfb-8f48-5ee278b38f23\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"23.96.249.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f55-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:58.153Z\",\r\n \"request\": {\r\n \"id\": \"|UbMRN5wKsdA=.bbc126df_\",\r\n \"urlPath\": \"/Reports\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 4.6432,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\"\r\n },\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"UbMRN5wKsdA=\",\r\n \"parentId\": \"UbMRN5wKsdA=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"77eba573-82b1-4cfb-8f48-5ee278b38f23\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_77eba573-82b1-4cfb-8f48-5ee278b38f23\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"23.96.249.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"69ed9505-c4b2-11e7-a12a-b343f5899796\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:48.297Z\",\r\n \"availabilityResult\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 1428,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 11/08/2017 18:26:49 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : IL-Chicago\",\r\n \"size\": null\r\n },\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f52-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.822Z\",\r\n \"dependency\": {\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_5.\",\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\"\r\n },\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f51-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.67Z\",\r\n \"dependency\": {\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_4.\",\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 154,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\"\r\n },\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f50-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.377Z\",\r\n \"dependency\": {\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_3.\",\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 288,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\"\r\n },\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f54-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.314Z\",\r\n \"request\": {\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"urlPath\": \"/Customers/Details/8469\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1247.7841,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": \"\"\r\n },\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"0dUhKQBZ35o=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f4d-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.314Z\",\r\n \"trace\": {\r\n \"severityLevel\": 0,\r\n \"message\": \"New Request Received\"\r\n },\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:34:15 GMT" ], "Via": [ - "1.1 draft-ai-green.ebe944b6-c48f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,15 +47,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "14372" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#Collection(Edm.EntityType)\",\r\n \"value\": [\r\n {\r\n \"id\": \"68c9e131-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12e-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 675,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e129-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.0410310495439,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12a-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.520515524771951,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12b-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1937227776,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12c-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12d-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12f-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 393310208,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e130-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"593c4041-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:32:46.85Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"62130633\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.35.24f98abb_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json index 02059b3b149a..6527f20901da 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "5c560613-1ff8-4a26-91af-9df8b720bf6e" + "5cd9115d-a987-48a1-a300-66b59fb2b2d8" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"4aa3a1f6-c4b2-11e7-ae99-c78cae69dbe8\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:51.47Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1438,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2dcfb7f7-c4b2-11e7-bc23-f358c6c66f97\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:12.414Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1835,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"FR : Paris\",\r\n \"id\": \"b51974ca-142d-436d-a622-0e53758f98fc\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"2a728370-c4b2-11e7-8e7d-ddfad00f9c3c\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:02.481Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 707,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : VA-Ashburn\",\r\n \"id\": \"a9e1f7e6-885d-4b88-a489-009bff2511a3\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.168.8.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"21f29c23-c4b2-11e7-aa86-75a6bdc5d89b\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:44.682Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 817,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 11/08/2017 18:24:45 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : VA-Ashburn\",\r\n \"id\": \"d43019a9-c81e-4c93-8545-d6320fdb54c8\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1c2ad01e-c4b2-11e7-8914-23bab23936ba\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:30.983Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 1520,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 11/08/2017 18:24:32 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1800395a-c4b2-11e7-ae0b-bd02611ff945\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:15.188Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1945,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"SG : Singapore\",\r\n \"id\": \"90641a2a-4b5a-4489-9f87-3af859d4bf84\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec047506-c4b1-11e7-987d-3939968673e0\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:23:14.324Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Employee Create\",\r\n \"success\": \"0\",\r\n \"duration\": 259,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 11/08/2017 18:23:14 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"FR : Paris\",\r\n \"id\": \"96723b01-c12f-4364-a314-6e2683edd223\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"e204a4b2-c4b1-11e7-8bb1-517185e57447\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:23:11.294Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 768,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : CA-San Jose\",\r\n \"id\": \"7b5f6a6f-d73b-453f-8236-4753009b9caa\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"d48941c9-c4b1-11e7-9727-7f2290a0bf79\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:22:36.144Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1035,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : IL-Chicago\",\r\n \"id\": \"0df5e854-5bbe-48b8-9764-02b75dc64382\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"d4bcae31-c4b1-11e7-b66a-792140b8dc33\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:22:23.703Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 2231,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"RU : Moscow\",\r\n \"id\": \"1be3cb61-0c81-482a-a398-9626137161b9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.82.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:32:51 GMT" ], "Via": [ - "1.1 draft-ai-green.9a8afd1f-c4a4-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "17990" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"2931f8f7-bee1-11e8-bca8-b1aa87db86b8\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:58.599Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 1085,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"181c5880-bee1-11e8-8107-47f5defc6d05\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:57.051Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"parentId\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1515,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/23/2018 03:30:58 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"West US\",\r\n \"id\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"175781ed-bee1-11e8-9a92-9198ca8d8246\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:45.27Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_apac-hk-hkn-azr\",\r\n \"WebtestLocationId\": \"apac-hk-hkn-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"parentId\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:45 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"East Asia\",\r\n \"id\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Hong Kong\",\r\n \"stateOrProvince\": \"Central and Western District\",\r\n \"countryOrRegion\": \"Hong Kong\"\r\n }\r\n },\r\n {\r\n \"id\": \"161d2d1a-bee1-11e8-9dfb-3d2d863430ac\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:32.363Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"parentId\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:32 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1961f802-bee1-11e8-b488-630d3a8b57b9\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:30.784Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"parentId\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 927,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"West US\",\r\n \"id\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"089a9e89-bee1-11e8-bd58-fd897a946f95\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:25.572Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_emea-fr-pra-edge\",\r\n \"WebtestLocationId\": \"emea-fr-pra-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"parentId\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 3,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:25 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"France Central\",\r\n \"id\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"04a19f57-bee1-11e8-9a92-9198ca8d8246\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:17.041Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"vm reports-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm reports-fabrikamprod_apac-hk-hkn-azr\",\r\n \"WebtestLocationId\": \"apac-hk-hkn-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"parentId\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 1334,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"East Asia\",\r\n \"id\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Hong Kong\",\r\n \"stateOrProvince\": \"Central and Western District\",\r\n \"countryOrRegion\": \"Hong Kong\"\r\n }\r\n },\r\n {\r\n \"id\": \"09b2023e-bee1-11e8-8c32-efa11b45eb42\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:16.818Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"vm employees creation-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm employees creation-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"parentId\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Employees Creation\",\r\n \"success\": \"0\",\r\n \"duration\": 39,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 09/23/2018 03:30:16 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"097965de-bee1-11e8-8fa4-edd67a8e1ed1\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:07.389Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_apac-sg-sin-azr\",\r\n \"WebtestLocationId\": \"apac-sg-sin-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"996fdc52075c428e822902900e761dc2\",\r\n \"parentId\": \"996fdc52075c428e822902900e761dc2\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 24,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:07 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Southeast Asia\",\r\n \"id\": \"996fdc52075c428e822902900e761dc2\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"044fae8b-bee1-11e8-99f9-e5e5db7721f9\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:56.75Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"parentId\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 523,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/23/2018 03:29:57 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/4aa3a1f6-c4b2-11e7-ae99-c78cae69dbe8", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvNGFhM2ExZjYtYzRiMi0xMWU3LWFlOTktYzc4Y2FlNjlkYmU4", + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/2931f8f7-bee1-11e8-bca8-b1aa87db86b8", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvMjkzMWY4ZjctYmVlMS0xMWU4LWJjYTgtYjFhYTg3ZGI4NmI4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "71f26a30-1534-4c28-9fea-aab27413ee5d" + "c98469a1-5692-4f7e-afc9-0a26cca6a3aa" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"4aa3a1f6-c4b2-11e7-ae99-c78cae69dbe8\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:51.47Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1438,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:40 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:20 GMT" ], "Via": [ - "1.1 draft-ai-green.8992e5a4-c476-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "2294" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"2931f8f7-bee1-11e8-bca8-b1aa87db86b8\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:58.599Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 1085,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json index cc55ec3c376a..985faceae9e6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "98b1fcc6-920b-4124-94c4-7cf8eb41ce20" + "0d6d471d-6d62-4ad4-892f-cec7c525f1b8" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"a2a54102-c4a0-11e7-9423-e52844548012\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:46.387Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 289,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 171,\r\n \"receiveDuration\": 40,\r\n \"processingDuration\": 76\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"Uz0UO\",\r\n \"parentId\": \"Uz0UO\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"a1b69b42-c4a0-11e7-9423-e52844548012\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:44.79Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Customers\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers\",\r\n \"totalDuration\": 528,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 304,\r\n \"receiveDuration\": 204,\r\n \"processingDuration\": 17\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers\",\r\n \"id\": \"AS7KR\",\r\n \"parentId\": \"AS7KR\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Customers\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"a0e9ae52-c4a0-11e7-b686-9788c0e0b34b\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:43.52Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 278,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 168,\r\n \"receiveDuration\": 3,\r\n \"processingDuration\": 105\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"eHt4K\",\r\n \"parentId\": \"eHt4K\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d8ceec2-c4a0-11e7-b944-b5c11e6c4f9f\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:37.879Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 285,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 174,\r\n \"receiveDuration\": 2,\r\n \"processingDuration\": 107\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"lGgxs\",\r\n \"parentId\": \"lGgxs\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cbd90d2-c4a0-11e7-b944-b5c11e6c4f9f\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:36.541Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Customers\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers\",\r\n \"totalDuration\": 461,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 261,\r\n \"receiveDuration\": 180,\r\n \"processingDuration\": 18\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers\",\r\n \"id\": \"snETS\",\r\n \"parentId\": \"snETS\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Customers\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"98c5c9c2-c4a0-11e7-aac9-65e675241eef\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:29.899Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 283,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 170,\r\n \"receiveDuration\": 2,\r\n \"processingDuration\": 108\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"DzCTC\",\r\n \"parentId\": \"DzCTC\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"88bc4222-c4a0-11e7-b686-9788c0e0b34b\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:03.033Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 284,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 178,\r\n \"receiveDuration\": 37,\r\n \"processingDuration\": 67\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"eyeHe\",\r\n \"parentId\": \"eyeHe\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"86441632-c4a0-11e7-b944-b5c11e6c4f9f\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:18:58.448Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Customers\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers\",\r\n \"totalDuration\": 447,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 242,\r\n \"receiveDuration\": 190,\r\n \"processingDuration\": 12\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers\",\r\n \"id\": \"LMajg\",\r\n \"parentId\": \"LMajg\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Customers\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"7facc512-c4a0-11e7-82e6-0fae6c4aae4c\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:18:44.604Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/\",\r\n \"totalDuration\": 7770,\r\n \"performanceBucket\": \"7sec-15sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 411,\r\n \"receiveDuration\": 173,\r\n \"processingDuration\": 6999\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/\",\r\n \"id\": \"XjbCM\",\r\n \"parentId\": \"XjbCM\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"d27b9c92-c49f-11e7-b0a6-f3e6ec5a56a4\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:13:57.613Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Employees\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Employees\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"totalDuration\": 948,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 152,\r\n \"sendDuration\": 556,\r\n \"receiveDuration\": 123,\r\n \"processingDuration\": 117\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Employees\",\r\n \"id\": \"s+y16\",\r\n \"parentId\": \"s+y16\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"gi1fS\"\r\n },\r\n \"user\": {\r\n \"id\": \"STqcV\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Employees\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 61.0\",\r\n \"ip\": \"154.51.133.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:13 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:57 GMT" ], "Via": [ - "1.1 draft-ai-green.8bbb55d0-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.83da5075-be94-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8070" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d6a8e7f1-be68-11e8-8062-f730d67dad18\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:11.898Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"cU57e\",\r\n \"parentId\": \"cU57e\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 689,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 127,\r\n \"receiveDuration\": 12,\r\n \"processingDuration\": 537\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d5bb7ab1-be68-11e8-a196-053f0835bcf4\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:10.33Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"IBPoo\",\r\n \"parentId\": \"IBPoo\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 777,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 7,\r\n \"sendDuration\": 211,\r\n \"receiveDuration\": 22,\r\n \"processingDuration\": 514\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d4b3a7a1-be68-11e8-a099-ef12f83797aa\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:08.618Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"xkpgx\",\r\n \"parentId\": \"xkpgx\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 992,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 150,\r\n \"sendDuration\": 146,\r\n \"receiveDuration\": 17,\r\n \"processingDuration\": 678\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d3197fa1-be68-11e8-9559-79df1a91b6ef\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:05.943Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"uxcYv\",\r\n \"parentId\": \"uxcYv\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 911,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 139,\r\n \"sendDuration\": 135,\r\n \"receiveDuration\": 165,\r\n \"processingDuration\": 471\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"c90d04f1-be68-11e8-9d3e-434b8d1409f9\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:49.051Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"m6glw\",\r\n \"parentId\": \"m6glw\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 1375,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 158,\r\n \"sendDuration\": 131,\r\n \"receiveDuration\": 25,\r\n \"processingDuration\": 1060\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"bf52c8f1-be68-11e8-8587-0db278fbee50\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:32.82Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"TKzFr\",\r\n \"parentId\": \"TKzFr\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 1491,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 132,\r\n \"sendDuration\": 131,\r\n \"receiveDuration\": 14,\r\n \"processingDuration\": 1213\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"bbba11d2-be68-11e8-9a7c-4b0201483313\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:25.744Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd\",\r\n \"id\": \"ARrSc\",\r\n \"parentId\": \"ARrSc\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd\",\r\n \"totalDuration\": 2772,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 255,\r\n \"sendDuration\": 657,\r\n \"receiveDuration\": 126,\r\n \"processingDuration\": 1734\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/a2a54102-c4a0-11e7-9423-e52844548012", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzL2EyYTU0MTAyLWM0YTAtMTFlNy05NDIzLWU1Mjg0NDU0ODAxMg==", + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/d785da71-be68-11e8-b519-694305c1af56", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzL2Q3ODVkYTcxLWJlNjgtMTFlOC1iNTE5LTY5NDMwNWMxYWY1Ng==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "4e336b70-952f-46c9-8991-cebe9ecf5226" + "8b11a025-a14f-4c64-b6f5-51729e4ee8dc" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"a2a54102-c4a0-11e7-9423-e52844548012\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T16:19:46.387Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers/Create\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers/Create\",\r\n \"totalDuration\": 289,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 171,\r\n \"receiveDuration\": 40,\r\n \"processingDuration\": 76\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers/Create\",\r\n \"id\": \"Uz0UO\",\r\n \"parentId\": \"Uz0UO\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"PxoHN\"\r\n },\r\n \"user\": {\r\n \"id\": \"UCYW1\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Create\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"201.6.230.0\",\r\n \"city\": \"São Paulo\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:58 GMT" ], "Via": [ - "1.1 draft-ai-green.97ea3b51-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1124" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json index b52e41981191..48bb814ce856 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "3db3e310-c799-4aea-8ade-502207c931fd" + "1ef14a00-ae0e-453d-a117-90ec4e3bed38" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"73b44920-c4b1-11e7-b2d9-eb336d9acb09\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"kFgbo\",\r\n \"parentId\": \"kFgbo\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"MNwCD\"\r\n },\r\n \"user\": {\r\n \"id\": \"hwO00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"73b02a70-c4b1-11e7-b8d0-9d8a20825f7f\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"kMJZS\",\r\n \"parentId\": \"kMJZS\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"IEGDs\"\r\n },\r\n \"user\": {\r\n \"id\": \"fSJ00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"73cade61-c4b1-11e7-8a33-3b957926b281\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1RnRv\",\r\n \"parentId\": \"1RnRv\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"aWbX+\"\r\n },\r\n \"user\": {\r\n \"id\": \"erE00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked My Tickets Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"73f2d8c0-c4b1-11e7-b46c-6bd14f7dad56\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"PLPl4\",\r\n \"parentId\": \"PLPl4\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"aTvuy\"\r\n },\r\n \"user\": {\r\n \"id\": \"dJB00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.0\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"7401cce0-c4b1-11e7-bc65-5705d5a90e79\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"UAmxN\",\r\n \"parentId\": \"UAmxN\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"V/w/t\"\r\n },\r\n \"user\": {\r\n \"id\": \"hlA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Close Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"7393c8d0-c4b1-11e7-87fe-f5f743a0f0c1\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"wc9Of\",\r\n \"parentId\": \"wc9Of\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Fgfvr\"\r\n },\r\n \"user\": {\r\n \"id\": \"c4D00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.49.100.0\",\r\n \"city\": \"Nantes\",\r\n \"stateOrProvince\": \"Loire-Atlantique\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"73b867d0-c4b1-11e7-bc94-7bc86a6c6cfb\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"c22Sk\",\r\n \"parentId\": \"c22Sk\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"07kLk\"\r\n },\r\n \"user\": {\r\n \"id\": \"dIA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"73808ef1-c4b1-11e7-8cf7-21db31126fd0\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"RwikF\",\r\n \"parentId\": \"RwikF\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"FBrcw\"\r\n },\r\n \"user\": {\r\n \"id\": \"cNA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.49.100.0\",\r\n \"city\": \"Nantes\",\r\n \"stateOrProvince\": \"Loire-Atlantique\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"73d9d280-c4b1-11e7-b710-973c45fc3a94\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"KpPpw\",\r\n \"parentId\": \"KpPpw\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"dp7IB\"\r\n },\r\n \"user\": {\r\n \"id\": \"h8G00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"73be8250-c4b1-11e7-a6b7-a969e2545394\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"0TWWK\",\r\n \"parentId\": \"0TWWK\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"YLZQJ\"\r\n },\r\n \"user\": {\r\n \"id\": \"gJC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Close Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:06 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:34:05 GMT" ], "Via": [ - "1.1 draft-ai-green.8bbb55d0-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8557" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"20c9df61-bee1-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:46.027Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 854,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4373291-bee0-11e8-bcbc-e1ac5dbafb8e\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"49RB7\",\r\n \"parentId\": \"49RB7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bVQgK\"\r\n },\r\n \"user\": {\r\n \"id\": \"fdH00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4307bd0-bee0-11e8-8132-c91c643b54c8\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ZDvt0\",\r\n \"parentId\": \"ZDvt0\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"sTH+U\"\r\n },\r\n \"user\": {\r\n \"id\": \"fzI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42a1330-bee0-11e8-bfec-c1b45411477a\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"kQO86\",\r\n \"parentId\": \"kQO86\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"V976R\"\r\n },\r\n \"user\": {\r\n \"id\": \"eBK00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4286580-bee0-11e8-96df-6df5d5ebcaad\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1j9HR\",\r\n \"parentId\": \"1j9HR\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"r4e1o\"\r\n },\r\n \"user\": {\r\n \"id\": \"fDA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42ad682-bee0-11e8-bdac-57d94f7e26ae\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"M7s40\",\r\n \"parentId\": \"M7s40\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TdStr\"\r\n },\r\n \"user\": {\r\n \"id\": \"h7J00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Close Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f433b020-bee0-11e8-af95-e3029ba2aeff\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"HbT3V\",\r\n \"parentId\": \"HbT3V\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ZGXCN\"\r\n },\r\n \"user\": {\r\n \"id\": \"fnI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429c510-bee0-11e8-b8d2-af212fc2f42d\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"2vV9o\",\r\n \"parentId\": \"2vV9o\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Fitt5\"\r\n },\r\n \"user\": {\r\n \"id\": \"eTD00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42b99d1-bee0-11e8-a6ed-9552d8f572f7\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"L7KKh\",\r\n \"parentId\": \"L7KKh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DVntq\"\r\n },\r\n \"user\": {\r\n \"id\": \"fQE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429ec27-bee0-11e8-907e-e545f2665817\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"6iW7J\",\r\n \"parentId\": \"6iW7J\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"CiSvQ\"\r\n },\r\n \"user\": {\r\n \"id\": \"fDM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.1\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/73b44920-c4b1-11e7-b2d9-eb336d9acb09", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy83M2I0NDkyMC1jNGIxLTExZTctYjJkOS1lYjMzNmQ5YWNiMDk=", + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/20c9df61-bee1-11e8-a58b-a91d072bfa06", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy8yMGM5ZGY2MS1iZWUxLTExZTgtYTU4Yi1hOTFkMDcyYmZhMDY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "0f39cc06-a300-478b-bc23-bea918fd5e7e" + "8d118451-d2d6-45b7-a92a-3597b21acefe" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"73b44920-c4b1-11e7-b2d9-eb336d9acb09\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"kFgbo\",\r\n \"parentId\": \"kFgbo\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"MNwCD\"\r\n },\r\n \"user\": {\r\n \"id\": \"hwO00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "936" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:13 GMT" + "Sun, 23 Sep 2018 03:34:15 GMT" ], "Via": [ - "1.1 draft-ai-green.97ea3b51-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1488" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"20c9df61-bee1-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:46.027Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 854,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json index e4c8a0af6e08..b16d801783fd 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "77fb2d5f-684a-4de2-884b-18dce258305a" + "56d50e7a-fc6f-4b1b-8741-38e88faa1b7b" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"56d80576-c4b2-11e7-9e39-0f9dc2c0405c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:26:31.187Z\",\r\n \"customMetric\": {\r\n \"value\": 0.75,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 0.75,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.75,\r\n \"valueMax\": 0.75,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd6db720-c4b1-11e7-b2d9-eb336d9acb09\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:23:06.3Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd3df490-c4b1-11e7-b640-2fe5591f49f4\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:23:06.128Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dc83f360-c4b1-11e7-945c-11832f8e1383\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:23:04.909Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a48f9c20-c4b1-11e7-b640-2fe5591f49f4\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:21:31.202Z\",\r\n \"customMetric\": {\r\n \"value\": 0.75,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 0.75,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.75,\r\n \"valueMax\": 0.75,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2a483440-c4b1-11e7-abe6-49e3b8c8047a\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:18:06.216Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2a5cf4c1-c4b1-11e7-bec2-e9987d170617\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:18:06.107Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"293871f0-c4b1-11e7-aef7-3f3513639129\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:18:04.825Z\",\r\n \"customMetric\": {\r\n \"value\": 2,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 2,\r\n \"valueCount\": 1,\r\n \"valueMin\": 2,\r\n \"valueMax\": 2,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f1b13460-c4b0-11e7-b640-2fe5591f49f4\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:16:31.147Z\",\r\n \"customMetric\": {\r\n \"value\": 0.75,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 0.75,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.75,\r\n \"valueMax\": 0.75,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7804d401-c4b0-11e7-aa98-a18caffada02\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:13:06.775Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:27:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:52 GMT" ], "Via": [ - "1.1 draft-ai-green.35dc9025-c47e-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "11168" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"983cbff1-bee0-11e8-9714-c3a181cd7267\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:27:11.171Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b5603b42-bede-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:13:51.078Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7fc23012-bede-11e8-8d35-9fa70d0e46e6\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:12:11.164Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cde7f76-bedc-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:58:51.017Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"674c0d02-bedc-11e8-b834-9db56eff5685\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:57:11.159Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"847c0b76-beda-11e8-8385-951c4ec324fd\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:43:50.96Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4ed85af1-beda-11e8-b849-81958ce1867c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:42:11.153Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6bf14ef6-bed8-11e8-adb8-c5d15d632dee\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:28:50.901Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3667b621-bed8-11e8-b834-9db56eff5685\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:27:11.133Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/56d80576-c4b2-11e7-9e39-0f9dc2c0405c", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvNTZkODA1NzYtYzRiMi0xMWU3LTllMzktMGY5ZGMyYzA0MDVj", + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvY2RlMGJlOWQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "d4c04d58-35b0-4b79-a941-8126dbce1ebd" + "63594bdc-960e-43e8-8454-eddaa50af8b6" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"56d80576-c4b2-11e7-9e39-0f9dc2c0405c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2017-11-08T18:26:31.187Z\",\r\n \"customMetric\": {\r\n \"value\": 0.75,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 0.75,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.75,\r\n \"valueMax\": 0.75,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "998" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:27:46 GMT" + "Sun, 23 Sep 2018 03:33:57 GMT" ], "Via": [ - "1.1 draft-ai-green.ebe944b6-c48f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1370" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json index 0e1dd88a9d90..b01532a0fa5c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "c13e4e15-76bb-4e7f-b44f-a9d031712a06" + "5e034524-1412-4fcd-9ffb-2c460e8128d5" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"6b477f52-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.822Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f51-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.67Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 154,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f50-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.377Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 288,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\",\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6b477f4f-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.314Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"success\": \"True\",\r\n \"duration\": 55,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124e-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:51.02Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 64,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124d-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.958Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"success\": \"True\",\r\n \"duration\": 52,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_7.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124c-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.848Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"success\": \"True\",\r\n \"duration\": 116,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_6.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124b-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.802Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"success\": \"True\",\r\n \"duration\": 47,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"204\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124a-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.739Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"success\": \"True\",\r\n \"duration\": 51,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"GET fabrikamaccount\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"47841249-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.63Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\",\r\n \"Blob\": \"fabrikam.txt\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"success\": \"True\",\r\n \"duration\": 110,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:41 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:32 GMT" ], "Via": [ - "1.1 draft-ai-green.b6c14a90-c4a8-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "16087" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"55d82db1-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.368Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db0-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.35Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (1) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\\r\\n WHERE N'NORTHAMERICA\\\\drobbins' = [Extent1].[Identity]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5565bcd0-bee1-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:43.915Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.0.24f98a8f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"success\": \"False\",\r\n \"duration\": 10,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.0.24f98a8f_1.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb733-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.792Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 54,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb732-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.605Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 191,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb731-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.464Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 130,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb730-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.402Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"success\": \"True\",\r\n \"duration\": 63,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7890-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.595Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3ec3f9b0-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.357Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.26.24f98a7d_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.26.24f98a7d_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3e6055e0-bee1-11e8-a09e-f7a6ffb7a6e6\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.123Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.22.24f98a79_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[CreatedAt] AS [CreatedAt], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[ServiceTicketID] AS [ServiceTicketID]\\r\\n FROM [dbo].[ServiceLogEntries] AS [Extent1]\\r\\n WHERE [Extent1].[ServiceTicketID] = @p__linq__0\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.22.24f98a79_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/6b477f52-c4b2-11e7-a140-1d8ea2c47f2e", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy82YjQ3N2Y1Mi1jNGIyLTExZTctYTE0MC0xZDhlYTJjNDdmMmU=", + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/55d82db1-bee1-11e8-9f81-03ad3a4f1e45", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy81NWQ4MmRiMS1iZWUxLTExZTgtOWY4MS0wM2FkM2E0ZjFlNDU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "140ec406-582a-45bf-8289-b580311506f2" + "04580811-4f59-4ca1-a4dc-0f46caf8fb80" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"6b477f52-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:46.822Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0dUhKQBZ35o=\",\r\n \"parentId\": \"|0dUhKQBZ35o=.bbc126de_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"34f4b005-5a40-4524-a9d2-221d022fd8e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_34f4b005-5a40-4524-a9d2-221d022fd8e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.4.1-1362\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|0dUhKQBZ35o=.bbc126de_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:48 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:42 GMT" ], "Via": [ - "1.1 draft-ai-green.4fd29fd6-c40a-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.4d4ee74b-be39-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1798" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"55d82db1-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.368Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json index 14aad9bf1a2a..d8c27a661331 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "24f80e98-c7fb-4309-835f-ded96f50d3b0" + "e2673ef0-f985-440d-8e08-fa17d55904db" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175b-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"13485803\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"|IDJZzKQkY1Q=.9b74e86a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"193388dd-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:44.351Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"18769111\",\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_qabkbm2a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 37,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"sUAXeHd0xjw=\",\r\n \"parentId\": \"|sUAXeHd0xjw=.bbc126d9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d43019a9-c81e-4c93-8545-d6320fdb54c8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_d43019a9-c81e-4c93-8545-d6320fdb54c8\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"193388dc-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:31.032Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"63876043\",\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_qabkbm2a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 37,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"/kIx4AP98xg=\",\r\n \"parentId\": \"|/kIx4AP98xg=.bbc126d6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec360c3c-c4b1-11e7-8824-89ba633af284\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:23:14.295Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"30533405\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"CIvAleKSqdk=\",\r\n \"parentId\": \"|CIvAleKSqdk=.9b74e869_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"96723b01-c12f-4364-a314-6e2683edd223\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_96723b01-c12f-4364-a314-6e2683edd223\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"cf5e51de-c4b1-11e7-b919-cd661d988ff4\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:22:16.409Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"17082036\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"5+lN+Kt/iQ8=\",\r\n \"parentId\": \"|5+lN+Kt/iQ8=.9b74e868_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"93af0852-f395-4f6a-87f6-ab7045ac680a\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_93af0852-f395-4f6a-87f6-ab7045ac680a\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.150.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"b7d27ce1-c4b1-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:21:45.152Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"51101319\",\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_qabkbm2a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 37,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"h1NeEf150/k=\",\r\n \"parentId\": \"|h1NeEf150/k=.bbc126d1_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"146c56b0-2d72-4103-8a5e-f2590437481b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_146c56b0-2d72-4103-8a5e-f2590437481b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.171.141.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"71086302-c4b1-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:19:58.5Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"42969113\",\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_qabkbm2a, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 37,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"j/hOcd6BODo=\",\r\n \"parentId\": \"|j/hOcd6BODo=.bbc126cd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"ccc58165-939a-4500-93d1-3d820b2ee1f0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_ccc58165-939a-4500-93d1-3d820b2ee1f0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6e766d83-c4b1-11e7-b919-cd661d988ff4\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:19:30.084Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"49458267\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"p999cH5j9DU=\",\r\n \"parentId\": \"|p999cH5j9DU=.9b74e867_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"2cd49269-84f3-4c75-87ce-55899fb9b6da\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_2cd49269-84f3-4c75-87ce-55899fb9b6da\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.171.57.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"54cdfa11-c4b1-11e7-9810-31d3c4aab866\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:18:47.053Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"64264417\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"JA32SpoX/VI=\",\r\n \"parentId\": \"|JA32SpoX/VI=.9b74e866_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b388e67c-2ce7-471b-ad83-c502b0b5fc4c\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_b388e67c-2ce7-471b-ad83-c502b0b5fc4c\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.82.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"1bda5b4b-c4b1-11e7-9810-31d3c4aab866\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:17:29.545Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"17062561\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"UujLSpVsKq8=\",\r\n \"parentId\": \"|UujLSpVsKq8=.9b74e865_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"43396fa4-cee2-479d-9d69-d1bca5041ebd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_43396fa4-cee2-479d-9d69-d1bca5041ebd\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:48 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:32:37 GMT" ], "Via": [ - "1.1 draft-ai-green.92e11ccd-c49f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.f2890eab-beb0-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "77498" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"16a521c1-bee1-11e8-98a7-61a1726679a1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:58.855Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"50267222\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"|7f6931950ca84ed1acaabc49e445f8a6.5.24f98a23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"fdc5a3a0-bee0-11e8-b514-e39f2b03ddf1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:16.972Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": \"\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"57620449\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"parentId\": \"|2e055dd9d16d44d6bcb681678741d5b1.0.24f98a1e_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0359b594-bee1-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:57.017Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"36048960\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"parentId\": \"|092c16ea0c6540f594a75030dbb0c164.0.84dd3d23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_092c16ea0c6540f594a75030dbb0c164\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f167bee4-bee0-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:49.081Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15541396\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"84b8211bd1904e3aaec33a013a36a732\",\r\n \"parentId\": \"|84b8211bd1904e3aaec33a013a36a732.0.84dd3d22_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"84b8211bd1904e3aaec33a013a36a732\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_84b8211bd1904e3aaec33a013a36a732\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd734171-bee0-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:21.385Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"26484917\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.35.24f98a17_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dc750b51-bee0-11e8-9b05-f5896ee08563\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:20.505Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"55338703\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.19.24f98a07_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dbe638d1-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:20.044Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"1396589\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.12.24f98a00_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"db6ee5f1-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:19.516Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"31612670\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.5.24f989f9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"d5ca3232-bee0-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:02.681Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"id\": \"9321110\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"9321110\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"id\": \"46636903\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"46636903\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"id\": \"34271770\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"dc9135ae7d774279a71294f7e51357bb\",\r\n \"parentId\": \"|dc9135ae7d774279a71294f7e51357bb.6.24f989f0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"dc9135ae7d774279a71294f7e51357bb\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_dc9135ae7d774279a71294f7e51357bb\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/5f15175b-c4b2-11e7-90a6-31967fcd8bd2", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvNWYxNTE3NWItYzRiMi0xMWU3LTkwYTYtMzE5NjdmY2Q4YmQy", + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/16a521c1-bee1-11e8-98a7-61a1726679a1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvMTZhNTIxYzEtYmVlMS0xMWU4LTk4YTctNjFhMTcyNjY3OWEx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "c67a1510-5e02-4edd-9324-42a09922c758" + "1f07819c-2e9c-43bd-bb98-130cc3f0abcd" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175b-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"13485803\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"|IDJZzKQkY1Q=.9b74e86a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:32:50 GMT" ], "Via": [ - "1.1 draft-ai-green.8992e5a4-c476-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "6067" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"16a521c1-bee1-11e8-98a7-61a1726679a1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:58.855Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"50267222\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"|7f6931950ca84ed1acaabc49e445f8a6.5.24f98a23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json index 5f32182b6490..b745d1a25f43 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "f64b06fc-984f-45ff-bafa-a38bc1bd47f7" + "91f7b0d0-4acb-40a1-9734-4371b34b3708" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"73d62900-c4b1-11e7-b62d-7364f6736f57\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"yBEoi\",\r\n \"parentId\": \"yBEoi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"3p8tX\"\r\n },\r\n \"user\": {\r\n \"id\": \"hnC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"73bd97f0-c4b1-11e7-8234-27f8725203c4\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"pJMNR\",\r\n \"parentId\": \"pJMNR\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"acCl7\"\r\n },\r\n \"user\": {\r\n \"id\": \"dgE00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"73b5f6d1-c4b1-11e7-bc94-7bc86a6c6cfb\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"lwu3Z\",\r\n \"parentId\": \"lwu3Z\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"2y9AY\"\r\n },\r\n \"user\": {\r\n \"id\": \"grC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"73bc5f71-c4b1-11e7-9367-55d94b327b54\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"Z+xv4\",\r\n \"parentId\": \"Z+xv4\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"y/kAe\"\r\n },\r\n \"user\": {\r\n \"id\": \"eAG00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"73d62901-c4b1-11e7-b62d-7364f6736f57\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"j9l1O\",\r\n \"parentId\": \"j9l1O\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"vjcl4\"\r\n },\r\n \"user\": {\r\n \"id\": \"h6O00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"73be8250-c4b1-11e7-9384-11d6ea06afa8\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"KNr2P\",\r\n \"parentId\": \"KNr2P\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"9Se1j\"\r\n },\r\n \"user\": {\r\n \"id\": \"dlI00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"73f48670-c4b1-11e7-b6cd-5912785b9b14\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"75ftc\",\r\n \"parentId\": \"75ftc\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Dn11B\"\r\n },\r\n \"user\": {\r\n \"id\": \"hXH00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"73a83b30-c4b1-11e7-8e66-69b5a20a9fe8\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"tZLY6\",\r\n \"parentId\": \"tZLY6\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"lAXg\"\r\n },\r\n \"user\": {\r\n \"id\": \"gbE00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"73cade62-c4b1-11e7-8a33-3b957926b281\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"jDvir\",\r\n \"parentId\": \"jDvir\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"QcVvr\"\r\n },\r\n \"user\": {\r\n \"id\": \"g5D00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"7394da41-c4b1-11e7-848c-0f800b961f72\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"HPVRp\",\r\n \"parentId\": \"HPVRp\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"EM0m5\"\r\n },\r\n \"user\": {\r\n \"id\": \"dLA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.5\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:21 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:58 GMT" ], "Via": [ - "1.1 draft-ai-green.4fd29fd6-c40a-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8333" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"f42e31e0-bee0-11e8-be0b-11d503b0b708\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"smY5t\",\r\n \"parentId\": \"smY5t\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bDM/F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fJF00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42b24a0-bee0-11e8-a96a-195352e56edd\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BN6dz\",\r\n \"parentId\": \"BN6dz\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Sadu4\"\r\n },\r\n \"user\": {\r\n \"id\": \"f6F00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.0\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f437f5e0-bee0-11e8-8b5d-b36608083c95\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"7i8OU\",\r\n \"parentId\": \"7i8OU\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"X0/g7\"\r\n },\r\n \"user\": {\r\n \"id\": \"f+L00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f427a230-bee0-11e8-bfec-c1b45411477a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1vbp3\",\r\n \"parentId\": \"1vbp3\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qZeb6\"\r\n },\r\n \"user\": {\r\n \"id\": \"ftM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429c510-bee0-11e8-ae8b-2dc93fe195d1\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"f2fnp\",\r\n \"parentId\": \"f2fnp\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"chmw0\"\r\n },\r\n \"user\": {\r\n \"id\": \"fMM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Details\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429ec20-bee0-11e8-ac50-2f2263992ff9\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"u40tP\",\r\n \"parentId\": \"u40tP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DsLmz\"\r\n },\r\n \"user\": {\r\n \"id\": \"hyQ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42705f0-bee0-11e8-9bb6-495e69d4d64f\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"LZsuk\",\r\n \"parentId\": \"LZsuk\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"nedg8\"\r\n },\r\n \"user\": {\r\n \"id\": \"fWN00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Details\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42a3a41-bee0-11e8-8d49-151175eb2745\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ggGbG\",\r\n \"parentId\": \"ggGbG\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"E6QfO\"\r\n },\r\n \"user\": {\r\n \"id\": \"hnG00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f427f050-bee0-11e8-a418-53bb3d28697e\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"qSifY\",\r\n \"parentId\": \"qSifY\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"xoH7L\"\r\n },\r\n \"user\": {\r\n \"id\": \"f4J00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Index\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f430a2e2-bee0-11e8-883f-05595d097d78\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ziETR\",\r\n \"parentId\": \"ziETR\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"29kAt\"\r\n },\r\n \"user\": {\r\n \"id\": \"fTE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/73d62900-c4b1-11e7-b62d-7364f6736f57", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy83M2Q2MjkwMC1jNGIxLTExZTctYjYyZC03MzY0ZjY3MzZmNTc=", + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/f42e31e0-bee0-11e8-be0b-11d503b0b708", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy9mNDJlMzFlMC1iZWUwLTExZTgtYmUwYi0xMWQ1MDNiMGI3MDg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "dc8f3d87-8169-4ef0-b29e-6d60be0bac81" + "94a180e6-e255-4f43-a2ec-a2ba2ec47956" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"73d62900-c4b1-11e7-b62d-7364f6736f57\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:20:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"yBEoi\",\r\n \"parentId\": \"yBEoi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"3p8tX\"\r\n },\r\n \"user\": {\r\n \"id\": \"hnC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "953" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:25 GMT" + "Sun, 23 Sep 2018 03:34:04 GMT" ], "Via": [ - "1.1 draft-ai-green.eee6f457-c48f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"f42e31e0-bee0-11e8-be0b-11d503b0b708\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"smY5t\",\r\n \"parentId\": \"smY5t\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bDM/F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fJF00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json index b35f1ba42337..9b3a81597ada 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "b4a32687-5446-4c55-ae1e-99b17f9e9ac4" + "101ded6c-b72d-4422-9975-1909181f3ee2" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f151752-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151753-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151754-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instanceName\": \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151755-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151756-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instanceName\": \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151757-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 192770048,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151759-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instanceName\": \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151758-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 8784.6123046875,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151750-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1993256960,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instanceName\": \"\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f151751-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 5.29925298690796,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Processor\",\r\n \"counter\": \"% Processor Time\",\r\n \"instanceName\": \"_Total\",\r\n \"instance\": \"_Total\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:32:22 GMT" ], "Via": [ - "1.1 draft-ai-green.9a8afd1f-c4a4-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.7d1dc807-be68-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "9276" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"ec4d97e1-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11907610515838,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e7-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 392265728,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e3-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1943142400,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e5-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e8-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e6-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 671,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e9-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e4-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e2-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.55953805257919,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f10e0628-bee0-11e8-b834-9db56eff5685\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:29.135Z\",\r\n \"performanceCounter\": {\r\n \"value\": 253947904,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/5f151752-c4b2-11e7-90a6-31967fcd8bd2", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvNWYxNTE3NTItYzRiMi0xMWU3LTkwYTYtMzE5NjdmY2Q4YmQy", + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/ec4d97e1-bee0-11e8-a051-554fff31bf13", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvZWM0ZDk3ZTEtYmVlMC0xMWU4LWEwNTEtNTU0ZmZmMzFiZjEz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "4942177c-b2ae-4eb7-8b66-180775dfe3ef" + "6912cbdb-8d20-4989-bef6-31591790e62f" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f151752-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2017-11-08T18:26:13.772Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instanceName\": \"w3wp\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"nouL737Vc+k=\",\r\n \"parentId\": \"|nouL737Vc+k=.9b74e6ce_\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.4.1-1362\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1010" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:21 GMT" + "Sun, 23 Sep 2018 03:32:35 GMT" ], "Via": [ - "1.1 draft-ai-green.9a8afd1f-c4a4-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"ec4d97e1-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11907610515838,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json index c2d8efa80396..c5975e0faf0a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "b32dffa9-19c0-48ff-aa92-4ce627851738" + "123f8896-7022-4aea-8c26-3e5d4b1bf005" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175c-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"IDJZzKQkY1Q=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 2.87,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|IDJZzKQkY1Q=.9b74e86a_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"47841250-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.473Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"PI4k4P069O0=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 629.1148,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|PI4k4P069O0=.bbc126dd_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784124f-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:49.597Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"8j22pwwFlH8=\",\r\n \"parentId\": \"8j22pwwFlH8=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b6af0eaa-a601-41c9-9867-332c9794d9e9\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_b6af0eaa-a601-41c9-9867-332c9794d9e9\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 697.085,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|8j22pwwFlH8=.bbc126dc_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.158.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"2b0218f2-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:11.433Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"qxWoMeb5RJY=\",\r\n \"parentId\": \"qxWoMeb5RJY=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b51974ca-142d-436d-a622-0e53758f98fc\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_b51974ca-142d-436d-a622-0e53758f98fc\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 724.5458,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|qxWoMeb5RJY=.bbc126db_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"2b0218f1-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:01.352Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"YDc8Upvq4Qs=\",\r\n \"parentId\": \"YDc8Upvq4Qs=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a9e1f7e6-885d-4b88-a489-009bff2511a3\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_a9e1f7e6-885d-4b88-a489-009bff2511a3\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 4.4516,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|YDc8Upvq4Qs=.bbc126da_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.168.8.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"193388db-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:43.797Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"sUAXeHd0xjw=\",\r\n \"parentId\": \"sUAXeHd0xjw=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d43019a9-c81e-4c93-8545-d6320fdb54c8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_d43019a9-c81e-4c93-8545-d6320fdb54c8\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 549.2157,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": null,\r\n \"id\": \"|sUAXeHd0xjw=.bbc126d9_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2b0218f0-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:43.313Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4PJU2whhDCA=\",\r\n \"parentId\": \"4PJU2whhDCA=\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 1636.2611,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|4PJU2whhDCA=.bbc126d8_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"193388da-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:29.907Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"/kIx4AP98xg=\",\r\n \"parentId\": \"/kIx4AP98xg=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1120.7324,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": null,\r\n \"id\": \"|/kIx4AP98xg=.bbc126d6_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"193388d9-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:14.509Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"OhKpdKQfvHg=\",\r\n \"parentId\": \"OhKpdKQfvHg=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"90641a2a-4b5a-4489-9f87-3af859d4bf84\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_90641a2a-4b5a-4489-9f87-3af859d4bf84\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 667.2327,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|OhKpdKQfvHg=.bbc126d5_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec360c3d-c4b1-11e7-8824-89ba633af284\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:23:14.295Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"CIvAleKSqdk=\",\r\n \"parentId\": \"CIvAleKSqdk=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"96723b01-c12f-4364-a314-6e2683edd223\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_96723b01-c12f-4364-a314-6e2683edd223\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3176,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|CIvAleKSqdk=.9b74e869_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:25 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:43 GMT" ], "Via": [ - "1.1 draft-ai-green.4fd29fd6-c40a-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.2f3ad4ac-beb6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "13004" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d0-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:45.734Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.20\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.2226,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|c73477afa3cc490ea4f4daccbce562fd.20.24f98aac_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db2-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:44.347Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Create\",\r\n \"success\": \"True\",\r\n \"duration\": 37.6647,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb735-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:36.386Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1113.4207,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": \"\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f95efb0-bee1-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.766Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.37\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.655,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.37.24f98a88_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f4ab5e0-bee1-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.748Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.36\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.0574,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.36.24f98a87_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f31afa0-bee1-11e8-b849-81958ce1867c\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.693Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.34\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.5958,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.34.24f98a85_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f237ed0-bee1-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.676Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.33\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.8541,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.33.24f98a84_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7891-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.593Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.32\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 19.0553,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0dfb00-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.558Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.30\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.852,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.30.24f98a81_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3ed3b120-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.448Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.28\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.5968,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.28.24f98a7f_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/requests/5f15175c-c4b2-11e7-90a6-31967fcd8bd2", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzLzVmMTUxNzVjLWM0YjItMTFlNy05MGE2LTMxOTY3ZmNkOGJkMg==", + "RequestUri": "/v1/apps/DEMO_APP/events/requests/57c816d0-bee1-11e8-a12e-ad1c1c632b87", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzLzU3YzgxNmQwLWJlZTEtMTFlOC1hMTJlLWFkMWMxYzYzMmI4Nw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "d5ac0a40-7286-481e-a088-43df3afd1da0" + "5d1852a1-7034-43aa-99c3-8a08d6bc42bf" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175c-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"IDJZzKQkY1Q=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.4.1-1362\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 2.87,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|IDJZzKQkY1Q=.9b74e86a_\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:52 GMT" ], "Via": [ - "1.1 draft-ai-green.35dc9025-c47e-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1417" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d0-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:45.734Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.20\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.2226,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|c73477afa3cc490ea4f4daccbce562fd.20.24f98aac_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json index b01021d3553a..d939d21326be 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json @@ -10,8 +10,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "343af98e-6395-4de7-b24c-d3e59aecd63f" + "762be1e5-bd20-4524-a9ab-9d5379d48d36" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175a-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"|IDJZzKQkY1Q=.9b74e86a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784123e-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:50.473Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"PI4k4P069O0=\",\r\n \"parentId\": \"|PI4k4P069O0=.bbc126dd_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b7812d45-0c7c-4991-86ae-14740dab98de\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_b7812d45-0c7c-4991-86ae-14740dab98de\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4784123d-c4b2-11e7-90d1-fd4615d10b58\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:49.597Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8j22pwwFlH8=\",\r\n \"parentId\": \"|8j22pwwFlH8=.bbc126dc_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b6af0eaa-a601-41c9-9867-332c9794d9e9\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_b6af0eaa-a601-41c9-9867-332c9794d9e9\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.158.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"2b0218fd-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:11.433Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"qxWoMeb5RJY=\",\r\n \"parentId\": \"|qxWoMeb5RJY=.bbc126db_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b51974ca-142d-436d-a622-0e53758f98fc\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_b51974ca-142d-436d-a622-0e53758f98fc\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"2b0218fc-c4b2-11e7-a140-1d8ea2c47f2e\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:25:01.352Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"YDc8Upvq4Qs=\",\r\n \"parentId\": \"|YDc8Upvq4Qs=.bbc126da_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a9e1f7e6-885d-4b88-a489-009bff2511a3\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_a9e1f7e6-885d-4b88-a489-009bff2511a3\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.168.8.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"19313edc-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:43.797Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"sUAXeHd0xjw=\",\r\n \"parentId\": \"|sUAXeHd0xjw=.bbc126d9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d43019a9-c81e-4c93-8545-d6320fdb54c8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_d43019a9-c81e-4c93-8545-d6320fdb54c8\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"19313edb-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:43.313Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"4PJU2whhDCA=\",\r\n \"parentId\": \"|4PJU2whhDCA=.bbc126d8_\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"19313eda-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:29.907Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"/kIx4AP98xg=\",\r\n \"parentId\": \"|/kIx4AP98xg=.bbc126d6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_a69691c3-5bf9-45bf-b16d-e16ec4b1e67c\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"65.54.78.0\",\r\n \"city\": \"Miami\",\r\n \"stateOrProvince\": \"Florida\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"19313ed9-c4b2-11e7-aef0-ed3694f0ba63\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:24:14.509Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"OhKpdKQfvHg=\",\r\n \"parentId\": \"|OhKpdKQfvHg=.bbc126d5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"90641a2a-4b5a-4489-9f87-3af859d4bf84\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_90641a2a-4b5a-4489-9f87-3af859d4bf84\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D50886F\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec360c3b-c4b1-11e7-8824-89ba633af284\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:23:14.295Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"CIvAleKSqdk=\",\r\n \"parentId\": \"|CIvAleKSqdk=.9b74e869_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"96723b01-c12f-4364-a314-6e2683edd223\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_96723b01-c12f-4364-a314-6e2683edd223\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:27:46 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:20 GMT" ], "Via": [ - "1.1 draft-ai-green.97ea3b51-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "10054" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d1-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:45.769Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.21.24f98aad_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db3-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:44.472Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.3.24f98a94_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5565bcd1-bee1-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:43.928Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.2.24f98a90_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb736-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:40.547Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"a7d75bf8f7a5465da43710fbb403a3fe\",\r\n \"parentId\": \"|a7d75bf8f7a5465da43710fbb403a3fe.0.84dd3d2a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a7d75bf8f7a5465da43710fbb403a3fe\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_a7d75bf8f7a5465da43710fbb403a3fe\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f95efb1-bee1-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.783Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.38.24f98a89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f4ab5e1-bee1-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.766Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.37.24f98a88_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f31afa1-bee1-11e8-b849-81958ce1867c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.711Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Details/1\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.35.24f98a86_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f237ed1-bee1-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.693Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.34.24f98a85_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7892-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.676Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.33.24f98a84_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0dfb01-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.576Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.31.24f98a82_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/5f15175a-c4b2-11e7-90a6-31967fcd8bd2", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy81ZjE1MTc1YS1jNGIyLTExZTctOTBhNi0zMTk2N2ZjZDhiZDI=", + "RequestUri": "/v1/apps/DEMO_APP/events/traces/57c816d1-bee1-11e8-a12e-ad1c1c632b87", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy81N2M4MTZkMS1iZWUxLTExZTgtYTEyZS1hZDFjMWM2MzJiODc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,8 +75,8 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "9f84d1f6-d7cc-4508-831e-5d0ed79e214e" + "293505ca-de1f-463e-967b-6ee32d66b73f" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"5f15175a-c4b2-11e7-90a6-31967fcd8bd2\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2017-11-08T18:26:28.906Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"IDJZzKQkY1Q=\",\r\n \"parentId\": \"|IDJZzKQkY1Q=.9b74e86a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"077523f7-0909-4278-9f65-28e28015c851\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_077523f7-0909-4278-9f65-28e28015c851\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.0-27567\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:28:05 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:33:32 GMT" ], "Via": [ - "1.1 draft-ai-green.10de79d2-c476-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.3d34e0bf-be40-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1117" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d1-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:45.769Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.21.24f98aad_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json new file mode 100644 index 000000000000..8b4051d418f8 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json @@ -0,0 +1,495 @@ +{ + "@odata.context": "https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces", + "value": [ + { + "id": "9a45a490-beba-11e8-bafe-bd28921270d7", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:55:29.545Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /", + "id": "1b9fd9033b524cbd80d4a34abb27db80", + "parentId": "|1b9fd9033b524cbd80d4a34abb27db80.0.84dd38ae_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "1b9fd9033b524cbd80d4a34abb27db80" + }, + "user": { + "id": "us-ca-sjc-azr_1b9fd9033b524cbd80d4a34abb27db80", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "fabrikamfiberapp", + "roleInstance": "RD00155D467AF0" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Jose", + "stateOrProvince": "California", + "countryOrRegion": "United States" + } + }, + { + "id": "927de9c2-beba-11e8-bc0c-6b0f3fcbdb18", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:55:16.502Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Reports", + "id": "f5c2314e49c74d64a032ba538f502537", + "parentId": "|f5c2314e49c74d64a032ba538f502537.0.24f95075_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "f5c2314e49c74d64a032ba538f502537" + }, + "user": { + "id": "apac-hk-hkn-azr_f5c2314e49c74d64a032ba538f502537", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "Hong Kong", + "stateOrProvince": "Central and Western District", + "countryOrRegion": "Hong Kong" + } + }, + { + "id": "87a71a36-beba-11e8-b560-417dc3849c44", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:58.315Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /", + "id": "XDll+SalS0E=", + "parentId": "|XDll+SalS0E=.84dd38ad_", + "syntheticSource": "Bot" + }, + "session": { + "id": "" + }, + "user": { + "id": "", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "fabrikamfiberapp", + "roleInstance": "RD00155D467AF0" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "", + "stateOrProvince": "", + "countryOrRegion": "" + } + }, + { + "id": "862e5ce6-beba-11e8-bafe-bd28921270d7", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:55.830Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /Customers/Details/8469", + "id": "39219ba7134e42e7b910191da93528f1", + "parentId": "|39219ba7134e42e7b910191da93528f1.0.84dd38ac_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "39219ba7134e42e7b910191da93528f1" + }, + "user": { + "id": "us-tx-sn1-azr_39219ba7134e42e7b910191da93528f1", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "fabrikamfiberapp", + "roleInstance": "RD00155D467AF0" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Antonio", + "stateOrProvince": "Texas", + "countryOrRegion": "United States" + } + }, + { + "id": "810f05d2-beba-11e8-af2c-516246e5be26", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:47.267Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /Customers/Details/8469", + "id": "1141497dba4e4945972db9af23307bde", + "parentId": "|1141497dba4e4945972db9af23307bde.0.84dd38ab_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "1141497dba4e4945972db9af23307bde" + }, + "user": { + "id": "us-fl-mia-edge_1141497dba4e4945972db9af23307bde", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "fabrikamfiberapp", + "roleInstance": "RD00155D467AF0" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "Des Moines", + "stateOrProvince": "Iowa", + "countryOrRegion": "United States" + } + }, + { + "id": "740c5581-beba-11e8-92dd-032c40cc7fd7", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:25.428Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Reports", + "id": "a28989e757c84fd6a57d280d32d0c629", + "parentId": "|a28989e757c84fd6a57d280d32d0c629.0.24f95073_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "a28989e757c84fd6a57d280d32d0c629" + }, + "user": { + "id": "emea-gb-db3-azr_a28989e757c84fd6a57d280d32d0c629", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "Dublin", + "stateOrProvince": "Leinster", + "countryOrRegion": "Ireland" + } + }, + { + "id": "72808561-beba-11e8-92dd-032c40cc7fd7", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:21.004Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot", + "id": "994fb712312b47c5b7451e99aa7be96d", + "parentId": "|994fb712312b47c5b7451e99aa7be96d.40.24f95072_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "994fb712312b47c5b7451e99aa7be96d" + }, + "user": { + "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Antonio", + "stateOrProvince": "Texas", + "countryOrRegion": "United States" + } + }, + { + "id": "7267a631-beba-11e8-b250-571a285ca0a0", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:20.978Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Content/fonts/segoewp-webfont.eot", + "id": "994fb712312b47c5b7451e99aa7be96d", + "parentId": "|994fb712312b47c5b7451e99aa7be96d.39.24f95071_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "994fb712312b47c5b7451e99aa7be96d" + }, + "user": { + "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Antonio", + "stateOrProvince": "Texas", + "countryOrRegion": "United States" + } + }, + { + "id": "7263ae91-beba-11e8-bb78-ffa688050455", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:20.861Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Employees", + "id": "994fb712312b47c5b7451e99aa7be96d", + "parentId": "|994fb712312b47c5b7451e99aa7be96d.38.24f95070_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "994fb712312b47c5b7451e99aa7be96d" + }, + "user": { + "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Antonio", + "stateOrProvince": "Texas", + "countryOrRegion": "United States" + } + }, + { + "id": "725cd0c1-beba-11e8-92dd-032c40cc7fd7", + "count": 1, + "type": "trace", + "timestamp": "2018-09-22T22:54:20.837Z", + "customDimensions": null, + "customMeasurements": null, + "operation": { + "name": "GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot", + "id": "994fb712312b47c5b7451e99aa7be96d", + "parentId": "|994fb712312b47c5b7451e99aa7be96d.37.24f9506f_", + "syntheticSource": "Application Insights Availability Monitoring" + }, + "session": { + "id": "994fb712312b47c5b7451e99aa7be96d" + }, + "user": { + "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", + "accountId": "", + "authenticatedId": "" + }, + "cloud": { + "roleName": "", + "roleInstance": "AIConnect2" + }, + "ai": { + "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", + "appName": "fabrikamprod", + "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", + "sdkVersion": "sd:2.6.4-28971" + }, + "trace": { + "message": "New Request Received", + "severityLevel": 0 + }, + "application": { + "version": "" + }, + "client": { + "model": "", + "os": "", + "type": "PC", + "browser": "", + "ip": "0.0.0.0", + "city": "San Antonio", + "stateOrProvince": "Texas", + "countryOrRegion": "United States" + } + } + ] +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json index 7f64d3214fe4..02c08057e522 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "5dca7729-f5c3-4ba4-b93e-8ee8e1a204dd" + "832b1b76-b842-401d-9fcb-b3dd842eafcc" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"18063472-faf9-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:08:51.724Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8e1j9Lsx1vM=\",\r\n \"parentId\": \"|8e1j9Lsx1vM=.1eb67938_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"55602d74-e228-45d5-a1c7-d6a145a1406d\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_55602d74-e228-45d5-a1c7-d6a145a1406d\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"18063471-faf9-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:08:31.209Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"b8XW0KtoHaA=\",\r\n \"parentId\": \"|b8XW0KtoHaA=.1eb67937_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d91b9f44-d301-4237-b2dd-7f0be1f0b782\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_d91b9f44-d301-4237-b2dd-7f0be1f0b782\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.79.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"e5cc3bd4-faf8-11e7-b1b3-113f3aaa8c2a\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:07:34.577Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"KkooR06IDWI=\",\r\n \"parentId\": \"|KkooR06IDWI=.1eb67936_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"ad47507d-d38d-4926-a4b0-2c9071b292e2\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_ad47507d-d38d-4926-a4b0-2c9071b292e2\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"e5cc3bd3-faf8-11e7-b1b3-113f3aaa8c2a\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:07:31.536Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"Jhnwn9zmJ44=\",\r\n \"parentId\": \"|Jhnwn9zmJ44=.1eb67935_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fa3d57d8-cfe1-487b-82b9-d9c7c50c82fb\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_fa3d57d8-cfe1-487b-82b9-d9c7c50c82fb\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.158.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"e5cc3bd2-faf8-11e7-b1b3-113f3aaa8c2a\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:07:06.984Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"BPm3lYVUkIc=\",\r\n \"parentId\": \"|BPm3lYVUkIc=.1eb67934_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"7420e402-3c80-4f61-9b1f-b30c52c91673\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_7420e402-3c80-4f61-9b1f-b30c52c91673\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.142.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"d33f1693-faf8-11e7-b1b3-113f3aaa8c2a\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:06:35.796Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"jv375p8Mzhc=\",\r\n \"parentId\": \"|jv375p8Mzhc=.1eb67933_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5870e757-261a-475e-b912-d22974352965\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_5870e757-261a-475e-b912-d22974352965\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.171.141.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"be8fd4a0-faf8-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:06:20.073Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"506vgaPD7zY=\",\r\n \"parentId\": \"|506vgaPD7zY=.1eb67932_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6a695caf-cdab-49d5-a3de-fef94f426f27\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_6a695caf-cdab-49d5-a3de-fef94f426f27\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a440c0f8-faf8-11e7-abbf-4fd79133bd96\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:05:18.693Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"fR1pnFDCzVg=\",\r\n \"parentId\": \"|fR1pnFDCzVg=.1eb67931_\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"8e3f0e61-faf8-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:05:07.705Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8imo4opLxRg=\",\r\n \"parentId\": \"|8imo4opLxRg=.1eb67930_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"b93eadf8-64c1-48a6-95a5-19acda861394\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_b93eadf8-64c1-48a6-95a5-19acda861394\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"8e3f0e60-faf8-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:04:40.072Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"D/inW5uiwvw=\",\r\n \"parentId\": \"|D/inW5uiwvw=.1eb6792f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9f11ee66-75fb-4785-aa71-707a6da4cc20\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9f11ee66-75fb-4785-aa71-707a6da4cc20\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Tue, 16 Jan 2018 20:10:07 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:10 GMT" ], "Via": [ - "1.1 draft-ai-green.42288ff0-fad2-11e7-998e-70b3d5800002" + "1.1 draft-ai-blue.76a92ffc-be3a-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "9986" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"befec701-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:32.035Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"parentId\": \"|8739ed2b79d04efdb7972d6ad1300e68.0.84dd3d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc6a1260-bee0-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.522Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.3.24f989ba_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"Listing Customers\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc4c0311-bee0-11e8-bb78-ffa688050455\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.521Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/ServiceTickets/Create\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.3.24f989ba_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc4aa381-bee0-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.494Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.2.24f989b9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc43ecc9-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.46Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.1.24f989b8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc0ab451-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.077Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.0.24f989b7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b736e522-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:18.966Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"20a3b00e5449444c81bde5eb05de3222\",\r\n \"parentId\": \"|20a3b00e5449444c81bde5eb05de3222.0.24f989b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20a3b00e5449444c81bde5eb05de3222\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_20a3b00e5449444c81bde5eb05de3222\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a60a8861-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:50.18Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"6f472797f78d4057be8763be476cb5d2\",\r\n \"parentId\": \"|6f472797f78d4057be8763be476cb5d2.0.24f989b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6f472797f78d4057be8763be476cb5d2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6f472797f78d4057be8763be476cb5d2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a532ed11-bee0-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:47.241Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"parentId\": \"|bc9c96c4e8e54e9f97ccc50be43259aa.40.24f989b3_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a525a6a2-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:47.207Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"parentId\": \"|bc9c96c4e8e54e9f97ccc50be43259aa.39.24f989b2_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/18063472-faf9-11e7-9811-fda9bb7fcc53?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy8xODA2MzQ3Mi1mYWY5LTExZTctOTgxMS1mZGE5YmI3ZmNjNTM/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/traces/befec701-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=PT12H", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9iZWZlYzcwMS1iZWUwLTExZTgtYWFjMC1hM2UwYWFmMWNmMGU/dGltZXNwYW49UFQxMkg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "4bb5cc26-08fc-4d94-b93a-fd6f729b533d" + "1366660e-0ac6-445b-9f11-3d345184101e" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"18063472-faf9-11e7-9811-fda9bb7fcc53\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-16T20:08:51.724Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8e1j9Lsx1vM=\",\r\n \"parentId\": \"|8e1j9Lsx1vM=.1eb67938_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"55602d74-e228-45d5-a1c7-d6a145a1406d\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_55602d74-e228-45d5-a1c7-d6a145a1406d\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Tue, 16 Jan 2018 20:10:07 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:11 GMT" ], "Via": [ - "1.1 draft-ai-green.19ef1d9e-faf2-11e7-998e-70b3d5800002" + "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1128" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"befec701-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:32.035Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"parentId\": \"|8739ed2b79d04efdb7972d6ad1300e68.0.84dd3d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json index e43cd9c9e59e..63b90031921d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "97b8e343-ed55-4aaa-ab51-d72dbd3b05e4" + "03eebb9c-ad4b-4269-8bcf-cc6a3ae1e8c7" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:29:16.53Z\",\r\n \"end\": \"2018-01-11T18:29:16.53Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-01-11T06:29:16.53Z\",\r\n \"end\": \"2018-01-11T07:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 351.69\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T07:00:00Z\",\r\n \"end\": \"2018-01-11T08:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 342.35\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T08:00:00Z\",\r\n \"end\": \"2018-01-11T09:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 317.05\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T09:00:00Z\",\r\n \"end\": \"2018-01-11T10:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 357.96\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T10:00:00Z\",\r\n \"end\": \"2018-01-11T11:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 367.1\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T11:00:00Z\",\r\n \"end\": \"2018-01-11T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 340.15\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T12:00:00Z\",\r\n \"end\": \"2018-01-11T13:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 407.54\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T13:00:00Z\",\r\n \"end\": \"2018-01-11T14:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 445.68\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T14:00:00Z\",\r\n \"end\": \"2018-01-11T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 432.96\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T15:00:00Z\",\r\n \"end\": \"2018-01-11T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 376.07\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T16:00:00Z\",\r\n \"end\": \"2018-01-11T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 406.16\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T17:00:00Z\",\r\n \"end\": \"2018-01-11T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 402.97\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T18:00:00Z\",\r\n \"end\": \"2018-01-11T18:29:16.53Z\",\r\n \"requests/duration\": {\r\n \"avg\": 392.95\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:29:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:34:16 GMT" ], "Via": [ - "1.1 draft-ai-green.5e47c7fd-f6b7-11e7-92a5-70b3d5800005" + "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1461" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:34:16.067Z\",\r\n \"end\": \"2018-09-23T03:34:16.067Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:34:16.067Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.18\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 82.91\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.29\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.72\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 84.25\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.48\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.31\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.69\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.62\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.69\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.16\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.1\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:34:16.067Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.12\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json index 52c0af60a976..62bf1a6a4ecb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/metrics/requests%2Fduration?timespan=PT12H&interval=PT1H&aggregation=avg%2Ccount%2Cmax%2Cmin%2Csum", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvbWV0cmljcy9yZXF1ZXN0cyUyRmR1cmF0aW9uP3RpbWVzcGFuPVBUMTJIJmludGVydmFsPVBUMUgmYWdncmVnYXRpb249YXZnJTJDY291bnQlMkNtYXglMkNtaW4lMkNzdW0=", + "RequestUri": "/v1/apps/DEMO_APP/metrics/requests%2Fduration?timespan=PT12H&interval=PT1H&aggregation=avg%2Ccount%2Cmin%2Cmax%2Csum", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvbWV0cmljcy9yZXF1ZXN0cyUyRmR1cmF0aW9uP3RpbWVzcGFuPVBUMTJIJmludGVydmFsPVBUMUgmYWdncmVnYXRpb249YXZnJTJDY291bnQlMkNtaW4lMkNtYXglMkNzdW0=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "afde6092-8575-458a-a8db-ec0fd3125e64" + "cda0f258-f869-4e9c-85be-d3a8c252726d" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:29:17.209Z\",\r\n \"end\": \"2018-01-11T18:29:17.209Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-01-11T06:29:17.209Z\",\r\n \"end\": \"2018-01-11T07:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 351.69,\r\n \"count\": 150,\r\n \"max\": 1359.49,\r\n \"min\": 0.78,\r\n \"sum\": 52753.45\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T07:00:00Z\",\r\n \"end\": \"2018-01-11T08:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 342.35,\r\n \"count\": 307,\r\n \"max\": 1537.83,\r\n \"min\": 0.45,\r\n \"sum\": 105101.61\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T08:00:00Z\",\r\n \"end\": \"2018-01-11T09:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 317.05,\r\n \"count\": 331,\r\n \"max\": 1534.72,\r\n \"min\": 0.44,\r\n \"sum\": 104942.13\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T09:00:00Z\",\r\n \"end\": \"2018-01-11T10:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 357.96,\r\n \"count\": 324,\r\n \"max\": 11883.94,\r\n \"min\": 0.45,\r\n \"sum\": 115977.51\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T10:00:00Z\",\r\n \"end\": \"2018-01-11T11:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 367.1,\r\n \"count\": 295,\r\n \"max\": 1541.61,\r\n \"min\": 0.79,\r\n \"sum\": 108294.73\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T11:00:00Z\",\r\n \"end\": \"2018-01-11T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 340.15,\r\n \"count\": 309,\r\n \"max\": 2831.45,\r\n \"min\": 0.43,\r\n \"sum\": 105105.51\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T12:00:00Z\",\r\n \"end\": \"2018-01-11T13:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 407.54,\r\n \"count\": 245,\r\n \"max\": 1301.81,\r\n \"min\": 0.82,\r\n \"sum\": 99847.42\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T13:00:00Z\",\r\n \"end\": \"2018-01-11T14:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 445.68,\r\n \"count\": 237,\r\n \"max\": 1446.1,\r\n \"min\": 1.09,\r\n \"sum\": 105625.94\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T14:00:00Z\",\r\n \"end\": \"2018-01-11T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 432.96,\r\n \"count\": 249,\r\n \"max\": 2197.17,\r\n \"min\": 0.45,\r\n \"sum\": 107807.64\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T15:00:00Z\",\r\n \"end\": \"2018-01-11T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 376.07,\r\n \"count\": 268,\r\n \"max\": 1449.46,\r\n \"min\": 0.42,\r\n \"sum\": 100786.18\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T16:00:00Z\",\r\n \"end\": \"2018-01-11T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 406.16,\r\n \"count\": 234,\r\n \"max\": 1344.55,\r\n \"min\": 1.01,\r\n \"sum\": 95042.43\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T17:00:00Z\",\r\n \"end\": \"2018-01-11T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 402.97,\r\n \"count\": 236,\r\n \"max\": 1440.31,\r\n \"min\": 0.96,\r\n \"sum\": 95100.92\r\n }\r\n },\r\n {\r\n \"start\": \"2018-01-11T18:00:00Z\",\r\n \"end\": \"2018-01-11T18:29:17.209Z\",\r\n \"requests/duration\": {\r\n \"avg\": 392.95,\r\n \"count\": 110,\r\n \"max\": 1411.66,\r\n \"min\": 0.48,\r\n \"sum\": 43224.63\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:29:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:34:17 GMT" ], "Via": [ - "1.1 draft-ai-green.7a74b33b-f6f8-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.ee5d12a0-be78-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:34:16.595Z\",\r\n \"end\": \"2018-09-23T03:34:16.595Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:34:16.595Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.18,\r\n \"count\": 1393,\r\n \"min\": 0.46,\r\n \"max\": 1493.89,\r\n \"sum\": 103328.4\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 82.91,\r\n \"count\": 3227,\r\n \"min\": 0.46,\r\n \"max\": 1845.07,\r\n \"sum\": 267557.27\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.29,\r\n \"count\": 3241,\r\n \"min\": 0.47,\r\n \"max\": 4191.04,\r\n \"sum\": 240784.55\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.72,\r\n \"count\": 3242,\r\n \"min\": 0.45,\r\n \"max\": 2208.68,\r\n \"sum\": 232530.33\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 84.25,\r\n \"count\": 3244,\r\n \"min\": 0.43,\r\n \"max\": 23005.68,\r\n \"sum\": 273302.4\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.48,\r\n \"count\": 3245,\r\n \"min\": 0.45,\r\n \"max\": 1902.93,\r\n \"sum\": 222214.71\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.31,\r\n \"count\": 3235,\r\n \"min\": 0.45,\r\n \"max\": 1517.37,\r\n \"sum\": 217749.07\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.69,\r\n \"count\": 3258,\r\n \"min\": 0.46,\r\n \"max\": 1676.67,\r\n \"sum\": 227061.78\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.62,\r\n \"count\": 3230,\r\n \"min\": 0.47,\r\n \"max\": 2307.56,\r\n \"sum\": 231343.7\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.69,\r\n \"count\": 3215,\r\n \"min\": 0.49,\r\n \"max\": 2318.67,\r\n \"sum\": 230496.42\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.16,\r\n \"count\": 3227,\r\n \"min\": 0.45,\r\n \"max\": 2159.2,\r\n \"sum\": 216740.5\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.1,\r\n \"count\": 3239,\r\n \"min\": 0.46,\r\n \"max\": 1705.96,\r\n \"sum\": 220583.79\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:34:16.595Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.12,\r\n \"count\": 1724,\r\n \"min\": 0.45,\r\n \"max\": 23236,\r\n \"sum\": 139859.32\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json index 19d98b145fa8..c03b63728538 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "155a2368-fe33-4641-b7a9-68dbac2d3308" + "778932ce-f7ab-4855-ad7d-b3ee93b5a48c" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:57:48.215Z\",\r\n \"end\": \"2018-01-11T18:57:48.215Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-01-11T06:57:48.215Z\",\r\n \"end\": \"2018-01-11T07:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 782.81\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 686.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T07:00:00Z\",\r\n \"end\": \"2018-01-11T08:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1072.48\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 734.96\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 675.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 194.45\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 82.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Debug/Logs\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 74.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.67\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T08:00:00Z\",\r\n \"end\": \"2018-01-11T09:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1286.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1083.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 714.75\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"HEAD Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 580.69\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.27\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.82\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.59\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T09:00:00Z\",\r\n \"end\": \"2018-01-11T10:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11883.94\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1053.68\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 729.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 216.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.33\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 18.73\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 10.9\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.03\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.73\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T10:00:00Z\",\r\n \"end\": \"2018-01-11T11:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1086.53\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 776.66\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 92.39\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 29.46\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.65\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.57\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.06\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.69\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T11:00:00Z\",\r\n \"end\": \"2018-01-11T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1453.29\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1051.18\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 723.65\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.45\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.theme.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.99\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.13\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.44\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.27\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T12:00:00Z\",\r\n \"end\": \"2018-01-11T13:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1029.95\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 714.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.22\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.79\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.28\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T13:00:00Z\",\r\n \"end\": \"2018-01-11T14:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1033\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 736.41\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"HEAD Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 630.33\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.2\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.69\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.67\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.2\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T14:00:00Z\",\r\n \"end\": \"2018-01-11T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1048.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 758.44\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 734.66\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 563.46\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.44\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 65.58\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 35.82\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.47\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T15:00:00Z\",\r\n \"end\": \"2018-01-11T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1429.27\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 988.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 725.58\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 178.54\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.54\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.08\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T16:00:00Z\",\r\n \"end\": \"2018-01-11T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 911.55\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 700.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 10.41\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 8.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.1\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.91\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.36\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.27\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.24\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T17:00:00Z\",\r\n \"end\": \"2018-01-11T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 945.03\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 691.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.04\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.36\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.91\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T18:00:00Z\",\r\n \"end\": \"2018-01-11T18:57:48.215Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 962.49\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 717.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 267.41\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 254.34\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.6\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.86\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.38\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.29\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:57:48 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:25 GMT" ], "Via": [ - "1.1 draft-ai-green.a4821de4-f6df-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "17836" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:25.766Z\",\r\n \"end\": \"2018-09-23T03:30:25.766Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:25.766Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 844.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 517.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.73\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.62\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 57.22\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.83\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.51\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.42\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 845.46\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 604.83\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 516.67\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 391.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 356.26\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 251.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 143.4\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 142.19\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 114.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 72.61\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 855.75\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 510.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.14\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.48\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 45.88\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.86\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 27.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.99\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 826.43\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 482.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.35\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.88\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.74\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.59\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 841.2\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 646.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 357.89\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.62\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 107.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 75.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 75.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 787.44\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 457.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 114.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.7\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 78.46\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 44.66\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.04\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.99\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.79\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 779.77\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 441.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.26\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.61\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.1\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.83\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.45\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 13.75\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 788.22\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 452.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 157.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.41\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.98\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 90.48\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.85\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 889.58\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 456.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 124.36\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.2\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.68\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.11\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.6\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 858.48\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 458.79\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 239.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.07\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.89\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.1\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 788.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 434.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.03\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.3\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.67\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.92\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 16.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 818.01\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 445.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.9\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.1\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.33\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 43.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.75\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.03\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:25.766Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.72\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.53\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json index ef461123ec40..3c721592af10 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "5f719197-ded6-4297-bac7-ff751e304282" + "15983c46-29b0-44e5-8514-f7a6e6650205" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:57:48.755Z\",\r\n \"end\": \"2018-01-11T18:57:48.755Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-01-11T06:57:48.755Z\",\r\n \"end\": \"2018-01-11T07:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 782.81\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 277.94\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T07:00:00Z\",\r\n \"end\": \"2018-01-11T08:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1040.29\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 303.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.29\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T08:00:00Z\",\r\n \"end\": \"2018-01-11T09:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1083.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 273.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.59\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T09:00:00Z\",\r\n \"end\": \"2018-01-11T10:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1053.68\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 319.98\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.33\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T10:00:00Z\",\r\n \"end\": \"2018-01-11T11:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1086.53\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 330.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 7.66\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T11:00:00Z\",\r\n \"end\": \"2018-01-11T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1051.18\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 302.42\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.27\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T12:00:00Z\",\r\n \"end\": \"2018-01-11T13:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1029.95\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 384.73\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.28\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T13:00:00Z\",\r\n \"end\": \"2018-01-11T14:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1033\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 433.48\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.2\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T14:00:00Z\",\r\n \"end\": \"2018-01-11T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1038.3\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 417.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.16\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T15:00:00Z\",\r\n \"end\": \"2018-01-11T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 988.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 351.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.28\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T16:00:00Z\",\r\n \"end\": \"2018-01-11T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 911.55\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 402.47\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.24\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T17:00:00Z\",\r\n \"end\": \"2018-01-11T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 945.03\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 392.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.36\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-01-11T18:00:00Z\",\r\n \"end\": \"2018-01-11T18:57:48.755Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 962.49\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 391.98\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.23\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:57:48 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:26 GMT" ], "Via": [ - "1.1 draft-ai-green.88179daa-f6b2-11e7-8632-70b3d5800008" + "1.1 draft-ai-blue.3d34e0bf-be40-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "3646" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.158Z\",\r\n \"end\": \"2018-09-23T03:30:26.158Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:26.158Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 216.1\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 56.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.17\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 232.94\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 72.61\r\n },\r\n \"request/resultCode\": \"404\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 62.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 220.73\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.12\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 213.49\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.23\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 216.25\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 67.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.17\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 205.63\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.07\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.32\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 203.45\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.96\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.04\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 205.04\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.23\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 228.66\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.39\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.26\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 220.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.52\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.02\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 204.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.15\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 211.12\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.05\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:26.158Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 204.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 66.24\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.71\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json index caa0074f20cc..1ecb52b0c30e 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMetric\",\r\n \"parameters\": {\r\n \"metricId\": \"requests/duration\",\r\n \"timespan\": \"PT12H\",\r\n \"aggregation\": [\r\n \"avg\"\r\n ],\r\n \"interval\": \"PT3H\"\r\n }\r\n }\r\n]", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "224" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "f9ee6659-c904-44d6-9b60-35a2e59dd7aa" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2017-11-08T06:29:02.341Z\",\r\n \"end\": \"2017-11-08T18:29:02.341Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2017-11-08T06:29:02.341Z\",\r\n \"end\": \"2017-11-08T09:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 441.77\r\n }\r\n },\r\n {\r\n \"start\": \"2017-11-08T09:00:00Z\",\r\n \"end\": \"2017-11-08T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 492.49\r\n }\r\n },\r\n {\r\n \"start\": \"2017-11-08T12:00:00Z\",\r\n \"end\": \"2017-11-08T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 408.29\r\n }\r\n },\r\n {\r\n \"start\": \"2017-11-08T15:00:00Z\",\r\n \"end\": \"2017-11-08T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 357.93\r\n }\r\n },\r\n {\r\n \"start\": \"2017-11-08T18:00:00Z\",\r\n \"end\": \"2017-11-08T18:29:02.341Z\",\r\n \"requests/duration\": {\r\n \"avg\": 424.51\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "691" + "29b2546e-a8c6-4971-9aaa-5fe0613ca6af" ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "224" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:02 GMT" + "Sun, 23 Sep 2018 03:30:27 GMT" ], "Via": [ - "1.1 draft-ai-green.ebe944b6-c48f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -60,12 +53,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "685" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.723Z\",\r\n \"end\": \"2018-09-23T03:30:27.723Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:27.723Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 77.75\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.82\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.54\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.98\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:27.723Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.1\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json index 9f48ba0c03e7..32c4c5f18a8d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMultiSegmentMetric\",\r\n \"parameters\": {\r\n \"metricId\": \"requests/duration\",\r\n \"timespan\": \"PT12H\",\r\n \"aggregation\": [\r\n \"avg\"\r\n ],\r\n \"interval\": \"PT3H\",\r\n \"segment\": [\r\n \"request/name\",\r\n \"request/success\"\r\n ]\r\n }\r\n }\r\n]", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "318" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "c749853d-0e5d-45ab-b6f0-6958a2bb2d96" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMultiSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2017-11-08T06:29:04.559Z\",\r\n \"end\": \"2017-11-08T18:29:04.559Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2017-11-08T06:29:04.559Z\",\r\n \"end\": \"2017-11-08T09:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1107.03\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 770.86\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.11\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.08\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.02\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.32\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.94\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.65\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.07\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.81\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T09:00:00Z\",\r\n \"end\": \"2017-11-08T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 14607.51\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1117.57\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 836.76\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.95\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.35\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.79\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.78\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.4\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.67\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.36\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T12:00:00Z\",\r\n \"end\": \"2017-11-08T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 882.89\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 570.29\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1091.93\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 688.24\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 319.43\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 208.11\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 95.51\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 94.97\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.17\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.47\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T15:00:00Z\",\r\n \"end\": \"2017-11-08T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1207.34\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1103.85\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"HEAD Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 920.82\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 680.13\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 575.03\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 473.15\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET customers/create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 300.55\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 247.95\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 240.11\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST Customers/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 212.36\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T18:00:00Z\",\r\n \"end\": \"2017-11-08T18:29:04.559Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1107.79\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 692.64\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.19\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.5\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.48\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.39\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.25\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.18\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.13\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", - "ResponseHeaders": { + "8fcbf07f-450e-4def-a1b7-8a0c5caae13d" + ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "318" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:04 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:28 GMT" ], "Via": [ - "1.1 draft-ai-green.10de79d2-c476-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -60,12 +53,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "7007" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMultiSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:28.537Z\",\r\n \"end\": \"2018-09-23T03:30:28.537Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:28.537Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 849.35\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 513.47\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 245.09\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 160.26\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 145.73\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 123.68\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.74\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.88\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.14\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.27\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/success\": \"True\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 818.36\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 528.77\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.52\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.31\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/success\": \"True\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.09\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.94\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.37\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 819.19\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 449.89\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 117.74\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.78\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 87.12\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.3\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.97\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.19\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.49\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.36\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.92\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 821.68\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 446.23\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.84\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.47\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 85.51\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.93\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.21\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.13\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.43\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:28.537Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.72\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.53\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json index f5291efdab74..13ba400bf6ed 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalSegmentMetric\",\r\n \"parameters\": {\r\n \"metricId\": \"requests/duration\",\r\n \"timespan\": \"PT12H\",\r\n \"aggregation\": [\r\n \"avg\"\r\n ],\r\n \"interval\": \"PT3H\",\r\n \"segment\": [\r\n \"request/name\"\r\n ]\r\n }\r\n }\r\n]", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "285" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "92bd2fc9-90e3-47b2-8432-cc60eb4d40f4" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2017-11-08T06:29:04.281Z\",\r\n \"end\": \"2017-11-08T18:29:04.281Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2017-11-08T06:29:04.281Z\",\r\n \"end\": \"2017-11-08T09:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1107.03\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 770.86\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.11\r\n },\r\n \"request/name\": \"GET Customers/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.08\r\n },\r\n \"request/name\": \"GET Reports/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.02\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.32\r\n },\r\n \"request/name\": \"GET /Content/images/logo_text.png\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.94\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.65\r\n },\r\n \"request/name\": \"GET Employees/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.07\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.81\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T09:00:00Z\",\r\n \"end\": \"2017-11-08T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 14607.51\r\n },\r\n \"request/name\": \"GET customers/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1117.57\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 836.76\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.95\r\n },\r\n \"request/name\": \"GET Employees/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.35\r\n },\r\n \"request/name\": \"GET Reports/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.79\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.78\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.4\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.67\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.36\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T12:00:00Z\",\r\n \"end\": \"2017-11-08T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1091.93\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 726.59\r\n },\r\n \"request/name\": \"GET Reports/Employees\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 688.24\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 319.43\r\n },\r\n \"request/name\": \"GET Reports/Tickets\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 208.11\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 95.51\r\n },\r\n \"request/name\": \"GET Employees/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 94.97\r\n },\r\n \"request/name\": \"GET Customers/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.22\r\n },\r\n \"request/name\": \"GET Reports/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.17\r\n },\r\n \"request/name\": \"GET /Content/images/logo_text.png\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.47\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T15:00:00Z\",\r\n \"end\": \"2017-11-08T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1207.34\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1103.85\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 920.82\r\n },\r\n \"request/name\": \"HEAD Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 680.13\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 575.03\r\n },\r\n \"request/name\": \"GET Reports/Employees\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 473.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 300.55\r\n },\r\n \"request/name\": \"GET customers/create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 247.95\r\n },\r\n \"request/name\": \"GET Employees/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 240.11\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 212.36\r\n },\r\n \"request/name\": \"POST Customers/Create\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2017-11-08T18:00:00Z\",\r\n \"end\": \"2017-11-08T18:29:04.281Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1107.79\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 692.64\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.22\r\n },\r\n \"request/name\": \"GET /Content/images/logo_text.png\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.19\r\n },\r\n \"request/name\": \"GET Reports/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.5\r\n },\r\n \"request/name\": \"GET Employees/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.48\r\n },\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.39\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.25\r\n },\r\n \"request/name\": \"GET /Content/style.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.18\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1.13\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", - "ResponseHeaders": { + "b74da289-23dc-48ea-bf97-dea3f6093e23" + ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "285" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:04 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:28 GMT" ], "Via": [ - "1.1 draft-ai-green.64206c6c-c49f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -60,12 +53,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "4643" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:28.247Z\",\r\n \"end\": \"2018-09-23T03:30:28.247Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:28.247Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 849.35\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 513.47\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 245.09\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 160.26\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 145.73\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 123.68\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.74\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.88\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.14\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.27\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 820.15\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 528.77\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/name\": \"GET Customers/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.52\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.31\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Delete\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.22\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 28.83\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.2\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 819.19\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 449.89\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 117.74\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.78\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 87.12\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.3\r\n },\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.97\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.36\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.92\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.9\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Assign\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 821.68\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 446.23\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.84\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.47\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 85.51\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.22\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.13\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.43\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.57\r\n },\r\n \"request/name\": \"GET Employees/Details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:28.247Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.15\r\n },\r\n \"request/name\": \"GET Employees/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/name\": \"GET Employees/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json index c52f46e7907a..c74a95bd6b03 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"id\": \"AggregatedMetric\",\r\n \"parameters\": {\r\n \"metricId\": \"requests/duration\",\r\n \"timespan\": \"PT12H\",\r\n \"aggregation\": [\r\n \"avg\"\r\n ]\r\n }\r\n }\r\n]", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "189" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "e6b96312-e2b8-4720-95d7-3e8c02ed1e5c" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2017-11-08T06:29:02.147Z\",\r\n \"end\": \"2017-11-08T18:29:02.147Z\",\r\n \"requests/duration\": {\r\n \"avg\": 421.66\r\n }\r\n }\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "162" + "ad699f1c-4976-4cd3-8356-ce497242c401" ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "189" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:02 GMT" + "Sun, 23 Sep 2018 03:30:27 GMT" ], "Via": [ - "1.1 draft-ai-green.92e11ccd-c49f-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.397c0bcb-be72-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -60,12 +53,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "161" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.529Z\",\r\n \"end\": \"2018-09-23T03:30:27.529Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.91\r\n }\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json index 16004e1c8a35..28f510fc8f71 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"id\": \"AggregatedSegmentMetric\",\r\n \"parameters\": {\r\n \"metricId\": \"requests/duration\",\r\n \"timespan\": \"PT12H\",\r\n \"aggregation\": [\r\n \"avg\"\r\n ],\r\n \"segment\": [\r\n \"request/name\"\r\n ]\r\n }\r\n }\r\n]", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "250" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6b4866dd-8bc7-4888-9643-28710423998d" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2017-11-08T06:29:03.083Z\",\r\n \"end\": \"2017-11-08T18:29:03.083Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 14607.51\r\n },\r\n \"request/name\": \"GET customers/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1207.34\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1105.13\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 920.82\r\n },\r\n \"request/name\": \"HEAD Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 740.68\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 676.07\r\n },\r\n \"request/name\": \"GET Reports/Employees\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 473.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 300.55\r\n },\r\n \"request/name\": \"GET customers/create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 279.15\r\n },\r\n \"request/name\": \"GET Reports/Tickets\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 240.11\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "907" + "5a5d82c2-fdee-4163-8895-246c5403ba58" ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "250" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:04 GMT" + "Sun, 23 Sep 2018 03:30:28 GMT" ], "Via": [ - "1.1 draft-ai-green.97ea3b51-c474-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -60,12 +53,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "934" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.953Z\",\r\n \"end\": \"2018-09-23T03:30:27.953Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 826.12\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Assign\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 489.72\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/name\": \"GET Customers/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.14\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.72\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Delete\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.04\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.88\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json index 9335286298e8..31a0ef4dc352 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "31181874-61c5-45f8-9d0d-7e65de5f3829" + "068b90fc-2d62-4880-9cc3-86d0fffe70fe" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:45:15.176Z\",\r\n \"end\": \"2018-01-11T18:45:15.176Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 5983.14\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1429.27\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1286.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1024.09\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 734.66\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 727.26\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 675.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"HEAD Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 605.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 563.46\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 410.08\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:45:15 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:26 GMT" ], "Via": [ - "1.1 draft-ai-green.71239b29-f6e2-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.6b7b32a8-bea4-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1427" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.61Z\",\r\n \"end\": \"2018-09-23T03:30:26.61Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 825.68\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 489.89\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.14\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 26.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.04\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json index 74c45801c616..56dbe4d3920d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "607f61da-8acc-4091-b0a7-f2666a083d05" + "d0fb26d4-c778-4af9-8759-302cf7a7feb8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:45:15.557Z\",\r\n \"end\": \"2018-01-11T18:45:15.557Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1020.66\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 350.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.83\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:45:15 GMT" + "Sun, 23 Sep 2018 03:30:26 GMT" ], "Via": [ - "1.1 draft-ai-green.8d61115b-f6e2-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.5a530b04-be21-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.864Z\",\r\n \"end\": \"2018-09-23T03:30:26.864Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 214.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.86\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.51\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json index 4ce42d53ca88..c4148eabda0a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/metrics/requests%2Fduration?timespan=PT12H&aggregation=avg%2Ccount%2Cmax%2Cmin%2Csum&segment=request%2FresultCode", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvbWV0cmljcy9yZXF1ZXN0cyUyRmR1cmF0aW9uP3RpbWVzcGFuPVBUMTJIJmFnZ3JlZ2F0aW9uPWF2ZyUyQ2NvdW50JTJDbWF4JTJDbWluJTJDc3VtJnNlZ21lbnQ9cmVxdWVzdCUyRnJlc3VsdENvZGU=", + "RequestUri": "/v1/apps/DEMO_APP/metrics/requests%2Fduration?timespan=PT12H&aggregation=avg%2Ccount%2Cmin%2Cmax%2Csum&segment=request%2FresultCode", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvbWV0cmljcy9yZXF1ZXN0cyUyRmR1cmF0aW9uP3RpbWVzcGFuPVBUMTJIJmFnZ3JlZ2F0aW9uPWF2ZyUyQ2NvdW50JTJDbWluJTJDbWF4JTJDc3VtJnNlZ21lbnQ9cmVxdWVzdCUyRnJlc3VsdENvZGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "d0633b00-2913-4b02-a09e-0acfa58b0f5d" + "47fedf09-335a-4801-85b2-5b9e0b916ed4" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:45:14.851Z\",\r\n \"end\": \"2018-01-11T18:45:14.851Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1020.66,\r\n \"count\": 361,\r\n \"max\": 1781.01,\r\n \"min\": 74.6,\r\n \"sum\": 368456.89\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 350.8,\r\n \"count\": 2480,\r\n \"max\": 11883.94,\r\n \"min\": 0.42,\r\n \"sum\": 869990.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.83,\r\n \"count\": 433,\r\n \"max\": 1554.06,\r\n \"min\": 1.14,\r\n \"sum\": 2957.08\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "441" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:45:14 GMT" + "Sun, 23 Sep 2018 03:30:26 GMT" ], "Via": [ - "1.1 draft-ai-green.7388b26a-f6f8-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "441" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.355Z\",\r\n \"end\": \"2018-09-23T03:30:26.355Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 214.42,\r\n \"count\": 4602,\r\n \"min\": 19.12,\r\n \"max\": 3877.63,\r\n \"sum\": 986753.34\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.86,\r\n \"count\": 33491,\r\n \"min\": 0.43,\r\n \"max\": 23236,\r\n \"sum\": 1837205.88\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.51,\r\n \"count\": 721,\r\n \"min\": 1.65,\r\n \"max\": 1004.11,\r\n \"sum\": 6857.46\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json index b880ad7ede93..94e3804a60e9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "003ebbfe-8f0b-428e-a096-f5431cd5ee0a" + "198ce128-c8de-47c5-b8d0-e6cac2f3462f" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:02:37.168Z\",\r\n \"end\": \"2018-01-11T18:02:37.168Z\",\r\n \"requests/duration\": {\r\n \"avg\": 374.22\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "114" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:02:37 GMT" + "Sun, 23 Sep 2018 03:30:27 GMT" ], "Via": [ - "1.1 draft-ai-green.1a7953a2-f6e2-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.58d7d1d7-be9a-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "113" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.3Z\",\r\n \"end\": \"2018-09-23T03:30:27.3Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.93\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json index 881254fc351e..733fd4010824 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "134eb918-334e-4af4-b2fa-527d89925dc0" + "107a18a5-b960-42b2-955b-a5cd3d1fbc39" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-01-11T06:02:36.782Z\",\r\n \"end\": \"2018-01-11T18:02:36.782Z\",\r\n \"requests/duration\": {\r\n \"avg\": 374.22,\r\n \"count\": 3324,\r\n \"min\": 0.42,\r\n \"max\": 11883.94,\r\n \"sum\": 1243895.4\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "169" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:02:37 GMT" + "Sun, 23 Sep 2018 03:30:27 GMT" ], "Via": [ - "1.1 draft-ai-green.ef292093-f6db-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,12 +47,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.094Z\",\r\n \"end\": \"2018-09-23T03:30:27.094Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.93,\r\n \"count\": 38814,\r\n \"min\": 0.43,\r\n \"max\": 23236,\r\n \"sum\": 2830816.67\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json index 36b01f9b2c18..1b1a31230f12 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json @@ -1,22 +1,16 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/query?timespan=PT1H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvcXVlcnk/dGltZXNwYW49UFQxSA==", + "RequestUri": "/v1/apps/DEMO_APP/query", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvcXVlcnk=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"query\": \"union * | take 25\"\r\n}", + "RequestBody": "{\r\n \"query\": \"union * | take 25\",\r\n \"timespan\": \"PT1H\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "36" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "ae346061-3f53-4195-b4fe-31f212099e69" - ] - }, - "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"long\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b527-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"Request Execution Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Request Execution Time\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b526-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"# of Exceps Thrown / sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \".NET CLR Exceptions\",\r\n \"# of Exceps Thrown / sec\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b523-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b522-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 7.73227453231812,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Processor\",\r\n \"% Processor Time\",\r\n \"_Total\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b521-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"Available Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 2581626880,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Memory\",\r\n \"Available Bytes\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b52a-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b524-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b525-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b528-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 199884800,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:05.842Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"iiR4SKTZX9U=\",\r\n \"|iiR4SKTZX9U=.ebddcdf5_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.5.0-33031\",\r\n \"c083b529-0079-11e8-b650-75b841bb347a\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 6623.7890625,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705435-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 241229824,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705431-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.371089930332958,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705436-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 3493725,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705430-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.742179860665917,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705432-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 30,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705433-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"# of Exceps Thrown / sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 23,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \".NET CLR Exceptions\",\r\n \"# of Exceps Thrown / sec\",\r\n \"??APP_CLR_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705434-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Request Execution Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 625,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Request Execution Time\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:12:06.503Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"c0705437-0079-11e8-a295-8f3f3f8b6ed7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db582580-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 240975872,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db582581-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db582582-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db58257b-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.0780615442910561,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db58257d-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db58257c-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.039030772145528,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2018-01-23T20:13:06.552Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467E8D\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.5.0-33031\",\r\n \"db58257e-0079-11e8-a41a-c3f0d36e4cc7\",\r\n \"performanceCounter\",\r\n null,\r\n \"# of Exceps Thrown / sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \".NET CLR Exceptions\",\r\n \"# of Exceps Thrown / sec\",\r\n \"??APP_CLR_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": \"table\",\r\n \"title\": \"\",\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": \"\",\r\n \"annotation\": \"\",\r\n \"by\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 0.0780975,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 331,\r\n \"misses\": 0,\r\n \"total\": 331\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00\",\r\n \"kernel\": \"00:00:00\",\r\n \"totalCpu\": \"00:00:00\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 268437760\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 11879\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { + "6281b1b7-1d28-4d71-b436-34bd4ea3df8f" + ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "59" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Tue, 23 Jan 2018 21:11:47 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:29 GMT" ], "Via": [ - "1.1 draft-ai-green.8ada7764-0010-11e8-b7b8-70b3d5800008" + "1.1 draft-ai-blue.2f3ad4ac-beb6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,12 +52,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "24680" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-23T02:30:29.3525743Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"OUizEYS+Gi4=\",\r\n \"|OUizEYS+Gi4=.84dd3c15_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"a32c1a30-bed8-11e8-a732-87ea3d7f0576\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:30.4307518Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"f45089752f184443b5173a0f3c7b783c\",\r\n \"|f45089752f184443b5173a0f3c7b783c.0.84dd3c16_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"f45089752f184443b5173a0f3c7b783c\",\r\n \"us-ca-sjc-azr_f45089752f184443b5173a0f3c7b783c\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"a3ce2691-bed8-11e8-adb8-c5d15d632dee\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:56.9437613Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /Customers/Details/8469\",\r\n \"ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"|ce890bc2b6cf48da90a1559ab28d5321.0.84dd3c17_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"us-ca-sjc-azr_ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b399e1f2-bed8-11e8-adb8-c5d15d632dee\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.3405049Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.2.24f97d8a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b46c9b30-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.6534214Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.3.24f97d8b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b49c5dc9-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.6652932Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.4.24f97d8c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4b4c7c1-bed8-11e8-9dfd-9b89e60141b7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.673293Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/10\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.5.24f97d8d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4e41521-bed8-11e8-b849-81958ce1867c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.700294Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.6.24f97d8e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4c0aea3-bed8-11e8-98a7-61a1726679a1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7052929Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.7.24f97d8f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b50f6ae8-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7092912Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.8.24f97d90_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b521ba61-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7307559Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.9.24f97d91_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b524c7a2-bed8-11e8-b48b-9b54e5d24a76\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8844434Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.10.24f97d92_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5463252-bed8-11e8-9dfd-9b89e60141b7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8874427Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.11.24f97d93_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b55fd4d1-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8904421Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/7\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.12.24f97d94_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b57f91d1-bed8-11e8-bb78-ffa688050455\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9150328Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.13.24f97d95_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b58b0383-bed8-11e8-9714-c3a181cd7267\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.923473Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.14.24f97d96_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5acbc51-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9294662Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/7\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.15.24f97d97_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5aa4b51-bed8-11e8-972b-85851c7bc73c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9506437Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.16.24f97d98_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5cbb602-bed8-11e8-98a7-61a1726679a1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1439514Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.17.24f97d99_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5db9482-bed8-11e8-b834-9db56eff5685\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1489643Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.18.24f97d9a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5f473b1-bed8-11e8-9b05-f5896ee08563\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1529634Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/2\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.19.24f97d9b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5eaafb1-bed8-11e8-972b-85851c7bc73c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1773391Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.20.24f97d9c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b6042b23-bed8-11e8-b834-9db56eff5685\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1807125Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.21.24f97d9d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b638cfb2-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1837263Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/2\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.22.24f97d9e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b64097e2-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.2054744Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.23.24f97d9f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b63bb5e2-bed8-11e8-b513-e39f2b03ddf1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 0.1250041,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 225,\r\n \"misses\": 0,\r\n \"total\": 225\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0468750\",\r\n \"kernel\": \"00:00:00.0156250\",\r\n \"totalCpu\": \"00:00:00.0625000\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 301991424\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12811,\r\n \"scanned\": 30\r\n },\r\n \"rows\": {\r\n \"total\": 25539648179,\r\n \"scanned\": 4435959\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 15298\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json index bcba8ec75992..bb74c2e699dc 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json @@ -6,18 +6,12 @@ "RequestMethod": "POST", "RequestBody": "{\r\n \"query\": \"union * | take 25\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "36" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.1.0-preview" + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ "response-v1=true,include-render=true,include-statistics=true" @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "518b0cbf-2b1d-438d-bcdf-ca46519c5899" - ] - }, - "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"long\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf3-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"# of Exceps Thrown / sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 18,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \".NET CLR Exceptions\",\r\n \"# of Exceps Thrown / sec\",\r\n \"??APP_CLR_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf5-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 191389696,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf4-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"Request Execution Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 676,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Request Execution Time\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf1-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.256046785314339,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf0-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.512093570628678,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf6-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 18407088,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf2-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 2,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:20:35.768Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"bf64eaf7-c3ad-11e7-ac65-7f79d6be925f\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d83-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"# of Exceps Thrown / sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \".NET CLR Exceptions\",\r\n \"# of Exceps Thrown / sec\",\r\n \"??APP_CLR_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d80-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.104165063045521,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d86-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d84-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"Request Execution Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 624,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Request Execution Time\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d87-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d82-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"??APP_W3SVC_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d85-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 191389696,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:35.769Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"40.112.216.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n null,\r\n \"fabrikamfiberapp\",\r\n \"RD00155D50886F\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"azwapc:2.4.1-1362\",\r\n \"e3494d81-c3ad-11e7-86dd-69f857b580b2\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0.0520825315227605,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"??APP_WIN32_PROC??\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f698-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"IO Data Bytes/sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 8783.330078125,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"IO Data Bytes/sec\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f692-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f697-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"Private Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 183836672,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"Private Bytes\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f690-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"Available Bytes\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 1991233536,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Memory\",\r\n \"Available Bytes\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f696-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"Request Execution Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Request Execution Time\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f699-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests In Application Queue\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests In Application Queue\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f691-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 5.23315286636353,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Processor\",\r\n \"% Processor Time\",\r\n \"_Total\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f693-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"% Processor Time Normalized\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"Process\",\r\n \"% Processor Time Normalized\",\r\n \"w3wp\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ],\r\n [\r\n \"2017-11-07T11:21:39.857Z\",\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n \"Gh/pxg8f2tI=\",\r\n \"|Gh/pxg8f2tI=.c643f4b0_\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"PC\",\r\n null,\r\n null,\r\n \"52.173.91.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n null,\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"pc:2.4.1-1362\",\r\n \"e4d4f694-c3ad-11e7-a2d8-6d455db45900\",\r\n \"performanceCounter\",\r\n null,\r\n \"Requests/Sec\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n null,\r\n null,\r\n 0,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"ASP.NET Applications\",\r\n \"Requests/Sec\",\r\n \"_LM_W3SVC_1_ROOT_FabrikamProd\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": \"table\",\r\n \"title\": \"\",\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": \"\",\r\n \"annotation\": \"\",\r\n \"by\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 0.2343273,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 445,\r\n \"misses\": 0,\r\n \"total\": 445\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0312500\",\r\n \"kernel\": \"00:00:00.0156250\",\r\n \"totalCpu\": \"00:00:00.0468750\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 50331936\r\n }\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { + "6b0d861b-f77d-4ac1-84f1-0259ab2d9541" + ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Wed, 08 Nov 2017 18:29:05 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:32:11 GMT" ], "Via": [ - "1.1 draft-ai-green.b6c14a90-c4a8-11e7-b56b-70b3d5800008" + "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,12 +52,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "24881" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-22T00:23:47.6667741Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.8.f8ca253e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c5e0cde2-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.1837101Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.10.f8ca2540_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6159982-bdfd-11e8-b3ff-936f719e4d79\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.2351376Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.11.f8ca2541_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c61c7751-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.2865786Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/7\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.12.f8ca2542_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c631fb21-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.872289Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.17.f8ca2547_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c67e4662-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:49.0992214Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.21.f8ca254b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6ddf291-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:49.1502285Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/2\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.22.f8ca254c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6e23851-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.4751421Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.34.f8ca2559_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c799ef91-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.5261411Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Employees/Details/1\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.35.f8ca255a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c7b23281-bdfd-11e8-aabb-53261730f263\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.8695901Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.39.f8ca255e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c7eaf5c3-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:53.1915258Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /Customers/Details/8469\",\r\n \"41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"|41e728af0b3b4c9494ba39d637f4b7a0.0.84dd2297_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"emea-fr-pra-edge_41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Paris\",\r\n \"Paris\",\r\n \"France\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c918a056-bdfd-11e8-bb52-8fbcec20d158\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:54.1281985Z\",\r\n \"Listing Customers\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET ServiceTickets/Create\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"|e5e6e63bf1e24bb0baad4a573499bc3f.3.f8ca2563_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"us-ca-sjc-azr_e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c9c2ea10-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:54.4772089Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"POST /FabrikamProd/ServiceTickets/Create\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"|e5e6e63bf1e24bb0baad4a573499bc3f.6.f8ca2566_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"us-ca-sjc-azr_e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c9f0d7e0-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:14.6816004Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"|e3f2246bfcd44118b0760bbfe6956bf2.0.84dd2299_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"us-fl-mia-edge_e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d5e72136-bdfd-11e8-b894-6318c09dadc7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:15.7075412Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.2.f8ca256c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6797628-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:15.9999672Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.3.f8ca256d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6b51f99-bdfd-11e8-aabb-53261730f263\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.0278693Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.4.f8ca256e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6aba9b1-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.0543667Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/10\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.5.f8ca256f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6b9da81-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1252418Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.7.f8ca2571_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6ddb632-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1497934Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.8.f8ca2572_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6eea621-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1918803Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.9.f8ca2573_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d703b4c2-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.4580428Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.10.f8ca2574_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d7086fb2-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.485229Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.11.f8ca2575_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d71e1a91-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.5568878Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.13.f8ca2577_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d72ebc63-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.582095Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.14.f8ca2578_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d760c8e1-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 5.3283847,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 775,\r\n \"misses\": 0,\r\n \"total\": 775\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0312500\",\r\n \"kernel\": \"00:00:00\",\r\n \"totalCpu\": \"00:00:00.0312500\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 553796928\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12822,\r\n \"scanned\": 11634\r\n },\r\n \"rows\": {\r\n \"total\": 25539654906,\r\n \"scanned\": 21626473476\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 15500\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json index a4c512d9664c..e7f49928b08a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json @@ -6,12 +6,6 @@ "RequestMethod": "POST", "RequestBody": "{\r\n \"query\": \"union * | order by operation_Id | order by timestamp | order by operation_Id | order by timestamp | order by operation_Id | order by timestamp | order by operation_Id | order by timestamp\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "206" - ], "Cache-Control": [ "no-cache" ], @@ -19,7 +13,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -29,25 +23,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "b3c9e4e9-bc3d-41ea-895a-7ef83130dbab" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Gateway timeout\",\r\n \"code\": \"GatewayTimeout\",\r\n \"innererror\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"Connection error\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "131" + "0e0e7402-10d4-454a-8e44-a22c7f28bfa0" ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "206" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Thu, 11 Jan 2018 18:11:58 GMT" + "Sun, 23 Sep 2018 03:32:05 GMT" ], "Via": [ - "1.1 draft-ai-green.ef292093-f6db-11e7-81e8-70b3d5800002" + "1.1 draft-ai-blue.fd108546-be66-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -62,12 +55,19 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "Preference-Applied": [ "wait=1" + ], + "Content-Length": [ + "131" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Gateway timeout\",\r\n \"code\": \"GatewayTimeout\",\r\n \"innererror\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"Connection error\"\r\n }\r\n }\r\n}", "StatusCode": 504 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json index 198699b1da49..debfe29c6e17 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json @@ -1,22 +1,16 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/query?timespan=PT1H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvcXVlcnk/dGltZXNwYW49UFQxSA==", + "RequestUri": "/v1/apps/DEMO_APP/query", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvcXVlcnk=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"query\": \"union * | foobar\"\r\n}", + "RequestBody": "{\r\n \"query\": \"union * | foobar\",\r\n \"timespan\": \"PT1H\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "x-api-key": [ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -26,25 +20,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "caf78f93-b483-45d3-b16c-0f4e38841ba0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"The request had some invalid properties\",\r\n \"code\": \"BadArgumentError\",\r\n \"innererror\": {\r\n \"code\": \"SyntaxError\",\r\n \"message\": \"A recognition error occurred in the query.\",\r\n \"innererror\": {\r\n \"code\": \"SYN0002\",\r\n \"message\": \"Query could not be parsed at 'foobar' on line [1,10]\",\r\n \"line\": 1,\r\n \"pos\": 10,\r\n \"token\": \"foobar\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "312" + "40fef7ed-dccb-493c-b953-8dfd172c797a" ], "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ + "58" + ] + }, + "ResponseHeaders": { "Connection": [ "keep-alive" ], "Date": [ - "Tue, 23 Jan 2018 21:11:48 GMT" + "Sun, 23 Sep 2018 03:32:06 GMT" ], "Via": [ - "1.1 draft-ai-green.0950b5b9-0053-11e8-b7b8-70b3d5800008" + "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,9 +52,16 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json; charset=utf-8" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"The request had some invalid properties\",\r\n \"code\": \"BadArgumentError\",\r\n \"innererror\": {\r\n \"code\": \"SyntaxError\",\r\n \"message\": \"A recognition error occurred in the query.\",\r\n \"innererror\": {\r\n \"code\": \"SYN0002\",\r\n \"message\": \"Query could not be parsed at 'foobar' on line [1,10]\",\r\n \"line\": 1,\r\n \"pos\": 10,\r\n \"token\": \"foobar\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 400 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json index 87c11f10b83d..c1d57534fbf5 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "38998210-a813-40a6-aa7a-9e4eb8b3a2d8" + "8aac75ed-06e2-4ce6-bf0b-e98ce43e3d6c" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"f2e61675-fbbf-11e7-be69-c1189d9d8f04\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:52:12.691Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1430,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"0bd81b92-eae3-479a-8ac2-d9f9cd9560b9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.142.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"d6f25328-fbbf-11e7-8d75-d9146355c7bd\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:51:21.305Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 993,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"RU : Moscow\",\r\n \"id\": \"891f8bce-9251-4d08-b011-263e00496898\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.79.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"c21d39d1-fbbf-11e7-9885-31c84b4b0017\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:49.722Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 622,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 01/17/2018 19:50:50 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : IL-Chicago\",\r\n \"id\": \"7c1ff8e1-9cb7-4988-b510-5436b11d39dc\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"c3046567-fbbf-11e7-b904-8935f3b0215c\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:36.623Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 62,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : CA-San Jose\",\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a6ec51bd-fbbf-11e7-ad2d-911d7d054dfb\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.12Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 1398,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 01/17/2018 19:50:15 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b48c2c42-fbbf-11e7-b1de-2fc0580a70ce\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.216Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1735,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"SG : Singapore\",\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d78bb81-fbbf-11e7-84b1-c93014bbcea9\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.122Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 1055,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"BR : Sao Paulo\",\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c2f2492-fbbf-11e7-91ca-7fa43ffbb3a4\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:36.583Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Employee Create\",\r\n \"success\": \"0\",\r\n \"duration\": 499,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 01/17/2018 19:49:37 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"BR : Sao Paulo\",\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"97671554-fbbf-11e7-8eaa-01be7136926f\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.878Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 254,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : TX-San Antonio\",\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8a59415e-fbbf-11e7-8c58-5de0314797d3\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:24.82Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Employee Create\",\r\n \"success\": \"0\",\r\n \"duration\": 254,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 01/17/2018 19:49:25 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"RU : Moscow\",\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:24 GMT" ], "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "2280" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:19.274Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 2540,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:19 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:21 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/f2e61675-fbbf-11e7-be69-c1189d9d8f04?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvZjJlNjE2NzUtZmJiZi0xMWU3LWJlNjktYzExODlkOWQ4ZjA0P3RpbWVzcGFuPVBUMTJI", + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvZTBhM2U4NDUtYmVlMC0xMWU4LTllYzAtYTVjNmViNmYzYzI1P3RpbWVzcGFuPVAxRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "48417b50-5a0f-4e51-b5a4-254785a8a700" + "2c1cb641-6e6a-4e83-9bf1-ec3cf5048d79" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"f2e61675-fbbf-11e7-be69-c1189d9d8f04\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:52:12.691Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1430,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"0bd81b92-eae3-479a-8ac2-d9f9cd9560b9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.142.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:24 GMT" ], "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "2300" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:19.274Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 2540,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:19 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:21 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json index ab474b082c3d..e2ad171ba782 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVBUMTJIJiR0b3A9MTA=", + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVAxRCYkdG9wPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "029266ac-5d72-403e-a370-dfabe26684c8" + "12fee4f0-0e1e-48d6-83f7-e896b9a6501c" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:21.263Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1440,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 715,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 708\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"AGZao\",\r\n \"parentId\": \"AGZao\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"26b8a232-fb96-11e7-8421-bd577372ca7c\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:16.895Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1400,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 18,\r\n \"sendDuration\": 723,\r\n \"receiveDuration\": 3,\r\n \"processingDuration\": 647\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"yDi63\",\r\n \"parentId\": \"yDi63\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1bdeec72-fb96-11e7-905b-c30a00070154\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:52:58.443Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1548,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 719,\r\n \"receiveDuration\": 4,\r\n \"processingDuration\": 704\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"bh12g\",\r\n \"parentId\": \"bh12g\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"63a37633-fb72-11e7-8a71-f9d7f0a8b291\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:16.698Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Customers\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers\",\r\n \"totalDuration\": 322,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 200,\r\n \"receiveDuration\": 2,\r\n \"processingDuration\": 118\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers\",\r\n \"id\": \"AXUHE\",\r\n \"parentId\": \"AXUHE\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Customers\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"61d21197-fb72-11e7-9300-87f61212cf07\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:13.912Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Reports\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 2068,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 188,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 1865\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"g7Xv+\",\r\n \"parentId\": \"g7Xv+\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Index\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"600a49e3-fb72-11e7-b0d1-470e151cb3ba\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:11.077Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Employees\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Employees\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"totalDuration\": 443,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 268,\r\n \"receiveDuration\": 11,\r\n \"processingDuration\": 159\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Employees\",\r\n \"id\": \"HrV0f\",\r\n \"parentId\": \"HrV0f\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Employees\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"5cbdde03-fb72-11e7-ac92-671a876fbfd2\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:04.017Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/ServiceTickets/Details/16\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Details\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/16\",\r\n \"totalDuration\": 3085,\r\n \"performanceBucket\": \"3sec-7sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 387,\r\n \"receiveDuration\": 169,\r\n \"processingDuration\": 2307\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/ServiceTickets/Details/16\",\r\n \"id\": \"cYTmY\",\r\n \"parentId\": \"cYTmY\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Details\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.4225dc9f-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1109" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzLzI5YmY3OTk0LWZiOTYtMTFlNy05YzcxLWE1ZmU1YTBiOWEyZT90aW1lc3Bhbj1QVDEySA==", + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/d785da71-be68-11e8-b519-694305c1af56?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzL2Q3ODVkYTcxLWJlNjgtMTFlOC1iNTE5LTY5NDMwNWMxYWY1Nj90aW1lc3Bhbj1QMUQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "b5fbfa80-abff-4386-b981-60b2bd78a685" + "1c858eb6-1d09-4a36-b397-436701041c44" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:21.263Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1440,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 715,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 708\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"AGZao\",\r\n \"parentId\": \"AGZao\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.96ffa9e9-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.fd108546-be66-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1124" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json index 540cbaa82a03..d37881d49ad9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "265713bb-b5b4-44f3-9dd2-fa35d84219f8" + "0a53070a-159a-4863-bf6a-ec9f624d7f45" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uV0X5\",\r\n \"parentId\": \"uV0X5\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0bVu\"\r\n },\r\n \"user\": {\r\n \"id\": \"baC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c650180-fbbf-11e7-ae28-010eee82581a\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"06FQN\",\r\n \"parentId\": \"06FQN\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"kI0Nv\"\r\n },\r\n \"user\": {\r\n \"id\": \"gbE00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c71f9d2-fbbf-11e7-b322-639c75869ff2\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"mCdS+\",\r\n \"parentId\": \"mCdS+\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"sJ42g\"\r\n },\r\n \"user\": {\r\n \"id\": \"a/m00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked My Profile Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"24.16.57.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ca6504b-fbbf-11e7-834a-c71122776c6f\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"85K6O\",\r\n \"parentId\": \"85K6O\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"1pbz3\"\r\n },\r\n \"user\": {\r\n \"id\": \"fmJ00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Schedule Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c7d1d60-fbbf-11e7-a0e6-0f7643b3a861\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"+caJu\",\r\n \"parentId\": \"+caJu\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"+/fjE\"\r\n },\r\n \"user\": {\r\n \"id\": \"dnJ00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c6d17d0-fbbf-11e7-9778-89320908da94\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"UaJM7\",\r\n \"parentId\": \"UaJM7\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"0YAGS\"\r\n },\r\n \"user\": {\r\n \"id\": \"cyK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Delete Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.49.100.0\",\r\n \"city\": \"Nantes\",\r\n \"stateOrProvince\": \"Loire-Atlantique\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c6f3ac0-fbbf-11e7-8e26-03f2c76a96e2\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"DLi1O\",\r\n \"parentId\": \"DLi1O\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Zs61F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fgK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c861e12-fbbf-11e7-b90a-b5427c90e166\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"aTJeC\",\r\n \"parentId\": \"aTJeC\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"y/q9r\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8C00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c64da70-fbbf-11e7-bfef-85315fbb4195\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"rgO33\",\r\n \"parentId\": \"rgO33\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"HFn1e\"\r\n },\r\n \"user\": {\r\n \"id\": \"gDA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c802aa0-fbbf-11e7-ab4a-1998e2c0d806\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"NlMxp\",\r\n \"parentId\": \"NlMxp\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Dx3DD\"\r\n },\r\n \"user\": {\r\n \"id\": \"bZB00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.933f77d5-fbb2-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"4fca4d50-bee0-11e8-be52-f12672a1628f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:23:48.27Z\",\r\n \"customDimensions\": {\r\n \"ServiceProfilerContent\": \"v1|westus2-6eesb2fclnyj2|cf58dcfd-0683-487c-bc84-048789bca8e5|rd00155d467af0fabrikamfiberapp|2496|2018-09-23T03:21:44.0776283Z|2d877218-054f-43db-b0ab-30e4797c789a|2018-09-23T03:23:47.2059620Z|2018-09-23T03:23:48.2702988Z\",\r\n \"ServiceProfilerVersion\": \"v2\",\r\n \"DeveloperMode\": \"true\",\r\n \"RequestId\": \"|0335efaa5f4149e1a00ccdf92c1bc1fe.0.84dd3d0d_\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"parentId\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.4.0-32153\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"ServiceProfilerSample\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy85YzZmM2FiMC1mYmJmLTExZTctOGU1OC02ZjU2MGMzYWQwZjg/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/4fca4d50-bee0-11e8-be52-f12672a1628f?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy80ZmNhNGQ1MC1iZWUwLTExZTgtYmU1Mi1mMTI2NzJhMTYyOGY/dGltZXNwYW49UDFE", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,33 +85,24 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "695b5a46-f594-4553-bd65-5c4801ef2242" + "f1db55b7-655c-4e4f-bfdf-a52ef90b86ef" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uV0X5\",\r\n \"parentId\": \"uV0X5\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0bVu\"\r\n },\r\n \"user\": {\r\n \"id\": \"baC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "937" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" + "Sun, 23 Sep 2018 03:30:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.e74872b8-fb36-11e7-a5b2-70b3d5800008" - ], - "Age": [ - "175" + "1.1 draft-ai-blue.83da5075-be94-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" ], "Vary": [ + "Accept", "Accept-Encoding" ], "X-Content-Type-Options": [ @@ -121,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1319" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"4fca4d50-bee0-11e8-be52-f12672a1628f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:23:48.27Z\",\r\n \"customDimensions\": {\r\n \"ServiceProfilerContent\": \"v1|westus2-6eesb2fclnyj2|cf58dcfd-0683-487c-bc84-048789bca8e5|rd00155d467af0fabrikamfiberapp|2496|2018-09-23T03:21:44.0776283Z|2d877218-054f-43db-b0ab-30e4797c789a|2018-09-23T03:23:47.2059620Z|2018-09-23T03:23:48.2702988Z\",\r\n \"ServiceProfilerVersion\": \"v2\",\r\n \"DeveloperMode\": \"true\",\r\n \"RequestId\": \"|0335efaa5f4149e1a00ccdf92c1bc1fe.0.84dd3d0d_\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"parentId\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.4.0-32153\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"ServiceProfilerSample\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json index fbac03dde2ac..3a3edd5f37ec 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UDFEJiR0b3A9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "d0dd9361-f185-48b3-87a9-9a7885c41964" + "c34dc0ac-75a9-4ccb-99a8-dd25b98961bb" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"a0fe38b0-fbbf-11e7-b9b9-1911379805ea\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.793Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a0ce7630-fbbf-11e7-b8e3-c5cb581b466c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.715Z\",\r\n \"customMetric\": {\r\n \"value\": 1.5,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 1.5,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1.5,\r\n \"valueMax\": 1.5,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a092f3c0-fbbf-11e7-84d3-1b855edf3a77\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.636Z\",\r\n \"customMetric\": {\r\n \"value\": 3,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 3,\r\n \"valueCount\": 1,\r\n \"valueMin\": 3,\r\n \"valueMax\": 3,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a0445e90-fbbf-11e7-96f0-b1141b9a57fa\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.402Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"04782f03-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:28.745Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"runtimeFramework\": \"4.7.2102.0\",\r\n \"baseSdkTargetFramework\": \"net46\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"1urDO1eaC4s=\",\r\n \"parentId\": \"|1urDO1eaC4s=.c43fd029_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.5.0-44811\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"edabd970-fbbe-11e7-b092-b38e18a71446\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.916Z\",\r\n \"customMetric\": {\r\n \"value\": 1.5,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 1.5,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1.5,\r\n \"valueMax\": 1.5,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"edf90f11-fbbe-11e7-96f0-b1141b9a57fa\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.775Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ed513650-fbbe-11e7-b27c-69e6f990b115\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.634Z\",\r\n \"customMetric\": {\r\n \"value\": 2,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 2,\r\n \"valueCount\": 1,\r\n \"valueMin\": 2,\r\n \"valueMax\": 2,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ed75d551-fbbe-11e7-94bd-13d7ced51729\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.447Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3b6f5700-fbbe-11e7-94bd-13d7ced51729\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:40:09.047Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:34 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:25 GMT" ], "Via": [ - "1.1 draft-ai-blue.96ff34b6-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/a0fe38b0-fbbf-11e7-b9b9-1911379805ea?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvYTBmZTM4YjAtZmJiZi0xMWU3LWI5YjktMTkxMTM3OTgwNWVhP3RpbWVzcGFuPVBUMTJI", + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvY2RlMGJlOWQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBlP3RpbWVzcGFuPVAxRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "31049a1f-2e65-4187-bf01-9af6da2ba0fb" + "084ae2d6-5629-4120-8099-d23e91cef8e6" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"a0fe38b0-fbbf-11e7-b9b9-1911379805ea\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.793Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "994" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:34 GMT" + "Sun, 23 Sep 2018 03:30:25 GMT" ], "Via": [ - "1.1 draft-ai-blue.a74bd533-fb36-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1370" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json index 09200b21e77f..380e7fced7a4 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "3ab61ff5-99c8-4aea-a95f-2e7829b5c75c" + "5927f9ba-e97b-437d-8a33-73d17f1607ec" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f45e-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.449Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 48,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45d-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.293Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 155,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45c-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.043Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 251,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45b-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"success\": \"True\",\r\n \"duration\": 76,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45a-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.918Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 77,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f459-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.871Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_7.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f458-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.746Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"success\": \"True\",\r\n \"duration\": 113,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_6.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f457-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.699Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"success\": \"True\",\r\n \"duration\": 53,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"204\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f456-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.636Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"GET fabrikamaccount\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f455-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.527Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\",\r\n \"Blob\": \"fabrikam.txt\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"success\": \"True\",\r\n \"duration\": 119,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.933f77d5-fbb2-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1878" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a60-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:29:21.459Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/b222f45e-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9iMjIyZjQ1ZS1mYmJmLTExZTctODJiZC00MTMwYTFjODAxMTk/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/dd9a2a60-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9kZDlhMmE2MC1iZWUwLTExZTgtOWRmZC05Yjg5ZTYwMTQxYjc/dGltZXNwYW49UDFE", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "fcf1f77c-cd98-429a-bcb8-f119c290c186" + "0cb4bb03-89f7-4ac1-bf30-324eb0d7ec11" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f45e-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.449Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 48,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.6b7b32a8-bea4-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1891" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a60-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:29:21.459Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json index a7c0bbed3f7d..18c6a5514e0a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "5866d191-8e56-44d4-994d-4acc93dad900" + "1619ee7b-e6aa-4139-8ec8-1b796c74f55f" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f462-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.23Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15312812\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca3-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.354Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"41824242\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"|xtXUIM2Tbr8=.c43fd182_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca2-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.025Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"55374404\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"|F/r1noB4Jx0=.c43fd181_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b43-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.196Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"16411082\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"|c42lrvdqyQk=.c43fd180_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b42-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:48:38.689Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"28077334\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"oTWvTwP9qyg=\",\r\n \"parentId\": \"|oTWvTwP9qyg=.c43fd17f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"acb7d340-449c-4d6b-a52f-47ebcc39cc74\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_acb7d340-449c-4d6b-a52f-47ebcc39cc74\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"5e8ca391-fbbf-11e7-b9ad-d9c0457bb13c\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:47:50.266Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"id\": \"11418575\",\r\n \"outerId\": \"0\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"6lmu7umI6kc=\",\r\n \"parentId\": \"|6lmu7umI6kc=.c43fd17e_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4f617f45-f722-42d8-8f02-56decf6cc0ce\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_4f617f45-f722-42d8-8f02-56decf6cc0ce\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.150.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"2c972e0b-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:46:38.773Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"57971789\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"dBRZotWkYAY=\",\r\n \"parentId\": \"|dBRZotWkYAY=.1eb694aa_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d827bcbd-7fae-4a2e-8bfc-f12889c36391\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d827bcbd-7fae-4a2e-8bfc-f12889c36391\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.171.141.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2c972e0a-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:46:27.744Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"6720312\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"Lr+FZX7obok=\",\r\n \"parentId\": \"|Lr+FZX7obok=.1eb694a9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5af37463-6a2d-4e47-8c5e-d0cc5a474682\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_5af37463-6a2d-4e47-8c5e-d0cc5a474682\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"04782f01-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:45:19.137Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"40546674\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"69sqPdret1k=\",\r\n \"parentId\": \"|69sqPdret1k=.c43fd17d_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"1c451544-6077-4d13-9c47-d023c3221187\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_1c451544-6077-4d13-9c47-d023c3221187\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"ee928ffe-fbbe-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:44:43.817Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"60988302\",\r\n \"severityLevel\": \"Critical\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"TYCUEg3ggNQ=\",\r\n \"parentId\": \"|TYCUEg3ggNQ=.1eb694a7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"db579983-3532-4b86-96b1-8bdde7181d57\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_db579983-3532-4b86-96b1-8bdde7181d57\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.a0495a7b-fbba-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "10811" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/b222f462-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvYjIyMmY0NjItZmJiZi0xMWU3LTgyYmQtNDEzMGExYzgwMTE5P3RpbWVzcGFuPVBUMTJI", + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/dbaa6854-bee0-11e8-8385-951c4ec324fd?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvZGJhYTY4NTQtYmVlMC0xMWU4LTgzODUtOTUxYzRlYzMyNGZkP3RpbWVzcGFuPVAxRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,31 +85,26 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6dd0ebc9-df6f-4e19-8f33-68ba9903b9a7" + "428705ad-00ca-4b1f-8adf-23bcdbe688cb" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f462-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.23Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15312812\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.4225b58e-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" + ], + "Age": [ + "6" ], "Server": [ "nginx" ], "Vary": [ - "Accept", "Accept-Encoding" ], "X-Content-Type-Options": [ @@ -119,15 +114,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "10822" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json index 4a87c96cfa2c..446660bf9f36 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QMUQmJHRvcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "496e0c80-3210-4a8e-9f11-d2b3a576f867" + "698bcd38-0dec-4c55-96f7-8980f4685ac2" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-88c9-53bb74d81bb1\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5tfK8\",\r\n \"parentId\": \"5tfK8\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"DN50\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8I00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c83ad10-fbbf-11e7-8b62-35e705aefb67\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"lV2Vi\",\r\n \"parentId\": \"lV2Vi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"hAicd\"\r\n },\r\n \"user\": {\r\n \"id\": \"ehG00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c5dae80-fbbf-11e7-abcc-bfc518423d09\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BKmCi\",\r\n \"parentId\": \"BKmCi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"tROai\"\r\n },\r\n \"user\": {\r\n \"id\": \"h4C00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Customers\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c8b0010-fbbf-11e7-95fd-bb10dd10cbe5\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"4GpHz\",\r\n \"parentId\": \"4GpHz\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"2gp0z\"\r\n },\r\n \"user\": {\r\n \"id\": \"hHR00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c73f5a1-fbbf-11e7-99ed-a5bb5322478f\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"I//NN\",\r\n \"parentId\": \"I//NN\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"boJ/r\"\r\n },\r\n \"user\": {\r\n \"id\": \"ePF00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c94c411-fbbf-11e7-a677-7f5420cc9b17\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CgkWm\",\r\n \"parentId\": \"CgkWm\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"1WsSK\"\r\n },\r\n \"user\": {\r\n \"id\": \"dKI00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c822670-fbbf-11e7-b8f2-bb2383906b70\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CIre\",\r\n \"parentId\": \"CIre\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"vgDQL\"\r\n },\r\n \"user\": {\r\n \"id\": \"fdD00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cbb5ee0-fbbf-11e7-b01f-5fa1ac8aeddd\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FjMMU\",\r\n \"parentId\": \"FjMMU\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"wG07R\"\r\n },\r\n \"user\": {\r\n \"id\": \"h3J00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c5dfca0-fbbf-11e7-bf96-8777e379f10c\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"LO53I\",\r\n \"parentId\": \"LO53I\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"W+I4o\"\r\n },\r\n \"user\": {\r\n \"id\": \"dNK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-8bf2-118dea8db50f\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"zUjUa\",\r\n \"parentId\": \"zUjUa\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Gmur+\"\r\n },\r\n \"user\": {\r\n \"id\": \"dfH00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.7d1dc807-be68-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "934" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"8e7fba40-bedf-11e8-a21a-b51b58ae909a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:20:00.056Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"VJYXP\",\r\n \"parentId\": \"VJYXP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3fhdj\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9N00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/9c71abb0-fbbf-11e7-88c9-53bb74d81bb1?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy85YzcxYWJiMC1mYmJmLTExZTctODhjOS01M2JiNzRkODFiYjE/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/8e7fba40-bedf-11e8-a21a-b51b58ae909a?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy84ZTdmYmE0MC1iZWRmLTExZTgtYTIxYS1iNTFiNThhZTkwOWE/dGltZXNwYW49UDFE", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "9628e30a-ea0c-4170-98be-a99c418889b2" + "7e9461ee-ad19-4202-91ba-a908c580bf49" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-88c9-53bb74d81bb1\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5tfK8\",\r\n \"parentId\": \"5tfK8\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"DN50\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8I00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "945" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" + "Sun, 23 Sep 2018 03:30:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.a74bfc44-fb36-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "944" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"8e7fba40-bedf-11e8-a21a-b51b58ae909a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:20:00.056Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"VJYXP\",\r\n \"parentId\": \"VJYXP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3fhdj\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9N00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json index 3bdc8cb88f61..41d3f51e3dd2 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "86f44ce0-adef-474a-8732-dc35b5b6a416" + "55f2af5b-36fe-41f5-be0c-edcb727b955b" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"4f416d88-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d84-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d85-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instanceName\": \"??APP_CLR_PROC??\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d89-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d87-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 221388800,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d86-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1238,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d83-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.559547846797091,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d82-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11909569359418,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0a880b4a-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:52:57.738Z\",\r\n \"performanceCounter\": {\r\n \"value\": 81466,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0a880b49-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:52:57.738Z\",\r\n \"performanceCounter\": {\r\n \"value\": 219705344,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:57:09 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:24 GMT" ], "Via": [ - "1.1 draft-ai-blue.4225676d-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:28:47.027Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.312322351046725,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/4f416d88-fbc0-11e7-9b15-272dd9e533f1?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvNGY0MTZkODgtZmJjMC0xMWU3LTliMTUtMjcyZGQ5ZTUzM2YxP3RpbWVzcGFuPVBUMTJI", + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvY2RlMGJlOTQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBlP3RpbWVzcGFuPVAxRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "7e886ed2-451f-4d17-858e-a09261ea580b" + "d3fbbc74-8eda-482f-8a07-6950cd3dac47" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"4f416d88-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:57:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:25 GMT" ], "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1065" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:28:47.027Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.312322351046725,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json index 17a033f81947..15ab2ea2873e 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVBUMTJIJiR0b3A9MTA=", + "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "20ce7401-a4e9-415d-9c19-d0e48006ef3e" + "41fc171f-6442-46be-af95-3f4162ed52dd" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f461-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"tVSdkaXhdHc=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 3.0414,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|tVSdkaXhdHc=.1eb694b6_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f460-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"rhP6IjNSN5o=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1260.9052,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": null,\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45f-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.355Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"QlGmdhUwlAo=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 669.2065,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e8cc381-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.704Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"L0NYaQesLCQ=\",\r\n \"parentId\": \"L0NYaQesLCQ=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 2.9867,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|L0NYaQesLCQ=.1eb694b3_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca5-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.353Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"xtXUIM2Tbr8=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3533,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|xtXUIM2Tbr8=.c43fd182_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b85-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:26.151Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"jSTTc8xGcsg=\",\r\n \"parentId\": \"jSTTc8xGcsg=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 12.0485,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|jSTTc8xGcsg=.1eb694b2_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca4-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.023Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"F/r1noB4Jx0=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3855,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|F/r1noB4Jx0=.c43fd181_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b84-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:12.706Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"/4+vZEyg+3g=\",\r\n \"parentId\": \"/4+vZEyg+3g=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"094b5c0d-a8c4-4059-ae00-f41f3816c94a\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_094b5c0d-a8c4-4059-ae00-f41f3816c94a\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 667.682,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|/4+vZEyg+3g=.1eb694b1_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b83-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:04.97Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"GMtGO1NBT7I=\",\r\n \"parentId\": \"GMtGO1NBT7I=\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 664.708,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|GMtGO1NBT7I=.1eb694b0_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b45-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.195Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"c42lrvdqyQk=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3542,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|c42lrvdqyQk=.c43fd180_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1321" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a61-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:29:21.457Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 18.356,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/requests/b222f461-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2IyMjJmNDYxLWZiYmYtMTFlNy04MmJkLTQxMzBhMWM4MDExOT90aW1lc3Bhbj1QVDEySA==", + "RequestUri": "/v1/apps/DEMO_APP/events/requests/dd9a2a61-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2RkOWEyYTYxLWJlZTAtMTFlOC05ZGZkLTliODllNjAxNDFiNz90aW1lc3Bhbj1QMUQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "36ad667e-57fd-4727-9392-b1fb0924cb03" + "1ce84b47-537b-42a7-8c13-277fff7f0068" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f461-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"tVSdkaXhdHc=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 3.0414,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|tVSdkaXhdHc=.1eb694b6_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.e2724348-fbb9-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.1acbd733-be8e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1330" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a61-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:29:21.457Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 18.356,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json index 80efb135cca8..9ac9f48bf280 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", + "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,7 +10,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -20,25 +20,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6841a0df-0f05-4c94-818a-bc8532473d6e" + "7b65a12c-9667-45b7-b65c-7c6b153b6a90" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f452-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"|tVSdkaXhdHc=.1eb694b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f451-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f450-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.355Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e8cc380-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.704Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"L0NYaQesLCQ=\",\r\n \"parentId\": \"|L0NYaQesLCQ=.1eb694b3_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca1-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.353Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"|xtXUIM2Tbr8=.c43fd182_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da83-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:26.151Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"jSTTc8xGcsg=\",\r\n \"parentId\": \"|jSTTc8xGcsg=.1eb694b2_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca0-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.024Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"|F/r1noB4Jx0=.c43fd181_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da82-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:12.706Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"/4+vZEyg+3g=\",\r\n \"parentId\": \"|/4+vZEyg+3g=.1eb694b1_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"094b5c0d-a8c4-4059-ae00-f41f3816c94a\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_094b5c0d-a8c4-4059-ae00-f41f3816c94a\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da81-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:04.97Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"GMtGO1NBT7I=\",\r\n \"parentId\": \"|GMtGO1NBT7I=.1eb694b0_\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b41-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"|c42lrvdqyQk=.c43fd180_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:29 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.e74872b8-fb36-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.f2890eab-beb0-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -54,20 +47,27 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1105" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a62-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:29:21.551Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.39.24f98a1b_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/b222f452-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9iMjIyZjQ1Mi1mYmJmLTExZTctODJiZC00MTMwYTFjODAxMTk/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/traces/dd9a2a62-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9kZDlhMmE2Mi1iZWUwLTExZTgtOWRmZC05Yjg5ZTYwMTQxYjc/dGltZXNwYW49UDFE", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -75,7 +75,7 @@ "DEMO_KEY" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.00001.0", "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" ], "prefer": [ @@ -85,25 +85,18 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6cfd57d1-70c4-46c9-9fe6-dadeafc5fbeb" + "7f608dc1-cbad-4ab3-a575-b09a618c3335" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f452-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"|tVSdkaXhdHc=.1eb694b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], "Connection": [ "keep-alive" ], "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Sun, 23 Sep 2018 03:30:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.a74bfc44-fb36-11e7-a5b2-70b3d5800008" + "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -119,15 +112,22 @@ "*" ], "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" ], "OData-Version": [ "4.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1112" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a62-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:29:21.551Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.39.24f98a1b_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/_metadata/ApplicationInsights_data-plane.txt b/src/SDKs/_metadata/ApplicationInsights_data-plane.txt index 5714091ff024..662ebb1d50ac 100644 --- a/src/SDKs/_metadata/ApplicationInsights_data-plane.txt +++ b/src/SDKs/_metadata/ApplicationInsights_data-plane.txt @@ -1,11 +1,11 @@ -2018-02-27 20:41:17 UTC +2018-09-23 01:55:41 UTC 1) azure-rest-api-specs repository information -GitHub user: Azure -Branch: master -Commit: d122af3086f0b1693b9c506befc497a1f4a8b8e1 +GitHub user: alexeldeib +Branch: modelAsString +Commit: 2cba8d29b4c8b4e518c46297f8f2f07560da43cb 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\alexe\AppData\Roaming\npm `-- autorest@2.0.4245 +Bootstrapper version: C:\Users\aleldeib\AppData\Roaming\npm `-- autorest@2.0.4283 Latest installed version: From d444b09486cffb9e411ca4241d5e7cf9bbfbafd8 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Mon, 24 Sep 2018 14:40:24 -0700 Subject: [PATCH 2/6] Rename to Microsoft.Azure.ApplicationInsights.Query, bump to 1.0.0.0-Preview-1 --- .../ApplicationInsights.sln | 2 +- .../Customized/ApiKeyClientCredentials.cs | 2 +- .../ApplicationInsightsDataClient.cs | 4 +- .../Customized/CustomDelegatingHandler.cs | 2 +- .../ApplicationInsights/Customized/Events.cs | 6 +- .../Customized/EventsExtensions.cs | 4 +- .../IApplicationInsightsDataClient.cs | 4 +- .../ApplicationInsights/Customized/IEvents.cs | 4 +- .../Customized/IMetrics.cs | 4 +- .../ApplicationInsights/Customized/Metrics.cs | 4 +- .../Customized/MetricsExtensions.cs | 4 +- .../Customized/Models/ApiPreferences.cs | 2 +- .../Customized/Models/BaseMetricInfo.cs | 2 +- .../Customized/Models/BaseSegmentInfo.cs | 4 +- .../Customized/Models/ErrorDetail.cs | 2 +- .../Customized/Models/ErrorInfo.cs | 2 +- .../Customized/Models/ErrorResponse.cs | 2 +- .../Models/ErrorResponseException.cs | 2 +- .../Customized/Models/EventsResults.cs | 2 +- .../Customized/Models/EventsTraceResults.cs | 2 +- .../Customized/Models/IMetricData.cs | 2 +- .../Models/MetricsBaseSegmentInfo.cs | 2 +- .../Models/MetricsIntervaledData.cs | 2 +- .../Models/MetricsIntervaledResult.cs | 2 +- .../MetricsIntervaledSegmentedResult.cs | 2 +- .../Customized/Models/MetricsNestedSegment.cs | 2 +- .../Customized/Models/MetricsResultInfo.cs | 2 +- .../Customized/Models/MetricsSegmentInfo.cs | 2 +- .../Customized/Models/MetricsSegmentedData.cs | 2 +- .../Models/MetricsSegmentedIntervalData.cs | 2 +- .../Models/MetricsSegmentedResult.cs | 2 +- .../Customized/Models/MetricsSummaryResult.cs | 2 +- .../Customized/Models/QueryResult.cs | 2 +- .../ApplicationInsightsDataClient.cs | 8 +- .../ApplicationInsights/Generated/Events.cs | 2 +- .../Generated/EventsExtensions.cs | 2 +- .../IApplicationInsightsDataClient.cs | 6 +- .../ApplicationInsights/Generated/IEvents.cs | 2 +- .../ApplicationInsights/Generated/IMetrics.cs | 2 +- .../{IQuery.cs => IQueryOperations.cs} | 6 +- .../ApplicationInsights/Generated/Metrics.cs | 2 +- .../Generated/MetricsExtensions.cs | 2 +- .../Generated/Models/Column.cs | 2 +- .../Generated/Models/ErrorDetail.cs | 2 +- .../Generated/Models/ErrorInfo.cs | 2 +- .../Generated/Models/ErrorResponse.cs | 2 +- .../Models/ErrorResponseException.cs | 2 +- .../Generated/Models/EventType.cs | 2 +- .../Generated/Models/EventsAiInfo.cs | 2 +- .../Generated/Models/EventsApplicationInfo.cs | 2 +- .../Models/EventsAvailabilityResultInfo.cs | 2 +- .../Models/EventsAvailabilityResultResult.cs | 2 +- .../Models/EventsBrowserTimingInfo.cs | 2 +- .../Models/EventsBrowserTimingResult.cs | 2 +- .../Generated/Models/EventsClientInfo.cs | 2 +- .../Models/EventsClientPerformanceInfo.cs | 2 +- .../Generated/Models/EventsCloudInfo.cs | 2 +- .../Generated/Models/EventsCustomEventInfo.cs | 2 +- .../Models/EventsCustomEventResult.cs | 2 +- .../Models/EventsCustomMetricInfo.cs | 2 +- .../Models/EventsCustomMetricResult.cs | 2 +- .../Generated/Models/EventsDependencyInfo.cs | 2 +- .../Models/EventsDependencyResult.cs | 2 +- .../Generated/Models/EventsExceptionDetail.cs | 2 +- .../EventsExceptionDetailsParsedStack.cs | 2 +- .../Generated/Models/EventsExceptionInfo.cs | 2 +- .../Generated/Models/EventsExceptionResult.cs | 2 +- .../Generated/Models/EventsOperationInfo.cs | 2 +- .../Generated/Models/EventsPageViewInfo.cs | 2 +- .../Generated/Models/EventsPageViewResult.cs | 2 +- .../Models/EventsPerformanceCounterInfo.cs | 2 +- .../Models/EventsPerformanceCounterResult.cs | 2 +- .../Generated/Models/EventsRequestInfo.cs | 2 +- .../Generated/Models/EventsRequestResult.cs | 2 +- .../Generated/Models/EventsResult.cs | 2 +- .../Generated/Models/EventsResultData.cs | 2 +- .../EventsResultDataCustomDimensions.cs | 2 +- .../EventsResultDataCustomMeasurements.cs | 2 +- .../Generated/Models/EventsResults.cs | 2 +- .../Generated/Models/EventsSessionInfo.cs | 2 +- .../Generated/Models/EventsTraceInfo.cs | 2 +- .../Generated/Models/EventsTraceResult.cs | 2 +- .../Generated/Models/EventsUserInfo.cs | 2 +- .../Generated/Models/MetricId.cs | 2 +- .../Generated/Models/MetricsAggregation.cs | 2 +- .../Generated/Models/MetricsPostBodySchema.cs | 2 +- .../Models/MetricsPostBodySchemaParameters.cs | 2 +- .../Generated/Models/MetricsResult.cs | 2 +- .../Generated/Models/MetricsResultInfo.cs | 2 +- .../Generated/Models/MetricsResultsItem.cs | 2 +- .../Generated/Models/MetricsSegment.cs | 2 +- .../Generated/Models/MetricsSegmentInfo.cs | 2 +- .../Generated/Models/QueryBody.cs | 2 +- .../Generated/Models/QueryResults.cs | 2 +- .../Generated/Models/Table.cs | 2 +- .../{Query.cs => QueryOperations.cs} | 10 +- ...nsions.cs => QueryOperationsExtensions.cs} | 10 +- .../SdkInfo_ApplicationInsightsDataClient.cs | 2 +- ...ft.Azure.ApplicationInsights.Query.csproj} | 12 +- .../Properties/AssemblyInfo.cs | 6 +- .../Data.ApplicationInsights.Tests.csproj | 2 +- .../DataPlaneTestBase.cs | 2 +- .../Events/EventsExtensionTests.cs | 10 +- .../ScenarioTests/Events/EventsTestBase.cs | 2 +- .../ScenarioTests/Events/EventsTests.cs | 6 +- .../ScenarioTests/Events/TraceEventsTests.cs | 4 +- .../Metrics/IntervaledMetricsTests.cs | 4 +- .../IntervaledSegmentedMetricsTests.cs | 4 +- .../ScenarioTests/Metrics/MetricTests.cs | 4 +- .../ScenarioTests/Metrics/MetricsTestBase.cs | 2 +- .../Metrics/SegmentedMetricsTests.cs | 4 +- .../Metrics/SummaryMetricsTests.cs | 4 +- .../ScenarioTests/QueryTests.cs | 4 +- .../GetAllEvents.json | 12 +- .../GetByType.availabilityResults.json | 136 +++++ .../GetByType.browserTimings.json | 136 +++++ .../GetByType.customEvents.json | 136 +++++ .../GetByType.customMetrics.json | 136 +++++ .../GetByType.dependencies.json | 136 +++++ .../GetByType.exceptions.json | 136 +++++ .../GetByType.pageViews.json | 136 +++++ .../GetByType.performanceCounters.json | 136 +++++ .../GetByType.requests.json | 136 +++++ .../GetByType.traces.json | 136 +++++ .../GetEventsByType.AvailabilityResults.json | 136 ----- .../GetEventsByType.BrowserTimings.json | 136 ----- .../GetEventsByType.CustomEvents.json | 136 ----- .../GetEventsByType.CustomMetrics.json | 136 ----- .../GetEventsByType.Dependencies.json | 136 ----- .../GetEventsByType.Exceptions.json | 136 ----- .../GetEventsByType.PageViews.json | 136 ----- .../GetEventsByType.PerformanceCounters.json | 136 ----- .../GetEventsByType.Requests.json | 136 ----- .../GetEventsByType.Traces.json | 136 ----- .../tmp.json | 495 ------------------ .../GetTraceEvents.json | 28 +- .../GetIntervaledMetrics.json | 12 +- .../GetIntervaledMetrics_AllAggregations.json | 12 +- .../GetIntervaledMultiSegmentedMetrics.json | 12 +- .../GetIntervaledSegmentedMetrics.json | 12 +- .../GetMetrics.AggregatedIntervalMetric.json | 12 +- ....AggregatedIntervalMultiSegmentMetric.json | 12 +- ...trics.AggregatedIntervalSegmentMetric.json | 12 +- .../GetMetrics.AggregatedMetric.json | 10 +- .../GetMetrics.AggregatedSegmentMetric.json | 12 +- .../GetMultiSegmentedMetrics.json | 12 +- .../GetSegmentedMetrics.json | 10 +- .../GetSegmentedMetrics_AllAggregations.json | 12 +- .../GetSummaryMetric.json | 10 +- .../GetSummaryMetric_AllAggregations.json | 12 +- ...tePostQueryWithTimespan_DemoWorkspace.json | 12 +- ...nExecuteSimplePostQuery_DemoWorkspace.json | 12 +- .../GetsExceptionWithShortWait.json | 8 +- .../GetsExceptionWithSyntaxError.json | 8 +- .../GetByType.availabilityResults.json | 138 +++++ .../GetByType.browserTimings.json | 136 +++++ .../GetByType.customEvents.json | 136 +++++ .../GetByType.customMetrics.json | 136 +++++ .../GetByType.dependencies.json | 138 +++++ .../GetByType.exceptions.json | 136 +++++ .../GetByType.pageViews.json | 136 +++++ .../GetByType.performanceCounters.json | 136 +++++ .../GetByType.requests.json | 136 +++++ .../GetByType.traces.json | 136 +++++ .../GetByTypeAsync.availabilityResults.json | 136 +++++ ...son => GetByTypeAsync.browserTimings.json} | 28 +- .../GetByTypeAsync.customEvents.json | 136 +++++ ...json => GetByTypeAsync.customMetrics.json} | 24 +- .../GetByTypeAsync.dependencies.json | 136 +++++ .../GetByTypeAsync.exceptions.json | 136 +++++ ...ews.json => GetByTypeAsync.pageViews.json} | 28 +- .../GetByTypeAsync.performanceCounters.json | 136 +++++ .../GetByTypeAsync.requests.json | 136 +++++ .../GetByTypeAsync.traces.json | 136 +++++ .../GetEvents.AvailabilityResults.json | 136 ----- .../GetEvents.CustomEvents.json | 136 ----- .../GetEvents.Dependencies.json | 136 ----- .../GetEvents.Exceptions.json | 138 ----- .../GetEvents.PerformanceCounters.json | 136 ----- .../GetEvents.Requests.json | 136 ----- .../GetEvents.Traces.json | 136 ----- .../GetEventsAsync.AvailabilityResults.json | 136 ----- .../GetEventsAsync.BrowserTimings.json | 136 ----- .../GetEventsAsync.CustomEvents.json | 138 ----- .../GetEventsAsync.CustomMetrics.json | 136 ----- .../GetEventsAsync.Dependencies.json | 136 ----- .../GetEventsAsync.Exceptions.json | 136 ----- .../GetEventsAsync.PageViews.json | 136 ----- .../GetEventsAsync.PerformanceCounters.json | 136 ----- .../GetEventsAsync.Requests.json | 136 ----- .../GetEventsAsync.Traces.json | 136 ----- 191 files changed, 3996 insertions(+), 4489 deletions(-) rename src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/{IQuery.cs => IQueryOperations.cs} (95%) rename src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/{Query.cs => QueryOperations.cs} (96%) rename src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/{QueryExtensions.cs => QueryOperationsExtensions.cs} (86%) rename src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/{Microsoft.Azure.ApplicationInsights.csproj => Microsoft.Azure.ApplicationInsights.Query.csproj} (67%) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.availabilityResults.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.browserTimings.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customEvents.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customMetrics.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.dependencies.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.exceptions.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.pageViews.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.performanceCounters.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.requests.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.traces.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.availabilityResults.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.browserTimings.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customEvents.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customMetrics.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.dependencies.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.exceptions.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.pageViews.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.performanceCounters.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.requests.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.traces.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.availabilityResults.json rename src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/{GetEvents.BrowserTimings.json => GetByTypeAsync.browserTimings.json} (64%) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customEvents.json rename src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/{GetEvents.CustomMetrics.json => GetByTypeAsync.customMetrics.json} (87%) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.dependencies.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.exceptions.json rename src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/{GetEvents.PageViews.json => GetByTypeAsync.pageViews.json} (69%) create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.performanceCounters.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.requests.json create mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.traces.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.AvailabilityResults.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.BrowserTimings.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomEvents.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomMetrics.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Dependencies.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Exceptions.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PageViews.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PerformanceCounters.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Requests.json delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Traces.json diff --git a/src/SDKs/ApplicationInsights/ApplicationInsights.sln b/src/SDKs/ApplicationInsights/ApplicationInsights.sln index 6a0ee3b80c4f..7c2e13d08eae 100644 --- a/src/SDKs/ApplicationInsights/ApplicationInsights.sln +++ b/src/SDKs/ApplicationInsights/ApplicationInsights.sln @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsights.Tests", EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Management.ApplicationInsights", "Management\Management.ApplicationInsights\Microsoft.Azure.Management.ApplicationInsights.csproj", "{218115E9-B94C-4CBE-9FE4-485DCA96C2FF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.ApplicationInsights", "DataPlane\ApplicationInsights\Microsoft.Azure.ApplicationInsights.csproj", "{69672630-2C7C-401F-B923-1D507BD63383}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.ApplicationInsights.Query", "DataPlane\ApplicationInsights\Microsoft.Azure.ApplicationInsights.Query.csproj", "{69672630-2C7C-401F-B923-1D507BD63383}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApiKeyClientCredentials.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApiKeyClientCredentials.cs index c41f9f07dcb1..b33732b81745 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApiKeyClientCredentials.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApiKeyClientCredentials.cs @@ -4,7 +4,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public class ApiKeyClientCredentials : ServiceClientCredentials { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs index 7f119ac39273..9791a20e8132 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/ApplicationInsightsDataClient.cs @@ -1,4 +1,4 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest; using System.Collections.Generic; using System.Linq; @@ -6,7 +6,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial class ApplicationInsightsDataClient : ServiceClient, IApplicationInsightsDataClient { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/CustomDelegatingHandler.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/CustomDelegatingHandler.cs index 2dfac8f58c2a..bfaef8c9390a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/CustomDelegatingHandler.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/CustomDelegatingHandler.cs @@ -6,7 +6,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { internal class CustomDelegatingHandler : DelegatingHandler { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs index 47c7f81e06fa..b92dfe17000b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs @@ -1,5 +1,5 @@ -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest; using System.Collections.Generic; using System.Linq; @@ -7,7 +7,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial class Events : IServiceOperations, IEvents { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs index 5b8cb16e7a1c..54b5216db954 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs @@ -1,9 +1,9 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial class EventsExtensions { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs index 2625499bd7af..1781409eaf51 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IApplicationInsightsDataClient.cs @@ -1,10 +1,10 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial interface IApplicationInsightsDataClient { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs index f5a00c6aaefb..53606aa4f91c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs @@ -1,10 +1,10 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial interface IEvents { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs index c77d7aaa9c0a..ad07eedc4b47 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs @@ -1,10 +1,10 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial interface IMetrics { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs index d72f02bc05c5..757989fa8021 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs @@ -1,4 +1,4 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest; using System.Collections.Generic; using System.Linq; @@ -6,7 +6,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial class Metrics : IServiceOperations, IMetrics { #region Metric Extensions diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs index 74b5fb0a780d..c14918990387 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs @@ -1,9 +1,9 @@ -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { public partial class MetricsExtensions { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ApiPreferences.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ApiPreferences.cs index 8715cab4c189..d5941a4eb4cf 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ApiPreferences.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ApiPreferences.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public class ApiPreferences { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseMetricInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseMetricInfo.cs index 319810d7a570..d251ca724ad6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseMetricInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseMetricInfo.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Runtime.Serialization; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public abstract class BaseMetricInfo { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseSegmentInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseSegmentInfo.cs index e08e8321cff5..886b1a23e86c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseSegmentInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/BaseSegmentInfo.cs @@ -4,10 +4,10 @@ using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Newtonsoft.Json.Linq; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public abstract class BaseSegmentInfo : BaseMetricInfo { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorDetail.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorDetail.cs index ac29def4a079..f87551f12e67 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorDetail.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorDetail.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class ErrorDetail { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorInfo.cs index ceaea3d53755..695a134b26c3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorInfo.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class ErrorInfo { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponse.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponse.cs index 47bcf06c1547..c958a1ed6e56 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponse.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponse.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class ErrorResponse { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponseException.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponseException.cs index 59d1aaa6b01e..bcc2ac172fe3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponseException.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/ErrorResponseException.cs @@ -1,6 +1,6 @@ using Microsoft.Rest; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class ErrorResponseException : RestException { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsResults.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsResults.cs index 3e6cd5d81e4c..02abf5201264 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsResults.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsResults.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public class EventsResults : EventsResults where T : EventsResultData { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsTraceResults.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsTraceResults.cs index 19662fb20d4b..a44f122ead93 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsTraceResults.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/EventsTraceResults.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using Newtonsoft.Json; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// A trace events query result. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/IMetricData.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/IMetricData.cs index bc0816baaf20..c22255b31869 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/IMetricData.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/IMetricData.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public interface IMetricData { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsBaseSegmentInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsBaseSegmentInfo.cs index bd8a1a1d3d59..fb42352e9666 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsBaseSegmentInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsBaseSegmentInfo.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// Contains fields common between nested segmented data and segmented metric data. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledData.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledData.cs index 850eb0260dc5..70770da607da 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledData.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledData.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// An intervaled metric result data. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledResult.cs index 7d25181cce24..71348b6e47eb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledResult.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using System.Collections.Generic; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledSegmentedResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledSegmentedResult.cs index 9c3c1640f66c..f20805b44f10 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledSegmentedResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsIntervaledSegmentedResult.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// An intervaled and segmented metric result. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsNestedSegment.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsNestedSegment.cs index 091bb4d612c4..f43990ce3599 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsNestedSegment.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsNestedSegment.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// A nested segment. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsResultInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsResultInfo.cs index 47f0fd7516a5..1754a7f243b0 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsResultInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsResultInfo.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class MetricsResultInfo : BaseMetricInfo { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentInfo.cs index e264cda9a4ee..a496e5db7edb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentInfo.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { public partial class MetricsSegmentInfo : BaseSegmentInfo { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedData.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedData.cs index a5bceaa80306..dc13b80d9a98 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedData.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedData.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// The metric values for a segment. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedIntervalData.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedIntervalData.cs index acda0080e906..15a982304be1 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedIntervalData.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedIntervalData.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// A segment of intervaled data. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedResult.cs index 44e4f7d1c6b8..af0c02fe4a97 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSegmentedResult.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// A segmented metric result data. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSummaryResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSummaryResult.cs index 9f798e9432a9..88bd8b4712cf 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSummaryResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/MetricsSummaryResult.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// A metric summary result. diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs index 3ff76247eb9a..42183ef50b26 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Models/QueryResult.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// /// The query response. This currently only supports the thinned query diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs index 8e6045fb84d5..ee70799c84ea 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/ApplicationInsightsDataClient.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Microsoft.Rest.Serialization; @@ -55,9 +55,9 @@ public partial class ApplicationInsightsDataClient : ServiceClient - /// Gets the IQuery. + /// Gets the IQueryOperations. /// - public virtual IQuery Query { get; private set; } + public virtual IQueryOperations Query { get; private set; } /// /// Initializes a new instance of the ApplicationInsightsDataClient class. @@ -302,7 +302,7 @@ private void Initialize() { Metrics = new Metrics(this); Events = new Events(this); - Query = new Query(this); + Query = new QueryOperations(this); BaseUri = new System.Uri("https://api.applicationinsights.io/v1"); SerializationSettings = new JsonSerializerSettings { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs index b291e4c61bbb..495ea13b6a4c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Events.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs index 6e39aa1420fd..3a8eceb61006 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/EventsExtensions.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Models; using System.Threading; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs index d7db92032c66..319ec8bccd5f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IApplicationInsightsDataClient.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; @@ -52,9 +52,9 @@ public partial interface IApplicationInsightsDataClient : System.IDisposable IEvents Events { get; } /// - /// Gets the IQuery. + /// Gets the IQueryOperations. /// - IQuery Query { get; } + IQueryOperations Query { get; } } } diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs index 154d65060d2f..b84886dd994f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IEvents.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs index 7d794c33fea4..657018f66eea 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IMetrics.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQueryOperations.cs similarity index 95% rename from src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs rename to src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQueryOperations.cs index 89de36fd3abf..fd2fbdd40d49 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQuery.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/IQueryOperations.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; @@ -18,9 +18,9 @@ namespace Microsoft.Azure.ApplicationInsights using System.Threading.Tasks; /// - /// Query operations. + /// QueryOperations operations. /// - public partial interface IQuery + public partial interface IQueryOperations { /// /// Execute an Analytics query diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs index 2e04a973c6bd..74ceeca5567c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Metrics.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs index 404ff7082e97..0046d58892c3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/MetricsExtensions.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Models; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Column.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Column.cs index 003af69ad3bc..6e64adf4efa7 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Column.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Column.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorDetail.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorDetail.cs index e99394964e21..cae8a394487d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorDetail.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorDetail.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorInfo.cs index b7cb09e00f32..d3b389d18f10 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponse.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponse.cs index 9522d5899881..843ea17a4381 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponse.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponse.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponseException.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponseException.cs index 96da9f292071..d4570b52c567 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponseException.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/ErrorResponseException.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs index b60e8830947a..1f52b80aa438 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventType.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAiInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAiInfo.cs index a8e6707620e2..5d871ba17974 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAiInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAiInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsApplicationInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsApplicationInfo.cs index 186164485ad8..5319e14b6840 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsApplicationInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsApplicationInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultInfo.cs index 3dec6b58c257..0aac297d7413 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultResult.cs index 5d0dd1154581..0dc6ebc3ac6f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsAvailabilityResultResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingInfo.cs index 672d4bcebc88..a0e771b11ddb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingResult.cs index dcbbb379e590..4f1009a32542 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsBrowserTimingResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientInfo.cs index 1e9be63bf156..6858451c96a8 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientPerformanceInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientPerformanceInfo.cs index 137521d77788..e3cb5c4a0740 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientPerformanceInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsClientPerformanceInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCloudInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCloudInfo.cs index 5e28c8f9346c..da37f8475c6d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCloudInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCloudInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventInfo.cs index e0c386c33340..20a0297d31bb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventResult.cs index 7a1e769a9bbd..5d8c33e7c31b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomEventResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs index 11bfbde2d6bb..fc99acc002c0 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricResult.cs index 58e22352a05f..9d7379f5e15d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsCustomMetricResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyInfo.cs index 79933243c30b..27fe20462c70 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyResult.cs index 89016c46bc2e..d18cdef03e7a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsDependencyResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetail.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetail.cs index c7656164d75e..f86799dd812d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetail.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetail.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetailsParsedStack.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetailsParsedStack.cs index 5304482a80a8..4a2d29bc027c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetailsParsedStack.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionDetailsParsedStack.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionInfo.cs index 9c00441286b8..95e1131bd001 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionResult.cs index daeaf5255159..e4d5764de21c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsExceptionResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsOperationInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsOperationInfo.cs index eaaeae717d4e..64928c4ea818 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsOperationInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsOperationInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewInfo.cs index 4b58a09bc427..eadd40831e56 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewResult.cs index 610a0e1b98f9..0ec11c2dbd6b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPageViewResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs index ea204ad16a13..9ed4ad144c40 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterResult.cs index a85cdcd760dd..ff6c0e98fa1d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsPerformanceCounterResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestInfo.cs index 7d13a5e59d41..ca053cd89d3f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestResult.cs index 77ce911a5779..822223ed9e90 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsRequestResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResult.cs index 0a545c4a1cce..2f7b3ae2ade9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultData.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultData.cs index e97f6b751ab4..8df84051c7de 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultData.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultData.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomDimensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomDimensions.cs index 09129bf432be..f7f0cdffafc4 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomDimensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomDimensions.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomMeasurements.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomMeasurements.cs index 4e84e546267f..9367b757121b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomMeasurements.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResultDataCustomMeasurements.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResults.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResults.cs index 4611be608e9e..4c3d89f90d69 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResults.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsResults.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsSessionInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsSessionInfo.cs index 0df23dd277df..2ef24da78661 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsSessionInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsSessionInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceInfo.cs index 30e1e7e4ce74..4f7f3c0774f0 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceResult.cs index 40424ab0e1dc..901cd594a5e9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsTraceResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsUserInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsUserInfo.cs index 545b9e959407..2414f185dac9 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsUserInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/EventsUserInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs index a96d09085611..ff8f0db4fd0c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricId.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs index 1858347f81fe..c667cc0575b3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsAggregation.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchema.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchema.cs index 2f20b66c66f4..7e069eb4ec04 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchema.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchema.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs index 9b4dd7573c4c..0d1b62589f4a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsPostBodySchemaParameters.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResult.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResult.cs index fb21b8dd47ac..5d2eca4c2bc6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResult.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResult.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Linq; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultInfo.cs index bd3afb1b73ec..1c05fcdb2b77 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultsItem.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultsItem.cs index da14e92825ed..4854ca18c285 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultsItem.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsResultsItem.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs index 9f5db41035c9..873e368e9c45 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegment.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegmentInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegmentInfo.cs index 9ffa4861d266..ee67de58eb8f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegmentInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/MetricsSegmentInfo.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Newtonsoft.Json; using System.Collections; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs index 109e1224ded5..10fe2636ceee 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryBody.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryResults.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryResults.cs index c3c53f66b0fc..6499270222b3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryResults.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/QueryResults.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs index 58c32577a7e7..b6f5f206255b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Models/Table.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights.Models +namespace Microsoft.Azure.ApplicationInsights.Query.Models { using Microsoft.Rest; using Newtonsoft.Json; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperations.cs similarity index 96% rename from src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs rename to src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperations.cs index ad313a59bbe4..be4285fadbe6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/Query.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperations.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Microsoft.Rest; using Models; @@ -23,12 +23,12 @@ namespace Microsoft.Azure.ApplicationInsights using System.Threading.Tasks; /// - /// Query operations. + /// QueryOperations operations. /// - public partial class Query : IServiceOperations, IQuery + public partial class QueryOperations : IServiceOperations, IQueryOperations { /// - /// Initializes a new instance of the Query class. + /// Initializes a new instance of the QueryOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ public partial class Query : IServiceOperations, /// /// Thrown when a required parameter is null /// - public Query(ApplicationInsightsDataClient client) + public QueryOperations(ApplicationInsightsDataClient client) { if (client == null) { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperationsExtensions.cs similarity index 86% rename from src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs rename to src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperationsExtensions.cs index 2690d4303ebe..b056b6b2d48c 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/QueryOperationsExtensions.cs @@ -8,7 +8,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using Models; using System.Collections; @@ -17,9 +17,9 @@ namespace Microsoft.Azure.ApplicationInsights using System.Threading.Tasks; /// - /// Extension methods for Query. + /// Extension methods for QueryOperations. /// - public static partial class QueryExtensions + public static partial class QueryOperationsExtensions { /// /// Execute an Analytics query @@ -47,7 +47,7 @@ public static partial class QueryExtensions /// /// A list of Application IDs for cross-application queries. /// - public static QueryResults Execute(this IQuery operations, string appId, string query, string timespan = default(string), IList applications = default(IList)) + public static QueryResults Execute(this IQueryOperations operations, string appId, string query, string timespan = default(string), IList applications = default(IList)) { return operations.ExecuteAsync(appId, query, timespan, applications).GetAwaiter().GetResult(); } @@ -81,7 +81,7 @@ public static partial class QueryExtensions /// /// The cancellation token. /// - public static async Task ExecuteAsync(this IQuery operations, string appId, string query, string timespan = default(string), IList applications = default(IList), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ExecuteAsync(this IQueryOperations operations, string appId, string query, string timespan = default(string), IList applications = default(IList), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ExecuteWithHttpMessagesAsync(appId, query, timespan, applications, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs index d91881e2eaef..690be7cf7f1f 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Generated/SdkInfo_ApplicationInsightsDataClient.cs @@ -5,7 +5,7 @@ // regenerated. // -namespace Microsoft.Azure.ApplicationInsights +namespace Microsoft.Azure.ApplicationInsights.Query { using System; using System.Collections.Generic; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.csproj b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj similarity index 67% rename from src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.csproj rename to src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj index 144a3e0ed46b..b094d633debb 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj @@ -5,15 +5,17 @@ Microsoft Azure Application Insights Data Library - 0.9.0.0-preview - Microsoft.Azure.ApplicationInsights - Microsoft.Azure.ApplicationInsights - Management.ApplicationInsights; + 1.0.0.0 + Preview-1 + Microsoft.Azure.ApplicationInsights.Query + Microsoft.Azure.ApplicationInsights.Query + ApplicationInsights; This is a preview release of the Application Insights Data SDK. net452;netstandard1.4 - Microsoft.Azure.ApplicationInsights + Microsoft.Azure.ApplicationInsights.Query + 1.0.0-Preview-1 diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs index 4175b33eae5c..ff0f02a7fca6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs @@ -6,10 +6,10 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Microsoft Azure Application Insights Data Library")] -[assembly: AssemblyDescription("Provides Microsoft Azure Application Insights Data operations.")] +[assembly: AssemblyDescription("Provides Microsoft Azure Application Insights data plane query operations operations.")] -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj index 439069c7850d..0fbfd493912e 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj @@ -17,7 +17,7 @@ - + diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs index 7173703b00cf..6c6aca8b2bda 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/DataPlaneTestBase.cs @@ -1,4 +1,4 @@ -using Microsoft.Azure.ApplicationInsights; +using Microsoft.Azure.ApplicationInsights.Query; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs index 35ce0faf35fb..03a945c7ea69 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs @@ -2,8 +2,8 @@ using System.Collections.Generic; using System.Threading.Tasks; using Data.ApplicationInsights.Tests.Events; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Newtonsoft.Json; using Xunit; @@ -26,7 +26,7 @@ public class EventsExtensionTests : EventsTestBase public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQueryAsync, SingleQueryAsync singleQueryAsync, object unused1, object unused2) where T : EventsResultData { - using (var ctx = MockContext.Start(GetType().FullName, $"GetEvents.{eventType}")) + using (var ctx = MockContext.Start(GetType().FullName, $"GetByTypeAsync.{eventType}")) { var timespan = "P1D"; var top = 1; @@ -68,10 +68,10 @@ public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQu [MemberData(nameof(AvailabilityResultsData))] [MemberData(nameof(PerformanceCountersData))] [MemberData(nameof(CustomMetricsData))] - public void GetEvents(string eventType, object unused1, object unused2, + public void GetByType(string eventType, object unused1, object unused2, MultiQuery multiQuery, SingleQuery singleQuery) where T : EventsResultData { - using (var ctx = MockContext.Start(GetType().FullName, $"GetEvents.{eventType}")) + using (var ctx = MockContext.Start(GetType().FullName, $"GetByType.{eventType}")) { var timespan = "P1D"; var top = 10; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs index d1b9d0de2130..98dcc4e8df2a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTestBase.cs @@ -1,5 +1,5 @@ using System.Collections.Generic; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Newtonsoft.Json; using Xunit; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs index 44efedf362fe..b55e24799ea6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsTests.cs @@ -1,5 +1,5 @@ -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Threading.Tasks; @@ -46,7 +46,7 @@ public async Task GetAllEvents() [InlineData(EventType.CustomMetrics)] public async Task GetEventsByType(string eventType) { - using (var ctx = MockContext.Start(GetType().FullName, $"GetEventsByType.{eventType}")) + using (var ctx = MockContext.Start(GetType().FullName, $"GetByType.{eventType}")) { var client = GetClient(ctx); var traces = await client.Events.GetByTypeAsync(DefaultAppId, eventType, timespan: Timespan, top: TopCount); diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs index e1862b3935a3..8bcb9c9d2a4d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/TraceEventsTests.cs @@ -1,6 +1,6 @@ using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Newtonsoft.Json; using Xunit; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs index 1ed7cd3eed43..30a6bc581c01 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledMetricsTests.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; using System; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs index 51ce522b2fbd..8f624fdc2376 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/IntervaledSegmentedMetricsTests.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs index a8ae23749281..05978857fbd8 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricTests.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; using System.Runtime.Serialization; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs index e271935ed6d9..f42e82957410 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/MetricsTestBase.cs @@ -1,6 +1,6 @@ using System; using System.Collections.Generic; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Xunit; namespace Data.ApplicationInsights.Tests.Metrics diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs index c7e3ef21c3b4..21e8a0dc9d37 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SegmentedMetricsTests.cs @@ -1,8 +1,8 @@ using System; using System.Threading.Tasks; using System.Collections.Generic; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs index 331529d13ad3..099da567a216 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Metrics/SummaryMetricsTests.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs index c5183e9b67e0..24e35be8841d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/QueryTests.cs @@ -1,5 +1,5 @@ -using Microsoft.Azure.ApplicationInsights; -using Microsoft.Azure.ApplicationInsights.Models; +using Microsoft.Azure.ApplicationInsights.Query; +using Microsoft.Azure.ApplicationInsights.Query.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json index 4427f55060af..9711e3a155dd 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetAllEvents.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "77677a2a-32f3-4895-adca-f77fffd4159e" + "4db800d5-bb27-4661-a1cc-8e1b384690bb" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:34:15 GMT" + "Mon, 24 Sep 2018 21:33:39 GMT" ], "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.9c3cda1e-bfa6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -56,13 +56,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "14372" + "9468" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#Collection(Edm.EntityType)\",\r\n \"value\": [\r\n {\r\n \"id\": \"68c9e131-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12e-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 675,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e129-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.0410310495439,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12a-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.520515524771951,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12b-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1937227776,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12c-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12d-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e12f-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 393310208,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"68c9e130-bee1-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:32:48.197Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"593c4041-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:32:46.85Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"62130633\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.35.24f98abb_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#Collection(Edm.EntityType)\",\r\n \"value\": [\r\n {\r\n \"id\": \"5a649abe-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 765,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649abb-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1971032064,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649abc-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 3,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649ac1-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649ab9-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.972106389890489,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649abf-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 398491648,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649abd-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 23,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649aba-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.486053194945245,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5a649ac0-c041-11e8-a137-b787b1506f19\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:32:23.07Z\",\r\n \"performanceCounter\": {\r\n \"value\": 22118675,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4d74d631-c041-11e8-937d-f9c616e33c26\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:12.434Z\",\r\n \"trace\": {\r\n \"severityLevel\": 0,\r\n \"message\": \"New Request Received\"\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.25.be60ca0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.availabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.availabilityResults.json new file mode 100644 index 000000000000..ef9edb10fcc6 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.availabilityResults.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "8126fc94-dbab-4f25-8dc8-728c2a2f2147" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:32:45 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "16671" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"3ca825fe-c041-11e8-9bf2-f7793a66d6e4\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:31:38.782Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_emea-ch-zrh-edge\",\r\n \"WebtestLocationId\": \"emea-ch-zrh-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"parentId\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 1902,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"France South\",\r\n \"id\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Marseille\",\r\n \"stateOrProvince\": \"Bouches-du-Rhône\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"2bcb96d6-c041-11e8-aafd-b722b953cf19\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:31:06.633Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 1052,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:31:07 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:31:07 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:31:07 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:31:07 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2c47a4e1-c041-11e8-a77f-41d39a926f6b\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:59.92Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_emea-au-syd-edge\",\r\n \"WebtestLocationId\": \"emea-au-syd-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"63a42d35c6664b49b0065652c60b20d2\",\r\n \"parentId\": \"63a42d35c6664b49b0065652c60b20d2\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 1653,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"Australia East\",\r\n \"id\": \"63a42d35c6664b49b0065652c60b20d2\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"191a95b8-c041-11e8-b949-05bd8fabc33d\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:41.275Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"6cfbdec539e349bdaa5e75dc075d3dea\",\r\n \"parentId\": \"6cfbdec539e349bdaa5e75dc075d3dea\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/24/2018 21:30:41 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"6cfbdec539e349bdaa5e75dc075d3dea\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"26e550ff-c041-11e8-b994-c37ca354e4b1\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:38.027Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"vm employees creation-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm employees creation-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"290d56c3a2da4ba4b4e819e3d5816e7d\",\r\n \"parentId\": \"290d56c3a2da4ba4b4e819e3d5816e7d\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Employees Creation\",\r\n \"success\": \"0\",\r\n \"duration\": 117,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 09/24/2018 21:30:38 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"West US\",\r\n \"id\": \"290d56c3a2da4ba4b4e819e3d5816e7d\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"16bfdce3-c041-11e8-baa7-b1b8d1ba2c9b\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:31.742Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_emea-fr-pra-edge\",\r\n \"WebtestLocationId\": \"emea-fr-pra-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"935128a304d94e76a07a9205fc0a20d6\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/24/2018 21:30:31 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"France Central\",\r\n \"id\": \"935128a304d94e76a07a9205fc0a20d6\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"1b82951f-c041-11e8-98fe-61858dd36641\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:25.583Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"vm employees creation-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm employees creation-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"parentId\": \"4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Employees Creation\",\r\n \"success\": \"0\",\r\n \"duration\": 65,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 09/24/2018 21:30:25 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"14b4cb00-c041-11e8-9033-57f6c09be8e8\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:21.093Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"79f12a805eaa410c8f352f6466456cee\",\r\n \"parentId\": \"79f12a805eaa410c8f352f6466456cee\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 4655,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:30:21 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:30:23 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:30:23 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:30:25 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"West US\",\r\n \"id\": \"79f12a805eaa410c8f352f6466456cee\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0e5fd9f2-c041-11e8-aa12-67b92d4d3475\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:05.493Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"vm reports-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm reports-fabrikamprod_apac-hk-hkn-azr\",\r\n \"WebtestLocationId\": \"apac-hk-hkn-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"f8a508bd16714b1f8716b75eaa5f6952\",\r\n \"parentId\": \"f8a508bd16714b1f8716b75eaa5f6952\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 1112,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"East Asia\",\r\n \"id\": \"f8a508bd16714b1f8716b75eaa5f6952\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Hong Kong\",\r\n \"stateOrProvince\": \"Central and Western District\",\r\n \"countryOrRegion\": \"Hong Kong\"\r\n }\r\n },\r\n {\r\n \"id\": \"0f4d9526-c041-11e8-a8bf-5fab2595eb49\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:30:03.545Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam create new ticket-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam create new ticket-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"62d3c75540af4df9bc301c1c0f05c28f\",\r\n \"parentId\": \"62d3c75540af4df9bc301c1c0f05c28f\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Create New Ticket\",\r\n \"success\": \"0\",\r\n \"duration\": 1402,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:30:04 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Create', step #7 with the error '500 - InternalServerError'.\",\r\n \"location\": \"West US\",\r\n \"id\": \"62d3c75540af4df9bc301c1c0f05c28f\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/3ca825fe-c041-11e8-9bf2-f7793a66d6e4", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvM2NhODI1ZmUtYzA0MS0xMWU4LTliZjItZjc3OTNhNjZkNmU0", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "e1862996-d4e3-4444-9ecc-ef91058bde94" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:00 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.1debaf6b-bfde-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1301" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"3ca825fe-c041-11e8-9bf2-f7793a66d6e4\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:31:38.782Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_emea-ch-zrh-edge\",\r\n \"WebtestLocationId\": \"emea-ch-zrh-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"parentId\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 1902,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"France South\",\r\n \"id\": \"38e0ce615aa24fb990ecb19fe6db817d\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Marseille\",\r\n \"stateOrProvince\": \"Bouches-du-Rhône\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.browserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.browserTimings.json new file mode 100644 index 000000000000..fb7754fe15dd --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.browserTimings.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "2433efff-8e6f-4e69-823d-bf2b287ba869" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:21 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "7070" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"5fa31661-bff0-11e8-893a-df98f5a20bc6\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:55.008Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"h/viM\",\r\n \"parentId\": \"h/viM\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 806,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 141,\r\n \"receiveDuration\": 15,\r\n \"processingDuration\": 643\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"5e9528de-bff0-11e8-96dd-1b10334fed87\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:53.219Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"8kMaM\",\r\n \"parentId\": \"8kMaM\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 786,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 2,\r\n \"sendDuration\": 112,\r\n \"receiveDuration\": 4,\r\n \"processingDuration\": 666\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"55e1fc96-bff0-11e8-8d6e-abafe26a7291\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:38.444Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd\",\r\n \"id\": \"6fAn3\",\r\n \"parentId\": \"6fAn3\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd\",\r\n \"totalDuration\": 2018,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 160,\r\n \"sendDuration\": 424,\r\n \"receiveDuration\": 119,\r\n \"processingDuration\": 1315\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"46c19a11-bfbc-11e8-923c-732823f7090e\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:39:55.93Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"I6vaw\",\r\n \"parentId\": \"I6vaw\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"R+gCW\"\r\n },\r\n \"user\": {\r\n \"id\": \"dnVdS\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 7385,\r\n \"performanceBucket\": \"7sec-15sec\",\r\n \"networkDuration\": 210,\r\n \"sendDuration\": 1946,\r\n \"receiveDuration\": 6,\r\n \"processingDuration\": 5223\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"27ca3400-bfbc-11e8-942c-6740fd3333ef\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:39:05.204Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"KvlRW\",\r\n \"parentId\": \"KvlRW\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TD84H\"\r\n },\r\n \"user\": {\r\n \"id\": \"KnexQ\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"https://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1572,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 97,\r\n \"sendDuration\": 13,\r\n \"receiveDuration\": 62,\r\n \"processingDuration\": 1393\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"6dd28141-bfb8-11e8-a86d-51e58f3d5949\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:12:23.717Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"93Dio\",\r\n \"parentId\": \"93Dio\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TD84H\"\r\n },\r\n \"user\": {\r\n \"id\": \"KnexQ\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"https://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 6043,\r\n \"performanceBucket\": \"3sec-7sec\",\r\n \"networkDuration\": 875,\r\n \"sendDuration\": 947,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 4216\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/607189f1-bff0-11e8-b5a7-b76344f18d93", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzLzYwNzE4OWYxLWJmZjAtMTFlOC1iNWE3LWI3NjM0NGYxOGQ5Mw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "699b6cbd-1ac3-48e4-8d5d-ae0eb99e373b" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:23 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.23308d31-c024-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customEvents.json new file mode 100644 index 000000000000..778132f8c3b5 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customEvents.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "001ee258-543b-459b-852f-19f0bda0850a" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:31 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.b61bf8d6-bf2d-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8512" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff222d81-c040-11e8-854e-55d4913e5a6f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"dJxRx\",\r\n \"parentId\": \"dJxRx\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DMoO7\"\r\n },\r\n \"user\": {\r\n \"id\": \"alI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1de7b0-c040-11e8-a2d6-01e896f3eb0a\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"iCGDJ\",\r\n \"parentId\": \"iCGDJ\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ERhlX\"\r\n },\r\n \"user\": {\r\n \"id\": \"aqA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1e5ce1-c040-11e8-9c4d-a935b3ecedcc\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"GDDa7\",\r\n \"parentId\": \"GDDa7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"7j5Zb\"\r\n },\r\n \"user\": {\r\n \"id\": \"f0I00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2031a0-c040-11e8-bdb2-0d36b291dc7b\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"52Xf8\",\r\n \"parentId\": \"52Xf8\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"uTtFY\"\r\n },\r\n \"user\": {\r\n \"id\": \"fSD00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2ded40-c040-11e8-9b17-3fceaf5159b4\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"Pq0wh\",\r\n \"parentId\": \"Pq0wh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"PxoCq\"\r\n },\r\n \"user\": {\r\n \"id\": \"fSH00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff29f5a1-c040-11e8-a863-939e38d7e004\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"bljl/\",\r\n \"parentId\": \"bljl/\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"KkPh/\"\r\n },\r\n \"user\": {\r\n \"id\": \"e4C00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff58f4f0-c040-11e8-a3c2-c171a2bcc086\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BQBVh\",\r\n \"parentId\": \"BQBVh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ZK3wY\"\r\n },\r\n \"user\": {\r\n \"id\": \"giE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1ef920-c040-11e8-8531-dfd6349b29fa\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"Otw6s\",\r\n \"parentId\": \"Otw6s\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"UTsw7\"\r\n },\r\n \"user\": {\r\n \"id\": \"dbB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff240230-c040-11e8-a9ea-eff0115676ed\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FVe94\",\r\n \"parentId\": \"FVe94\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3u5Vs\"\r\n },\r\n \"user\": {\r\n \"id\": \"dZK00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Save Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/302839f1-c041-11e8-a137-b787b1506f19", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy8zMDI4MzlmMS1jMDQxLTExZTgtYTEzNy1iNzg3YjE1MDZmMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "8f12675a-d2b7-4973-8afa-7cd39979c5fb" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:38 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9bf23077-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1488" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customMetrics.json new file mode 100644 index 000000000000..b8cfedb119a0 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.customMetrics.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "cfd28284-f951-42e3-972a-358b72ef088f" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:19 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.13fffd40-c020-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "11163" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"98d44c14-c040-11e8-b194-bfc9586370da\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:27:08.9Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"c1e3b076-c03e-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:14:00.291Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8056aef4-c03e-11e8-932e-cd5dae094438\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:12:08.895Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a95f3586-c03c-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:59:00.227Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"67f413eb-c03c-11e8-b194-bfc9586370da\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:57:08.888Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"97ca8bf6-c03a-11e8-9269-538aa81dd28e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:44:00.183Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f6f4adb-c03a-11e8-8936-8bc26a313bde\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:42:08.87Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7f3fa866-c038-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:29:00.124Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"36f1388b-c038-11e8-8936-8bc26a313bde\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:27:08.85Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/db15a976-c040-11e8-bbc3-011041bbe785", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvZGIxNWE5NzYtYzA0MC0xMWU4LWJiYzMtMDExMDQxYmJlNzg1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "ea9df370-377a-4c4e-bebd-7ad3075fb0a2" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:21 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.143676dd-bfa6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1370" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.dependencies.json new file mode 100644 index 000000000000..d2c75a50ef8c --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.dependencies.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "36562335-7e14-4f1a-a803-d19c232589d8" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:08 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.4760ece2-c024-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "16306" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"4beb28f8-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:11.073Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f7-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:11.049Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"success\": \"True\",\r\n \"duration\": 21,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_7.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f6-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.978Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"success\": \"True\",\r\n \"duration\": 70,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_6.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f5-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.956Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"success\": \"True\",\r\n \"duration\": 21,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"204\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f4-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.948Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"success\": \"True\",\r\n \"duration\": 7,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"GET fabrikamaccount\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f3-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.921Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\",\r\n \"Blob\": \"fabrikam.txt\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"success\": \"True\",\r\n \"duration\": 26,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f2-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.904Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=acl\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f1-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:10.899Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"success\": \"False\",\r\n \"duration\": 4,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_1.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"45f0db21-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:00.91Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"931d5342f34744ef972a59503f02d214\",\r\n \"parentId\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"931d5342f34744ef972a59503f02d214\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_931d5342f34744ef972a59503f02d214\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 32,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"45f0db20-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:00.892Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"931d5342f34744ef972a59503f02d214\",\r\n \"parentId\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"931d5342f34744ef972a59503f02d214\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_931d5342f34744ef972a59503f02d214\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (1) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\\r\\n WHERE N'NORTHAMERICA\\\\drobbins' = [Extent1].[Identity]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/4beb28f8-c041-11e8-8936-8bc26a313bde", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy80YmViMjhmOC1jMDQxLTExZTgtODkzNi04YmMyNmEzMTNiZGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "19d5763f-959d-4b04-bcb4-65d607a38490" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:11 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9bf23077-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "3462" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"4beb28f8-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:32:11.073Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.exceptions.json new file mode 100644 index 000000000000..08edd664af95 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.exceptions.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "b9fb3244-2db3-41bb-8a59-5bb3e7916c5a" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:32:02 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.d328bd53-c002-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "78327" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"0cec9a80-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:30:25.467Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": \"\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"33324146\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"parentId\": \"|4385f6b0b7c1408788be1cbe7ab52951.0.be60c41_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0b01e181-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:30:22.081Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"63245697\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"79f12a805eaa410c8f352f6466456cee\",\r\n \"parentId\": \"|79f12a805eaa410c8f352f6466456cee.5.be60c25_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"79f12a805eaa410c8f352f6466456cee\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_79f12a805eaa410c8f352f6466456cee\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"00fe4072-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:30:05.076Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"id\": \"26092736\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"26092736\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"id\": \"18491853\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"18491853\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"id\": \"66501706\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"62d3c75540af4df9bc301c1c0f05c28f\",\r\n \"parentId\": \"|62d3c75540af4df9bc301c1c0f05c28f.6.be60c1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"62d3c75540af4df9bc301c1c0f05c28f\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_62d3c75540af4df9bc301c1c0f05c28f\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"eb385e64-c040-11e8-9269-538aa81dd28e\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:29:27.195Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"1141915\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"22e359de8a484dd4829e14775902e3dc\",\r\n \"parentId\": \"|22e359de8a484dd4829e14775902e3dc.0.84dd66d5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"22e359de8a484dd4829e14775902e3dc\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_22e359de8a484dd4829e14775902e3dc\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"eb309631-c040-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:29:27.137Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"40277457\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\",\r\n \"parentId\": \"|da4591283cd5468193b55563c701fbb2.35.be60c0e_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_da4591283cd5468193b55563c701fbb2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ea075871-c040-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:29:26.226Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"42399369\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\",\r\n \"parentId\": \"|da4591283cd5468193b55563c701fbb2.19.be60bfe_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_da4591283cd5468193b55563c701fbb2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"e9813882-c040-11e8-a202-bb78ca9a3410\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:29:25.816Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"54411077\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\",\r\n \"parentId\": \"|da4591283cd5468193b55563c701fbb2.12.be60bf7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_da4591283cd5468193b55563c701fbb2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"e90cf2e1-c040-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:29:25.329Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"51543874\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\",\r\n \"parentId\": \"|da4591283cd5468193b55563c701fbb2.5.be60bf0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"da4591283cd5468193b55563c701fbb2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_da4591283cd5468193b55563c701fbb2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"db15a974-c040-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:28:52.596Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"9761315\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"c15698e0b49f4d2bbdc3d9fb659a3d17\",\r\n \"parentId\": \"|c15698e0b49f4d2bbdc3d9fb659a3d17.0.84dd66d2_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c15698e0b49f4d2bbdc3d9fb659a3d17\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c15698e0b49f4d2bbdc3d9fb659a3d17\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dc731692-c040-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:28:34.36Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"33017646\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"33017646\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"40006499\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"40006499\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"24440521\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"f115ba71374c47529b5422279e059cb0\",\r\n \"parentId\": \"|f115ba71374c47529b5422279e059cb0.6.be60be8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f115ba71374c47529b5422279e059cb0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_f115ba71374c47529b5422279e059cb0\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/0cec9a80-c041-11e8-83bc-adc0fc6e03ef", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvMGNlYzlhODAtYzA0MS0xMWU4LTgzYmMtYWRjMGZjNmUwM2Vm", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "943ad642-690d-4328-b061-6c0e23e13c91" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:32:45 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "4178" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"0cec9a80-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:30:25.467Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": \"\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"33324146\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"parentId\": \"|4385f6b0b7c1408788be1cbe7ab52951.0.be60c41_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4385f6b0b7c1408788be1cbe7ab52951\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_4385f6b0b7c1408788be1cbe7ab52951\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.pageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.pageViews.json new file mode 100644 index 000000000000..3637f0cd956b --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.pageViews.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "6d886c93-101c-42c6-b544-d77586eae7db" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:24 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.790b8ed6-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8232" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff2f9af0-c040-11e8-9ee6-5320f818f397\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uQCft\",\r\n \"parentId\": \"uQCft\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"HbgDk\"\r\n },\r\n \"user\": {\r\n \"id\": \"ewJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff293250-c040-11e8-a3d2-2794445376db\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"gJT/K\",\r\n \"parentId\": \"gJT/K\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qmbeY\"\r\n },\r\n \"user\": {\r\n \"id\": \"e6E00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff298070-c040-11e8-b298-15f14a58a11c\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"lhii5\",\r\n \"parentId\": \"lhii5\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"AuTwP\"\r\n },\r\n \"user\": {\r\n \"id\": \"d6E00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2a43c1-c040-11e8-9939-fd204ba19491\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uINwQ\",\r\n \"parentId\": \"uINwQ\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"o6joy\"\r\n },\r\n \"user\": {\r\n \"id\": \"glA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2e1450-c040-11e8-9c39-6b3b19546ce7\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CiVVV\",\r\n \"parentId\": \"CiVVV\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"isO95\"\r\n },\r\n \"user\": {\r\n \"id\": \"fjB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff20f4f1-c040-11e8-bc9b-af0f5f1e51dd\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1QLLp\",\r\n \"parentId\": \"1QLLp\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"k9jvG\"\r\n },\r\n \"user\": {\r\n \"id\": \"ePI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.1\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff23b410-c040-11e8-ab88-8d9bdba00fed\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"X6X7P\",\r\n \"parentId\": \"X6X7P\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"2kQi0\"\r\n },\r\n \"user\": {\r\n \"id\": \"eVB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff37d850-c040-11e8-a051-dfca667ac862\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"DTHqF\",\r\n \"parentId\": \"DTHqF\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"zJXqV\"\r\n },\r\n \"user\": {\r\n \"id\": \"fWA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff219130-c040-11e8-9a0f-ef0951e91762\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5Bk66\",\r\n \"parentId\": \"5Bk66\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"sxXwC\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9G00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff22c9b0-c040-11e8-a5fc-4169f980067c\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"OuKqs\",\r\n \"parentId\": \"OuKqs\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qSZKX\"\r\n },\r\n \"user\": {\r\n \"id\": \"fiJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/ff2f9af0-c040-11e8-9ee6-5320f818f397", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy9mZjJmOWFmMC1jMDQwLTExZTgtOWVlNi01MzIwZjgxOGYzOTc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "99912236-af0a-4814-9416-6d37db92f124" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:30 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c8d3978f-c01b-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "918" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff2f9af0-c040-11e8-9ee6-5320f818f397\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uQCft\",\r\n \"parentId\": \"uQCft\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"HbgDk\"\r\n },\r\n \"user\": {\r\n \"id\": \"ewJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.performanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.performanceCounters.json new file mode 100644 index 000000000000..fea23ca2ab1c --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.performanceCounters.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "02697b15-9e83-4a0b-a06d-53bab8ec84d5" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:31:54 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9bf23077-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "9319" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"114482f6-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 398114816,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f5-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 451,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f7-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f8-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f2-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1884790784,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f1-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.494464822122811,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f0-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.988929644245623,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f4-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"114482f3-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"fe7f36b6-c040-11e8-8936-8bc26a313bde\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:29:49.174Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.283304572105408,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/114482f6-c041-11e8-b8ac-91f7dd2bcfca", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvMTE0NDgyZjYtYzA0MS0xMWU4LWI4YWMtOTFmN2RkMmJjZmNh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "0f3d0cb5-b83a-4493-92e3-d4777c863264" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:32:01 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9bf23077-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1051" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"114482f6-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:30:21.944Z\",\r\n \"performanceCounter\": {\r\n \"value\": 398114816,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.requests.json new file mode 100644 index 000000000000..47977195d920 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.requests.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "3cd1858f-f1cc-40e1-ab5c-9d2bf0c0d143" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:11 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.43ad40fc-bfdf-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "12819" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"4d74d630-c041-11e8-937d-f9c616e33c26\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:32:12.413Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.24\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.828,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.24.be60c9f_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28f9-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:32:10.896Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.2\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd\",\r\n \"success\": \"True\",\r\n \"duration\": 205.4437,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.2.be60c89_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"45f0db22-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:32:00.889Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"931d5342f34744ef972a59503f02d214\",\r\n \"parentId\": \"|931d5342f34744ef972a59503f02d214.3\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"931d5342f34744ef972a59503f02d214\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_931d5342f34744ef972a59503f02d214\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Create\",\r\n \"success\": \"True\",\r\n \"duration\": 54.1036,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"40b76c50-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:51.973Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\",\r\n \"parentId\": \"|9c2b00514b9f4139ad79bce399559a01.5\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9c2b00514b9f4139ad79bce399559a01\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.6843,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|9c2b00514b9f4139ad79bce399559a01.5.be60c77_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"403b5e80-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:51.659Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\",\r\n \"parentId\": \"|9c2b00514b9f4139ad79bce399559a01.2\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9c2b00514b9f4139ad79bce399559a01\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.04,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|9c2b00514b9f4139ad79bce399559a01.2.be60c74_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27f3daa0-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:07.603Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.39\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.7621,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d5f0d81983264460a8ac3e4577da66a7.39.be60c70_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27e8de21-c041-11e8-ad52-cdd1590dd6c7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:07.572Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 19.2979,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d5f0d81983264460a8ac3e4577da66a7.38.be60c6f_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27f62490-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:07.568Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.37\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.0173,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d5f0d81983264460a8ac3e4577da66a7.37.be60c6e_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27cffef1-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:07.565Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.36\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.0736,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d5f0d81983264460a8ac3e4577da66a7.36.be60c6d_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27c9e472-c041-11e8-ad52-cdd1590dd6c7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:31:07.539Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.35\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1\",\r\n \"success\": \"False\",\r\n \"duration\": 23.9022,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"500\",\r\n \"source\": \"\",\r\n \"id\": \"|d5f0d81983264460a8ac3e4577da66a7.35.be60c6c_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests/4d74d630-c041-11e8-937d-f9c616e33c26", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzLzRkNzRkNjMwLWMwNDEtMTFlOC05MzdkLWY5YzYxNmUzM2MyNg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "b67da476-e6d7-4273-985b-c908043b708d" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9c3cda1e-bfa6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1415" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"4d74d630-c041-11e8-937d-f9c616e33c26\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:32:12.413Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.24\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.828,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|4c707c8bfc7545c790a231700e19ecb4.24.be60c9f_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.traces.json new file mode 100644 index 000000000000..9ed9cae690e9 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetByType.traces.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "a5c13ab8-0afc-445d-9c37-c3350807dfd2" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:00 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.89f6aa26-bfc0-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "9981" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"4d74d631-c041-11e8-937d-f9c616e33c26\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:12.434Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.25.be60ca0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4beb28fa-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:11.31Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.3.be60c8a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"45f0db23-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:00.958Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"931d5342f34744ef972a59503f02d214\",\r\n \"parentId\": \"|931d5342f34744ef972a59503f02d214.4.be60c82_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"931d5342f34744ef972a59503f02d214\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_931d5342f34744ef972a59503f02d214\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"45f065f1-c041-11e8-a202-bb78ca9a3410\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:00.891Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"931d5342f34744ef972a59503f02d214\",\r\n \"parentId\": \"|931d5342f34744ef972a59503f02d214.3.be60c81_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"931d5342f34744ef972a59503f02d214\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_931d5342f34744ef972a59503f02d214\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"Listing Customers\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"40b76c51-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:52.008Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST /FabrikamProd/ServiceTickets/Create\",\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\",\r\n \"parentId\": \"|9c2b00514b9f4139ad79bce399559a01.6.be60c78_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9c2b00514b9f4139ad79bce399559a01\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"403b5e81-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:51.697Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/ServiceTickets/Create\",\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\",\r\n \"parentId\": \"|9c2b00514b9f4139ad79bce399559a01.3.be60c75_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9c2b00514b9f4139ad79bce399559a01\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3fe9bc1a-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:51.184Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd\",\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\",\r\n \"parentId\": \"|9c2b00514b9f4139ad79bce399559a01.0.be60c72_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9c2b00514b9f4139ad79bce399559a01\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_9c2b00514b9f4139ad79bce399559a01\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27f3daa1-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:07.606Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.40.be60c71_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27e8de22-c041-11e8-ad52-cdd1590dd6c7\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:07.603Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.39.be60c70_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"27f62491-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:31:07.572Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees\",\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\",\r\n \"parentId\": \"|d5f0d81983264460a8ac3e4577da66a7.38.be60c6f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d5f0d81983264460a8ac3e4577da66a7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_d5f0d81983264460a8ac3e4577da66a7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces/4d74d631-c041-11e8-937d-f9c616e33c26", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy80ZDc0ZDYzMS1jMDQxLTExZTgtOTM3ZC1mOWM2MTZlMzNjMjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "b88e89dd-c20e-4884-aac6-092db334f3a3" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:33:08 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.92e0529c-c03e-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1116" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"4d74d631-c041-11e8-937d-f9c616e33c26\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:32:12.434Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\",\r\n \"parentId\": \"|4c707c8bfc7545c790a231700e19ecb4.25.be60ca0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4c707c8bfc7545c790a231700e19ecb4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_4c707c8bfc7545c790a231700e19ecb4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json deleted file mode 100644 index 6527f20901da..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.AvailabilityResults.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "5cd9115d-a987-48a1-a300-66b59fb2b2d8" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:32:51 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "17990" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"2931f8f7-bee1-11e8-bca8-b1aa87db86b8\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:58.599Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 1085,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"181c5880-bee1-11e8-8107-47f5defc6d05\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:57.051Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"parentId\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1515,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/23/2018 03:30:58 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"West US\",\r\n \"id\": \"c3cb5187e76d45fb8ef54602d2985f5b\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"175781ed-bee1-11e8-9a92-9198ca8d8246\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:45.27Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_apac-hk-hkn-azr\",\r\n \"WebtestLocationId\": \"apac-hk-hkn-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"parentId\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:45 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"East Asia\",\r\n \"id\": \"3be6973e981d434bb3b01a503bd3bda9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Hong Kong\",\r\n \"stateOrProvince\": \"Central and Western District\",\r\n \"countryOrRegion\": \"Hong Kong\"\r\n }\r\n },\r\n {\r\n \"id\": \"161d2d1a-bee1-11e8-9dfb-3d2d863430ac\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:32.363Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"parentId\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:32 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"5c6aa131d5134eb8a6d0fe27155610df\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1961f802-bee1-11e8-b488-630d3a8b57b9\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:30.784Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"parentId\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 927,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"West US\",\r\n \"id\": \"ae65fadc199241e4b83c9cd190f64aae\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"089a9e89-bee1-11e8-bd58-fd897a946f95\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:25.572Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_emea-fr-pra-edge\",\r\n \"WebtestLocationId\": \"emea-fr-pra-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"parentId\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 3,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:25 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"France Central\",\r\n \"id\": \"eec2ba3aca5446d2af7dd4818b10605a\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"04a19f57-bee1-11e8-9a92-9198ca8d8246\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:17.041Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"vm reports-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm reports-fabrikamprod_apac-hk-hkn-azr\",\r\n \"WebtestLocationId\": \"apac-hk-hkn-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"parentId\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 1334,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"East Asia\",\r\n \"id\": \"dc224883f3b1465ba92eead044e0bc49\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Hong Kong\",\r\n \"stateOrProvince\": \"Central and Western District\",\r\n \"countryOrRegion\": \"Hong Kong\"\r\n }\r\n },\r\n {\r\n \"id\": \"09b2023e-bee1-11e8-8c32-efa11b45eb42\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:16.818Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"vm employees creation-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm employees creation-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"parentId\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Employees Creation\",\r\n \"success\": \"0\",\r\n \"duration\": 39,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 09/23/2018 03:30:16 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"097965de-bee1-11e8-8fa4-edd67a8e1ed1\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:07.389Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_apac-sg-sin-azr\",\r\n \"WebtestLocationId\": \"apac-sg-sin-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"996fdc52075c428e822902900e761dc2\",\r\n \"parentId\": \"996fdc52075c428e822902900e761dc2\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 24,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/23/2018 03:30:07 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Southeast Asia\",\r\n \"id\": \"996fdc52075c428e822902900e761dc2\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"044fae8b-bee1-11e8-99f9-e5e5db7721f9\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:56.75Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"parentId\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 523,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/23/2018 03:29:57 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/2931f8f7-bee1-11e8-bca8-b1aa87db86b8", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvMjkzMWY4ZjctYmVlMS0xMWU4LWJjYTgtYjFhYTg3ZGI4NmI4", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "c98469a1-5692-4f7e-afc9-0a26cca6a3aa" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "2294" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"2931f8f7-bee1-11e8-bca8-b1aa87db86b8\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:30:58.599Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 1085,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:30:59 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json deleted file mode 100644 index 985faceae9e6..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.BrowserTimings.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "0d6d471d-6d62-4ad4-892f-cec7c525f1b8" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:57 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.83da5075-be94-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "8070" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d6a8e7f1-be68-11e8-8062-f730d67dad18\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:11.898Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"cU57e\",\r\n \"parentId\": \"cU57e\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 689,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 127,\r\n \"receiveDuration\": 12,\r\n \"processingDuration\": 537\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d5bb7ab1-be68-11e8-a196-053f0835bcf4\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:10.33Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"IBPoo\",\r\n \"parentId\": \"IBPoo\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 777,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 7,\r\n \"sendDuration\": 211,\r\n \"receiveDuration\": 22,\r\n \"processingDuration\": 514\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d4b3a7a1-be68-11e8-a099-ef12f83797aa\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:08.618Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"xkpgx\",\r\n \"parentId\": \"xkpgx\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 992,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 150,\r\n \"sendDuration\": 146,\r\n \"receiveDuration\": 17,\r\n \"processingDuration\": 678\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"d3197fa1-be68-11e8-9559-79df1a91b6ef\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:05.943Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"uxcYv\",\r\n \"parentId\": \"uxcYv\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 911,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 139,\r\n \"sendDuration\": 135,\r\n \"receiveDuration\": 165,\r\n \"processingDuration\": 471\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"c90d04f1-be68-11e8-9d3e-434b8d1409f9\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:49.051Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"m6glw\",\r\n \"parentId\": \"m6glw\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 1375,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 158,\r\n \"sendDuration\": 131,\r\n \"receiveDuration\": 25,\r\n \"processingDuration\": 1060\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"bf52c8f1-be68-11e8-8587-0db278fbee50\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:32.82Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"TKzFr\",\r\n \"parentId\": \"TKzFr\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 1491,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 132,\r\n \"sendDuration\": 131,\r\n \"receiveDuration\": 14,\r\n \"processingDuration\": 1213\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"bbba11d2-be68-11e8-9a7c-4b0201483313\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:09:25.744Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd\",\r\n \"id\": \"ARrSc\",\r\n \"parentId\": \"ARrSc\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd\",\r\n \"totalDuration\": 2772,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 255,\r\n \"sendDuration\": 657,\r\n \"receiveDuration\": 126,\r\n \"processingDuration\": 1734\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/d785da71-be68-11e8-b519-694305c1af56", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzL2Q3ODVkYTcxLWJlNjgtMTFlOC1iNTE5LTY5NDMwNWMxYWY1Ng==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "8b11a025-a14f-4c64-b6f5-51729e4ee8dc" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:58 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1124" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json deleted file mode 100644 index 48bb814ce856..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomEvents.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "1ef14a00-ae0e-453d-a117-90ec4e3bed38" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:34:05 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "8557" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"20c9df61-bee1-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:46.027Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 854,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4373291-bee0-11e8-bcbc-e1ac5dbafb8e\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"49RB7\",\r\n \"parentId\": \"49RB7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bVQgK\"\r\n },\r\n \"user\": {\r\n \"id\": \"fdH00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4307bd0-bee0-11e8-8132-c91c643b54c8\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ZDvt0\",\r\n \"parentId\": \"ZDvt0\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"sTH+U\"\r\n },\r\n \"user\": {\r\n \"id\": \"fzI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42a1330-bee0-11e8-bfec-c1b45411477a\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"kQO86\",\r\n \"parentId\": \"kQO86\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"V976R\"\r\n },\r\n \"user\": {\r\n \"id\": \"eBK00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"f4286580-bee0-11e8-96df-6df5d5ebcaad\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1j9HR\",\r\n \"parentId\": \"1j9HR\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"r4e1o\"\r\n },\r\n \"user\": {\r\n \"id\": \"fDA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42ad682-bee0-11e8-bdac-57d94f7e26ae\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"M7s40\",\r\n \"parentId\": \"M7s40\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TdStr\"\r\n },\r\n \"user\": {\r\n \"id\": \"h7J00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Close Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f433b020-bee0-11e8-af95-e3029ba2aeff\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"HbT3V\",\r\n \"parentId\": \"HbT3V\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ZGXCN\"\r\n },\r\n \"user\": {\r\n \"id\": \"fnI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429c510-bee0-11e8-b8d2-af212fc2f42d\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"2vV9o\",\r\n \"parentId\": \"2vV9o\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Fitt5\"\r\n },\r\n \"user\": {\r\n \"id\": \"eTD00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42b99d1-bee0-11e8-a6ed-9552d8f572f7\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"L7KKh\",\r\n \"parentId\": \"L7KKh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DVntq\"\r\n },\r\n \"user\": {\r\n \"id\": \"fQE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429ec27-bee0-11e8-907e-e545f2665817\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"6iW7J\",\r\n \"parentId\": \"6iW7J\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"CiSvQ\"\r\n },\r\n \"user\": {\r\n \"id\": \"fDM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.1\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/20c9df61-bee1-11e8-a58b-a91d072bfa06", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy8yMGM5ZGY2MS1iZWUxLTExZTgtYTU4Yi1hOTFkMDcyYmZhMDY=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "8d118451-d2d6-45b7-a92a-3597b21acefe" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:34:15 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1488" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"20c9df61-bee1-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:30:46.027Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 854,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json deleted file mode 100644 index b16d801783fd..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.CustomMetrics.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UDFEJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "56d50e7a-fc6f-4b1b-8741-38e88faa1b7b" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:52 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "11168" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"983cbff1-bee0-11e8-9714-c3a181cd7267\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:27:11.171Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b5603b42-bede-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:13:51.078Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7fc23012-bede-11e8-8d35-9fa70d0e46e6\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:12:11.164Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cde7f76-bedc-11e8-a58b-a91d072bfa06\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:58:51.017Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"674c0d02-bedc-11e8-b834-9db56eff5685\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:57:11.159Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"847c0b76-beda-11e8-8385-951c4ec324fd\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:43:50.96Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4ed85af1-beda-11e8-b849-81958ce1867c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:42:11.153Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"6bf14ef6-bed8-11e8-adb8-c5d15d632dee\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:28:50.901Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3667b621-bed8-11e8-b834-9db56eff5685\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T02:27:11.133Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"c849aee8-05e2-4cd4-9e34-77cd4580555d\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvY2RlMGJlOWQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBl", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "63594bdc-960e-43e8-8454-eddaa50af8b6" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:57 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1370" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json deleted file mode 100644 index b01532a0fa5c..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Dependencies.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "5e034524-1412-4fcd-9ffb-2c460e8128d5" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:32 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "16087" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"55d82db1-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.368Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db0-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.35Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (1) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\\r\\n WHERE N'NORTHAMERICA\\\\drobbins' = [Extent1].[Identity]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5565bcd0-bee1-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:43.915Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.0.24f98a8f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"success\": \"False\",\r\n \"duration\": 10,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.0.24f98a8f_1.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb733-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.792Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 54,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb732-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.605Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 191,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb731-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.464Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 130,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb730-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:36.402Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"success\": \"True\",\r\n \"duration\": 63,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7890-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.595Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3ec3f9b0-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.357Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.26.24f98a7d_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.26.24f98a7d_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3e6055e0-bee1-11e8-a09e-f7a6ffb7a6e6\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:04.123Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.22.24f98a79_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[CreatedAt] AS [CreatedAt], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[ServiceTicketID] AS [ServiceTicketID]\\r\\n FROM [dbo].[ServiceLogEntries] AS [Extent1]\\r\\n WHERE [Extent1].[ServiceTicketID] = @p__linq__0\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.22.24f98a79_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/55d82db1-bee1-11e8-9f81-03ad3a4f1e45", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy81NWQ4MmRiMS1iZWUxLTExZTgtOWY4MS0wM2FkM2E0ZjFlNDU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "04580811-4f59-4ca1-a4dc-0f46caf8fb80" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:42 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.4d4ee74b-be39-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1798" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"55d82db1-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:32:44.368Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json deleted file mode 100644 index d8c27a661331..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Exceptions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "e2673ef0-f985-440d-8e08-fa17d55904db" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:32:37 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.f2890eab-beb0-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "77498" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"16a521c1-bee1-11e8-98a7-61a1726679a1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:58.855Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"50267222\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"|7f6931950ca84ed1acaabc49e445f8a6.5.24f98a23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"fdc5a3a0-bee0-11e8-b514-e39f2b03ddf1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:16.972Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": \"\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"57620449\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"parentId\": \"|2e055dd9d16d44d6bcb681678741d5b1.0.24f98a1e_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"2e055dd9d16d44d6bcb681678741d5b1\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_2e055dd9d16d44d6bcb681678741d5b1\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0359b594-bee1-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:57.017Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"36048960\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\",\r\n \"parentId\": \"|092c16ea0c6540f594a75030dbb0c164.0.84dd3d23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"092c16ea0c6540f594a75030dbb0c164\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_092c16ea0c6540f594a75030dbb0c164\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f167bee4-bee0-11e8-a58b-a91d072bfa06\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:49.081Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15541396\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"84b8211bd1904e3aaec33a013a36a732\",\r\n \"parentId\": \"|84b8211bd1904e3aaec33a013a36a732.0.84dd3d22_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"84b8211bd1904e3aaec33a013a36a732\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_84b8211bd1904e3aaec33a013a36a732\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd734171-bee0-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:21.385Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"26484917\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.35.24f98a17_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dc750b51-bee0-11e8-9b05-f5896ee08563\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:20.505Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"55338703\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.19.24f98a07_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dbe638d1-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:20.044Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"1396589\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.12.24f98a00_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"db6ee5f1-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:19.516Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"31612670\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.5.24f989f9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"d5ca3232-bee0-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:02.681Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"id\": \"9321110\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"9321110\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"id\": \"46636903\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"46636903\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"id\": \"34271770\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"dc9135ae7d774279a71294f7e51357bb\",\r\n \"parentId\": \"|dc9135ae7d774279a71294f7e51357bb.6.24f989f0_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"dc9135ae7d774279a71294f7e51357bb\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_dc9135ae7d774279a71294f7e51357bb\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/16a521c1-bee1-11e8-98a7-61a1726679a1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvMTZhNTIxYzEtYmVlMS0xMWU4LTk4YTctNjFhMTcyNjY3OWEx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "1f07819c-2e9c-43bd-bb98-130cc3f0abcd" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:32:50 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "6067" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"16a521c1-bee1-11e8-98a7-61a1726679a1\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:30:58.855Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"id\": \"50267222\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"parentId\": \"|7f6931950ca84ed1acaabc49e445f8a6.5.24f98a23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"7f6931950ca84ed1acaabc49e445f8a6\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_7f6931950ca84ed1acaabc49e445f8a6\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json deleted file mode 100644 index b745d1a25f43..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PageViews.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "91f7b0d0-4acb-40a1-9734-4371b34b3708" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:58 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "8333" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"f42e31e0-bee0-11e8-be0b-11d503b0b708\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"smY5t\",\r\n \"parentId\": \"smY5t\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bDM/F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fJF00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42b24a0-bee0-11e8-a96a-195352e56edd\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BN6dz\",\r\n \"parentId\": \"BN6dz\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Sadu4\"\r\n },\r\n \"user\": {\r\n \"id\": \"f6F00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.0\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f437f5e0-bee0-11e8-8b5d-b36608083c95\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"7i8OU\",\r\n \"parentId\": \"7i8OU\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"X0/g7\"\r\n },\r\n \"user\": {\r\n \"id\": \"f+L00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f427a230-bee0-11e8-bfec-c1b45411477a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1vbp3\",\r\n \"parentId\": \"1vbp3\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qZeb6\"\r\n },\r\n \"user\": {\r\n \"id\": \"ftM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429c510-bee0-11e8-ae8b-2dc93fe195d1\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"f2fnp\",\r\n \"parentId\": \"f2fnp\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"chmw0\"\r\n },\r\n \"user\": {\r\n \"id\": \"fMM00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Details\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f429ec20-bee0-11e8-ac50-2f2263992ff9\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"u40tP\",\r\n \"parentId\": \"u40tP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DsLmz\"\r\n },\r\n \"user\": {\r\n \"id\": \"hyQ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42705f0-bee0-11e8-9bb6-495e69d4d64f\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"LZsuk\",\r\n \"parentId\": \"LZsuk\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"nedg8\"\r\n },\r\n \"user\": {\r\n \"id\": \"fWN00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Details\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f42a3a41-bee0-11e8-8d49-151175eb2745\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ggGbG\",\r\n \"parentId\": \"ggGbG\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"E6QfO\"\r\n },\r\n \"user\": {\r\n \"id\": \"hnG00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"f427f050-bee0-11e8-a418-53bb3d28697e\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"qSifY\",\r\n \"parentId\": \"qSifY\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"xoH7L\"\r\n },\r\n \"user\": {\r\n \"id\": \"f4J00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Index\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"f430a2e2-bee0-11e8-883f-05595d097d78\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"ziETR\",\r\n \"parentId\": \"ziETR\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"29kAt\"\r\n },\r\n \"user\": {\r\n \"id\": \"fTE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/f42e31e0-bee0-11e8-be0b-11d503b0b708", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy9mNDJlMzFlMC1iZWUwLTExZTgtYmUwYi0xMWQ1MDNiMGI3MDg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "94a180e6-e255-4f43-a2ec-a2ba2ec47956" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:34:04 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "944" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"f42e31e0-bee0-11e8-be0b-11d503b0b708\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:30:00.055Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"smY5t\",\r\n \"parentId\": \"smY5t\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"bDM/F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fJF00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json deleted file mode 100644 index 9b3a81597ada..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.PerformanceCounters.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "101ded6c-b72d-4422-9975-1909181f3ee2" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:32:22 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.7d1dc807-be68-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "9276" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"ec4d97e1-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11907610515838,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e7-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 392265728,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e3-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1943142400,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e5-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e8-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e6-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 671,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e9-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e4-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ec4d97e2-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.55953805257919,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"f10e0628-bee0-11e8-b834-9db56eff5685\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:29.135Z\",\r\n \"performanceCounter\": {\r\n \"value\": 253947904,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"PyUgpCcBMLU=\",\r\n \"parentId\": \"|PyUgpCcBMLU=.24f89ced_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/ec4d97e1-bee0-11e8-a051-554fff31bf13", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvZWM0ZDk3ZTEtYmVlMC0xMWU4LWEwNTEtNTU0ZmZmMzFiZjEz", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "6912cbdb-8d20-4989-bef6-31591790e62f" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:32:35 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1064" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"ec4d97e1-bee0-11e8-a051-554fff31bf13\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:29:47.066Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11907610515838,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json deleted file mode 100644 index c5975e0faf0a..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Requests.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "123f8896-7022-4aea-8c26-3e5d4b1bf005" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:43 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.2f3ad4ac-beb6-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "13004" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d0-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:45.734Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.20\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.2226,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|c73477afa3cc490ea4f4daccbce562fd.20.24f98aac_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db2-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:44.347Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"parentId\": \"|14e2a521bd9d425e801483c3a9dbdc62.3\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"14e2a521bd9d425e801483c3a9dbdc62\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_14e2a521bd9d425e801483c3a9dbdc62\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Create\",\r\n \"success\": \"True\",\r\n \"duration\": 37.6647,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|14e2a521bd9d425e801483c3a9dbdc62.3.24f98a93_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb735-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:36.386Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\",\r\n \"parentId\": \"|f1541730afaa44ba87bc516306829fc8.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f1541730afaa44ba87bc516306829fc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_f1541730afaa44ba87bc516306829fc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1113.4207,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": \"\",\r\n \"id\": \"|f1541730afaa44ba87bc516306829fc8.0.84dd3d29_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f95efb0-bee1-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.766Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.37\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.655,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.37.24f98a88_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f4ab5e0-bee1-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.748Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.36\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.0574,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.36.24f98a87_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f31afa0-bee1-11e8-b849-81958ce1867c\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.693Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.34\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.5958,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.34.24f98a85_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f237ed0-bee1-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.676Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.33\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.8541,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.33.24f98a84_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7891-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.593Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.32\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 19.0553,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.32.24f98a83_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0dfb00-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.558Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.30\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.852,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.30.24f98a81_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3ed3b120-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:04.448Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.28\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.5968,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|fb91bf309b4246ec99fac616d49bf1ec.28.24f98a7f_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests/57c816d0-bee1-11e8-a12e-ad1c1c632b87", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzLzU3YzgxNmQwLWJlZTEtMTFlOC1hMTJlLWFkMWMxYzYzMmI4Nw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "5d1852a1-7034-43aa-99c3-8a08d6bc42bf" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:52 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1417" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d0-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:32:45.734Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.20\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.2226,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|c73477afa3cc490ea4f4daccbce562fd.20.24f98aac_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json deleted file mode 100644 index d939d21326be..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/GetEventsByType.Traces.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "762be1e5-bd20-4524-a9ab-9d5379d48d36" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "10054" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d1-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:45.769Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.21.24f98aad_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"55d82db3-bee1-11e8-9f81-03ad3a4f1e45\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:44.472Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.3.24f98a94_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"5565bcd1-bee1-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:43.928Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.2.24f98a90_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"531cb736-bee1-11e8-a051-554fff31bf13\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:40.547Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"a7d75bf8f7a5465da43710fbb403a3fe\",\r\n \"parentId\": \"|a7d75bf8f7a5465da43710fbb403a3fe.0.84dd3d2a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"a7d75bf8f7a5465da43710fbb403a3fe\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_a7d75bf8f7a5465da43710fbb403a3fe\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f95efb1-bee1-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.783Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.38.24f98a89_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f4ab5e1-bee1-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.766Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.37.24f98a88_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f31afa1-bee1-11e8-b849-81958ce1867c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.711Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Details/1\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.35.24f98a86_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f237ed1-bee1-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.693Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.34.24f98a85_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0a7892-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.676Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.33.24f98a84_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3f0dfb01-bee1-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:04.576Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"parentId\": \"|fb91bf309b4246ec99fac616d49bf1ec.31.24f98a82_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"fb91bf309b4246ec99fac616d49bf1ec\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_fb91bf309b4246ec99fac616d49bf1ec\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/57c816d1-bee1-11e8-a12e-ad1c1c632b87", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy81N2M4MTZkMS1iZWUxLTExZTgtYTEyZS1hZDFjMWM2MzJiODc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "293505ca-de1f-463e-967b-6ee32d66b73f" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:33:32 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.3d34e0bf-be40-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1117" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"57c816d1-bee1-11e8-a12e-ad1c1c632b87\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:32:45.769Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\",\r\n \"parentId\": \"|c73477afa3cc490ea4f4daccbce562fd.21.24f98aad_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c73477afa3cc490ea4f4daccbce562fd\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_c73477afa3cc490ea4f4daccbce562fd\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json deleted file mode 100644 index 8b4051d418f8..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.EventsTests/tmp.json +++ /dev/null @@ -1,495 +0,0 @@ -{ - "@odata.context": "https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces", - "value": [ - { - "id": "9a45a490-beba-11e8-bafe-bd28921270d7", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:55:29.545Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /", - "id": "1b9fd9033b524cbd80d4a34abb27db80", - "parentId": "|1b9fd9033b524cbd80d4a34abb27db80.0.84dd38ae_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "1b9fd9033b524cbd80d4a34abb27db80" - }, - "user": { - "id": "us-ca-sjc-azr_1b9fd9033b524cbd80d4a34abb27db80", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "fabrikamfiberapp", - "roleInstance": "RD00155D467AF0" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Jose", - "stateOrProvince": "California", - "countryOrRegion": "United States" - } - }, - { - "id": "927de9c2-beba-11e8-bc0c-6b0f3fcbdb18", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:55:16.502Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Reports", - "id": "f5c2314e49c74d64a032ba538f502537", - "parentId": "|f5c2314e49c74d64a032ba538f502537.0.24f95075_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "f5c2314e49c74d64a032ba538f502537" - }, - "user": { - "id": "apac-hk-hkn-azr_f5c2314e49c74d64a032ba538f502537", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "Hong Kong", - "stateOrProvince": "Central and Western District", - "countryOrRegion": "Hong Kong" - } - }, - { - "id": "87a71a36-beba-11e8-b560-417dc3849c44", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:58.315Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /", - "id": "XDll+SalS0E=", - "parentId": "|XDll+SalS0E=.84dd38ad_", - "syntheticSource": "Bot" - }, - "session": { - "id": "" - }, - "user": { - "id": "", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "fabrikamfiberapp", - "roleInstance": "RD00155D467AF0" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "", - "stateOrProvince": "", - "countryOrRegion": "" - } - }, - { - "id": "862e5ce6-beba-11e8-bafe-bd28921270d7", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:55.830Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /Customers/Details/8469", - "id": "39219ba7134e42e7b910191da93528f1", - "parentId": "|39219ba7134e42e7b910191da93528f1.0.84dd38ac_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "39219ba7134e42e7b910191da93528f1" - }, - "user": { - "id": "us-tx-sn1-azr_39219ba7134e42e7b910191da93528f1", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "fabrikamfiberapp", - "roleInstance": "RD00155D467AF0" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Antonio", - "stateOrProvince": "Texas", - "countryOrRegion": "United States" - } - }, - { - "id": "810f05d2-beba-11e8-af2c-516246e5be26", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:47.267Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /Customers/Details/8469", - "id": "1141497dba4e4945972db9af23307bde", - "parentId": "|1141497dba4e4945972db9af23307bde.0.84dd38ab_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "1141497dba4e4945972db9af23307bde" - }, - "user": { - "id": "us-fl-mia-edge_1141497dba4e4945972db9af23307bde", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "fabrikamfiberapp", - "roleInstance": "RD00155D467AF0" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "Des Moines", - "stateOrProvince": "Iowa", - "countryOrRegion": "United States" - } - }, - { - "id": "740c5581-beba-11e8-92dd-032c40cc7fd7", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:25.428Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Reports", - "id": "a28989e757c84fd6a57d280d32d0c629", - "parentId": "|a28989e757c84fd6a57d280d32d0c629.0.24f95073_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "a28989e757c84fd6a57d280d32d0c629" - }, - "user": { - "id": "emea-gb-db3-azr_a28989e757c84fd6a57d280d32d0c629", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "Dublin", - "stateOrProvince": "Leinster", - "countryOrRegion": "Ireland" - } - }, - { - "id": "72808561-beba-11e8-92dd-032c40cc7fd7", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:21.004Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot", - "id": "994fb712312b47c5b7451e99aa7be96d", - "parentId": "|994fb712312b47c5b7451e99aa7be96d.40.24f95072_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "994fb712312b47c5b7451e99aa7be96d" - }, - "user": { - "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Antonio", - "stateOrProvince": "Texas", - "countryOrRegion": "United States" - } - }, - { - "id": "7267a631-beba-11e8-b250-571a285ca0a0", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:20.978Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Content/fonts/segoewp-webfont.eot", - "id": "994fb712312b47c5b7451e99aa7be96d", - "parentId": "|994fb712312b47c5b7451e99aa7be96d.39.24f95071_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "994fb712312b47c5b7451e99aa7be96d" - }, - "user": { - "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Antonio", - "stateOrProvince": "Texas", - "countryOrRegion": "United States" - } - }, - { - "id": "7263ae91-beba-11e8-bb78-ffa688050455", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:20.861Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Employees", - "id": "994fb712312b47c5b7451e99aa7be96d", - "parentId": "|994fb712312b47c5b7451e99aa7be96d.38.24f95070_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "994fb712312b47c5b7451e99aa7be96d" - }, - "user": { - "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Antonio", - "stateOrProvince": "Texas", - "countryOrRegion": "United States" - } - }, - { - "id": "725cd0c1-beba-11e8-92dd-032c40cc7fd7", - "count": 1, - "type": "trace", - "timestamp": "2018-09-22T22:54:20.837Z", - "customDimensions": null, - "customMeasurements": null, - "operation": { - "name": "GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot", - "id": "994fb712312b47c5b7451e99aa7be96d", - "parentId": "|994fb712312b47c5b7451e99aa7be96d.37.24f9506f_", - "syntheticSource": "Application Insights Availability Monitoring" - }, - "session": { - "id": "994fb712312b47c5b7451e99aa7be96d" - }, - "user": { - "id": "us-tx-sn1-azr_994fb712312b47c5b7451e99aa7be96d", - "accountId": "", - "authenticatedId": "" - }, - "cloud": { - "roleName": "", - "roleInstance": "AIConnect2" - }, - "ai": { - "iKey": "5a2e4e0c-e136-4a15-9824-90ba859b0a89", - "appName": "fabrikamprod", - "appId": "cf58dcfd-0683-487c-bc84-048789bca8e5", - "sdkVersion": "sd:2.6.4-28971" - }, - "trace": { - "message": "New Request Received", - "severityLevel": 0 - }, - "application": { - "version": "" - }, - "client": { - "model": "", - "os": "", - "type": "PC", - "browser": "", - "ip": "0.0.0.0", - "city": "San Antonio", - "stateOrProvince": "Texas", - "countryOrRegion": "United States" - } - } - ] -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json index 02c08057e522..1b580da76926 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Events.TraceEventsTests/GetTraceEvents.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "832b1b76-b842-401d-9fcb-b3dd842eafcc" + "d3ecf94b-06e6-4f4c-89bb-748fbf803ee3" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:10 GMT" + "Mon, 24 Sep 2018 21:36:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.76a92ffc-be3a-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.8cd1d6bb-c00d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -56,18 +56,18 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "9986" + "10116" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"befec701-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:32.035Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"parentId\": \"|8739ed2b79d04efdb7972d6ad1300e68.0.84dd3d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc6a1260-bee0-11e8-9714-c3a181cd7267\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.522Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Create\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.3.24f989ba_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"Listing Customers\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc4c0311-bee0-11e8-bb78-ffa688050455\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.521Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/ServiceTickets/Create\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.3.24f989ba_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc4aa381-bee0-11e8-972c-85851c7bc73c\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.494Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.2.24f989b9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc43ecc9-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.46Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.1.24f989b8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"bc0ab451-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:27.077Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd\",\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\",\r\n \"parentId\": \"|82136ac62d44469088962cfd05ff80d4.0.24f989b7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"82136ac62d44469088962cfd05ff80d4\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_82136ac62d44469088962cfd05ff80d4\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b736e522-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:18.966Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"20a3b00e5449444c81bde5eb05de3222\",\r\n \"parentId\": \"|20a3b00e5449444c81bde5eb05de3222.0.24f989b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20a3b00e5449444c81bde5eb05de3222\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_20a3b00e5449444c81bde5eb05de3222\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a60a8861-bee0-11e8-8d35-9fa70d0e46e6\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:50.18Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"6f472797f78d4057be8763be476cb5d2\",\r\n \"parentId\": \"|6f472797f78d4057be8763be476cb5d2.0.24f989b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6f472797f78d4057be8763be476cb5d2\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6f472797f78d4057be8763be476cb5d2\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a532ed11-bee0-11e8-b48b-9b54e5d24a76\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:47.241Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"parentId\": \"|bc9c96c4e8e54e9f97ccc50be43259aa.40.24f989b3_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a525a6a2-bee0-11e8-b834-9db56eff5685\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:27:47.207Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"parentId\": \"|bc9c96c4e8e54e9f97ccc50be43259aa.39.24f989b2_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"bc9c96c4e8e54e9f97ccc50be43259aa\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_bc9c96c4e8e54e9f97ccc50be43259aa\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132ba-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:55.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"|97a05290a2f54f8ea14727d69845b680.0.84dd66e8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_97a05290a2f54f8ea14727d69845b680\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9f669eb1-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:31.402Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\",\r\n \"parentId\": \"|df5758d583054c50a62205d30e9dfdef.0.be60d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-gb-db3-azr_df5758d583054c50a62205d30e9dfdef\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Dublin\",\r\n \"stateOrProvince\": \"Leinster\",\r\n \"countryOrRegion\": \"Ireland\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e7a9101-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.352Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.40.be60d1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2bfbd4-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.327Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.39.be60d19_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d10c7e2-c041-11e8-9269-538aa81dd28e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.255Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"parentId\": \"|4957eb27cc2b4ea187cd1f83339e2020.0.84dd66e6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2c22e0-c041-11e8-a202-bb78ca9a3410\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.232Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.38.be60d18_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9df9c840-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.207Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.37.be60d17_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ddfb091-c041-11e8-bdc7-23826b528d11\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.137Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Details/1\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.35.be60d15_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9dc54ac1-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.111Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.34.be60d14_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9da42e34-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.087Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.33.be60d13_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/befec701-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9iZWZlYzcwMS1iZWUwLTExZTgtYWFjMC1hM2UwYWFmMWNmMGU/dGltZXNwYW49UFQxMkg=", + "RequestUri": "/v1/apps/DEMO_APP/events/traces/ada132ba-c041-11e8-bbc3-011041bbe785?timespan=PT12H", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9hZGExMzJiYS1jMDQxLTExZTgtYmJjMy0wMTEwNDFiYmU3ODU/dGltZXNwYW49UFQxMkg=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,7 +76,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -85,7 +85,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "1366660e-0ac6-445b-9f11-3d345184101e" + "096102cc-5a5a-4738-8a7e-2314b6448151" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:11 GMT" + "Mon, 24 Sep 2018 21:36:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -121,13 +121,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1128" + "1150" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"befec701-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:28:32.035Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"parentId\": \"|8739ed2b79d04efdb7972d6ad1300e68.0.84dd3d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"8739ed2b79d04efdb7972d6ad1300e68\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-il-ch1-azr_8739ed2b79d04efdb7972d6ad1300e68\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132ba-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:55.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"|97a05290a2f54f8ea14727d69845b680.0.84dd66e8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_97a05290a2f54f8ea14727d69845b680\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json index 63b90031921d..8c7dd40c2f5d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "03eebb9c-ad4b-4269-8bcf-cc6a3ae1e8c7" + "87631651-173e-4b23-b107-c948be48b8bf" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:34:16 GMT" + "Mon, 24 Sep 2018 21:36:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.143676dd-bfa6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1461" + "1464" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:34:16.067Z\",\r\n \"end\": \"2018-09-23T03:34:16.067Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:34:16.067Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.18\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 82.91\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.29\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.72\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 84.25\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.48\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.31\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.69\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.62\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.69\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.16\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.1\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:34:16.067Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.12\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:22.129Z\",\r\n \"end\": \"2018-09-24T21:36:22.129Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:22.129Z\",\r\n \"end\": \"2018-09-24T10:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 105.6\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T10:00:00Z\",\r\n \"end\": \"2018-09-24T11:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.62\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T11:00:00Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 70.79\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T13:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 107.68\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T13:00:00Z\",\r\n \"end\": \"2018-09-24T14:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 89.26\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T14:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 80.35\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.51\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T16:00:00Z\",\r\n \"end\": \"2018-09-24T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 77.08\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T17:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.23\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 120.05\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T19:00:00Z\",\r\n \"end\": \"2018-09-24T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.61\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T20:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.63\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:22.129Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.79\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json index 62bf1a6a4ecb..45ee06bc77c3 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledMetricsTests/GetIntervaledMetrics_AllAggregations.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "cda0f258-f869-4e9c-85be-d3a8c252726d" + "0f9bb909-b1a7-4eed-9cfa-693a76cc4220" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:34:17 GMT" + "Mon, 24 Sep 2018 21:36:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.ee5d12a0-be78-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.1debaf6b-bfde-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "2157" + "2166" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:34:16.595Z\",\r\n \"end\": \"2018-09-23T03:34:16.595Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:34:16.595Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.18,\r\n \"count\": 1393,\r\n \"min\": 0.46,\r\n \"max\": 1493.89,\r\n \"sum\": 103328.4\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 82.91,\r\n \"count\": 3227,\r\n \"min\": 0.46,\r\n \"max\": 1845.07,\r\n \"sum\": 267557.27\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.29,\r\n \"count\": 3241,\r\n \"min\": 0.47,\r\n \"max\": 4191.04,\r\n \"sum\": 240784.55\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.72,\r\n \"count\": 3242,\r\n \"min\": 0.45,\r\n \"max\": 2208.68,\r\n \"sum\": 232530.33\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 84.25,\r\n \"count\": 3244,\r\n \"min\": 0.43,\r\n \"max\": 23005.68,\r\n \"sum\": 273302.4\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.48,\r\n \"count\": 3245,\r\n \"min\": 0.45,\r\n \"max\": 1902.93,\r\n \"sum\": 222214.71\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.31,\r\n \"count\": 3235,\r\n \"min\": 0.45,\r\n \"max\": 1517.37,\r\n \"sum\": 217749.07\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.69,\r\n \"count\": 3258,\r\n \"min\": 0.46,\r\n \"max\": 1676.67,\r\n \"sum\": 227061.78\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.62,\r\n \"count\": 3230,\r\n \"min\": 0.47,\r\n \"max\": 2307.56,\r\n \"sum\": 231343.7\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 71.69,\r\n \"count\": 3215,\r\n \"min\": 0.49,\r\n \"max\": 2318.67,\r\n \"sum\": 230496.42\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 67.16,\r\n \"count\": 3227,\r\n \"min\": 0.45,\r\n \"max\": 2159.2,\r\n \"sum\": 216740.5\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.1,\r\n \"count\": 3239,\r\n \"min\": 0.46,\r\n \"max\": 1705.96,\r\n \"sum\": 220583.79\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:34:16.595Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.12,\r\n \"count\": 1724,\r\n \"min\": 0.45,\r\n \"max\": 23236,\r\n \"sum\": 139859.32\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:22.691Z\",\r\n \"end\": \"2018-09-24T21:36:22.691Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:22.691Z\",\r\n \"end\": \"2018-09-24T10:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 105.6,\r\n \"count\": 1310,\r\n \"min\": 0.53,\r\n \"max\": 23213.2,\r\n \"sum\": 138334.98\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T10:00:00Z\",\r\n \"end\": \"2018-09-24T11:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.62,\r\n \"count\": 3229,\r\n \"min\": 0.47,\r\n \"max\": 1261.85,\r\n \"sum\": 224812.35\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T11:00:00Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 70.79,\r\n \"count\": 3293,\r\n \"min\": 0.54,\r\n \"max\": 2401.43,\r\n \"sum\": 233125.35\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T13:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 107.68,\r\n \"count\": 3574,\r\n \"min\": 0.47,\r\n \"max\": 24541.22,\r\n \"sum\": 384849.39\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T13:00:00Z\",\r\n \"end\": \"2018-09-24T14:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 89.26,\r\n \"count\": 3229,\r\n \"min\": 0.45,\r\n \"max\": 2419.42,\r\n \"sum\": 288221.16\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T14:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 80.35,\r\n \"count\": 3220,\r\n \"min\": 0.46,\r\n \"max\": 2109.91,\r\n \"sum\": 258736.07\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T16:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.51,\r\n \"count\": 3229,\r\n \"min\": 0.54,\r\n \"max\": 2166.44,\r\n \"sum\": 240594.5\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T16:00:00Z\",\r\n \"end\": \"2018-09-24T17:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 77.08,\r\n \"count\": 3238,\r\n \"min\": 0.53,\r\n \"max\": 2148.49,\r\n \"sum\": 249573.93\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T17:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.23,\r\n \"count\": 3231,\r\n \"min\": 0.53,\r\n \"max\": 1251.16,\r\n \"sum\": 220454.5\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T19:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 120.05,\r\n \"count\": 3249,\r\n \"min\": 0.44,\r\n \"max\": 24032.95,\r\n \"sum\": 390037.96\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T19:00:00Z\",\r\n \"end\": \"2018-09-24T20:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.61,\r\n \"count\": 3311,\r\n \"min\": 0.53,\r\n \"max\": 23140.65,\r\n \"sum\": 270217.59\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T20:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.63,\r\n \"count\": 3186,\r\n \"min\": 0.53,\r\n \"max\": 1664.51,\r\n \"sum\": 231413.96\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:22.691Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.79,\r\n \"count\": 1863,\r\n \"min\": 0.53,\r\n \"max\": 1537.7,\r\n \"sum\": 130017.24\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json index c03b63728538..97896193d8b6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledMultiSegmentedMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "778932ce-f7ab-4855-ad7d-b3ee93b5a48c" + "8b21a9fa-b6d3-48fb-8387-fa5b72709176" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:25 GMT" + "Mon, 24 Sep 2018 21:36:19 GMT" ], "Via": [ - "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "17836" + "17822" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:25.766Z\",\r\n \"end\": \"2018-09-23T03:30:25.766Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:25.766Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 844.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 517.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.73\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.62\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 57.22\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.83\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.51\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.42\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 845.46\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 604.83\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 516.67\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 391.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 356.26\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 251.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 143.4\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 142.19\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 114.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 72.61\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 855.75\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 510.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.14\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.48\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 45.88\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.86\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 27.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.99\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 826.43\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 482.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.35\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.88\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.74\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.59\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 841.2\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 646.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 357.89\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.62\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 107.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 75.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 75.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.05\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 787.44\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 457.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 114.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.7\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 78.46\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 44.66\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.04\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.99\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.77\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.79\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 779.77\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 441.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.26\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.61\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.1\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.83\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.45\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 13.75\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 788.22\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 452.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 157.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.41\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.98\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 90.48\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.85\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 889.58\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 456.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 124.36\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.2\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.68\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.11\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.6\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 858.48\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 458.79\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 239.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.07\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.32\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.89\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.1\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 788.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 434.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.03\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.3\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.67\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.92\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 16.71\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 818.01\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 445.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.9\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.1\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.33\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/images/logo_text.png\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 43.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.75\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.63\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.03\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:25.766Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.72\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.53\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:19.629Z\",\r\n \"end\": \"2018-09-24T21:36:19.629Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:19.629Z\",\r\n \"end\": \"2018-09-24T10:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 950.88\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 830.09\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 118.45\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 111.11\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 97.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 44.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.45\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.91\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.84\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.94\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T10:00:00Z\",\r\n \"end\": \"2018-09-24T11:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 759.25\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 478.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.55\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.14\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 48.19\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.78\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.23\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 13.24\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T11:00:00Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 471.12\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 367.67\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 190.52\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 142.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 297.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 115.94\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.96\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.14\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.54\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T13:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1506.78\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 798.87\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 290.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 133.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 115.81\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 95.19\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.55\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.06\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.13\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 31.52\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T13:00:00Z\",\r\n \"end\": \"2018-09-24T14:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 946.59\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 531.84\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 256.55\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 253.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 187.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 169.99\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 149.33\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.09\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery.uitablefilter.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.5\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 67.86\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T14:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 914.13\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 505.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 504.01\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 496.99\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 258.82\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 173.37\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 130.53\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.59\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 45.33\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.51\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.27\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 951.02\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 467.47\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 199.91\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 195.49\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 164.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 126.07\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 106.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 89.45\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.2\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.61\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T16:00:00Z\",\r\n \"end\": \"2018-09-24T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 950.63\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 507.65\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 114.83\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 113.47\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.18\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 28.13\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.88\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 15.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T17:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 824.29\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 436.87\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 117.01\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 43.52\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.08\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.68\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.94\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.68\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.55\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.22\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2236.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1510.44\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1131.55\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1089.68\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1042.01\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 774.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 534.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 517.91\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 441.95\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 422.83\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T19:00:00Z\",\r\n \"end\": \"2018-09-24T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 845.5\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 565.56\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 347.81\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 246.3\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 198.95\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 127.78\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 115.42\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 85.67\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.48\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 36.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.16\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T20:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 812.04\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 497.35\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.21\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.11\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.25\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.39\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.08\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.05\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.24\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.53\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 6.9\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:19.629Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 761.64\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 481.82\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 113.98\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 57.06\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.41\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.69\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 15.69\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json index 3c721592af10..b0fd5a1311cf 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.IntervaledSegmentedMetricsTests/GetIntervaledSegmentedMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "15983c46-29b0-44e5-8514-f7a6e6650205" + "1bc912df-17e0-4d0e-95d0-c675ac7697de" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:26 GMT" + "Mon, 24 Sep 2018 21:36:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.3d34e0bf-be40-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.7276cbf9-bfd4-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "3646" + "3645" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.158Z\",\r\n \"end\": \"2018-09-23T03:30:26.158Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:26.158Z\",\r\n \"end\": \"2018-09-22T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 216.1\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 56.97\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.17\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T16:00:00Z\",\r\n \"end\": \"2018-09-22T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 232.94\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 72.61\r\n },\r\n \"request/resultCode\": \"404\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 62.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T17:00:00Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 220.73\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.12\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 213.49\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.23\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T19:00:00Z\",\r\n \"end\": \"2018-09-22T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 216.25\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 67.78\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.17\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T20:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 205.63\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.07\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.32\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-22T22:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 203.45\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.96\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.04\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T22:00:00Z\",\r\n \"end\": \"2018-09-22T23:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 205.04\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.64\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.23\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T23:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 228.66\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 51.39\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.26\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T01:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 220.79\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.52\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.02\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T01:00:00Z\",\r\n \"end\": \"2018-09-23T02:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 204.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.15\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T02:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 211.12\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.85\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.05\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:26.158Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 204.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 66.24\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4.71\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:19.94Z\",\r\n \"end\": \"2018-09-24T21:36:19.94Z\",\r\n \"interval\": \"PT1H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:19.94Z\",\r\n \"end\": \"2018-09-24T10:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 211.13\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 93.42\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.95\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T10:00:00Z\",\r\n \"end\": \"2018-09-24T11:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 198.54\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 53.28\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.08\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T11:00:00Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 210.38\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.96\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.01\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T13:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 338.26\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 78.44\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.38\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T13:00:00Z\",\r\n \"end\": \"2018-09-24T14:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 248.19\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 67.86\r\n },\r\n \"request/resultCode\": \"404\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 67.81\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T14:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 236.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 60.43\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.91\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T16:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 242.47\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 52.89\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 4\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T16:00:00Z\",\r\n \"end\": \"2018-09-24T17:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 239.75\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 56.3\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.57\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T17:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 212.8\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 49.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.95\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T19:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 271.93\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 100.57\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.12\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T19:00:00Z\",\r\n \"end\": \"2018-09-24T20:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 218.98\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 64.22\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 34.94\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T20:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 211.23\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.04\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 2.88\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:19.94Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 194.06\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 3.04\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json index 1ecb52b0c30e..fb1eca82b218 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "29b2546e-a8c6-4971-9aaa-5fe0613ca6af" + "4577c1cf-db95-4364-aa8b-b73cedc03cf6" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:27 GMT" + "Mon, 24 Sep 2018 21:36:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.b61bf8d6-bf2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,13 +59,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "685" + "686" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.723Z\",\r\n \"end\": \"2018-09-23T03:30:27.723Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:27.723Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 77.75\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 74.82\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.54\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 68.98\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:27.723Z\",\r\n \"requests/duration\": {\r\n \"avg\": 81.1\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:21.243Z\",\r\n \"end\": \"2018-09-24T21:36:21.243Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:21.243Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 76.13\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 92.97\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 73.28\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"requests/duration\": {\r\n \"avg\": 91.49\r\n }\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:21.243Z\",\r\n \"requests/duration\": {\r\n \"avg\": 69.79\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json index 32c4c5f18a8d..de13096dfa21 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalMultiSegmentMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "8fcbf07f-450e-4def-a1b7-8a0c5caae13d" + "21821a5b-d82b-42ae-acc1-7e2512df52fb" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:28 GMT" + "Mon, 24 Sep 2018 21:36:22 GMT" ], "Via": [ - "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.b61bf8d6-bf2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,13 +59,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "7007" + "6852" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMultiSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:28.537Z\",\r\n \"end\": \"2018-09-23T03:30:28.537Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:28.537Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 849.35\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 513.47\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 245.09\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 160.26\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 145.73\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 123.68\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.74\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.88\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.14\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.27\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/success\": \"True\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 818.36\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 528.77\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.52\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.31\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/success\": \"True\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.09\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.94\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.37\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 819.19\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 449.89\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 117.74\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.78\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 87.12\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.3\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.97\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.19\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.49\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.36\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.92\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 821.68\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 446.23\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.84\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.47\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 85.51\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.22\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.93\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.21\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.13\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.43\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:28.537Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.72\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.53\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalMultiSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:21.845Z\",\r\n \"end\": \"2018-09-24T21:36:21.845Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:21.845Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 797.33\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 554.53\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 367.67\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 190.52\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 142.61\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 297.02\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.63\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.39\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 97.8\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.96\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.14\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1122.5\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 614.86\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 213.72\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Content/style.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 168.01\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 162.28\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 131.63\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.64\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.65\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.37\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 96.6\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 908.64\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 470.66\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 164.16\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 119.3\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.8\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 89.45\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 71.46\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 68.37\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 48.63\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.55\r\n },\r\n \"request/success\": \"True\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.19\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 899.85\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 802.01\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 612.69\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 612.07\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 512.34\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 392.6\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 351.71\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 193.1\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 188.63\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 140.39\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:21.845Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 761.64\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 481.82\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 113.98\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.8\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 57.06\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.79\r\n },\r\n \"request/success\": \"False\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.41\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.47\r\n },\r\n \"request/success\": \"False\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Employees/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.69\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.28\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 15.69\r\n },\r\n \"request/success\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json index 13ba400bf6ed..e7c6618a46b1 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedIntervalSegmentMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "b74da289-23dc-48ea-bf97-dea3f6093e23" + "d8c0cb04-a90c-4297-972a-ed352370855b" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:28 GMT" + "Mon, 24 Sep 2018 21:36:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.92e0529c-c03e-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,13 +59,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "4643" + "4647" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:28.247Z\",\r\n \"end\": \"2018-09-23T03:30:28.247Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-22T15:30:28.247Z\",\r\n \"end\": \"2018-09-22T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 849.35\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 513.47\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 245.09\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 160.26\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 145.73\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 123.68\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.74\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.88\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 59.14\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Content/style.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.27\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T18:00:00Z\",\r\n \"end\": \"2018-09-22T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 820.15\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 528.77\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/name\": \"GET Customers/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.52\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.31\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Delete\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.22\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 28.83\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 25.2\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-22T21:00:00Z\",\r\n \"end\": \"2018-09-23T00:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 819.19\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 449.89\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 117.74\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.78\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 87.12\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.3\r\n },\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.97\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.36\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 23.92\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.9\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T00:00:00Z\",\r\n \"end\": \"2018-09-23T03:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Assign\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 821.68\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 446.23\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 112.84\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.47\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 85.51\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 50.22\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.13\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.43\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.57\r\n },\r\n \"request/name\": \"GET Employees/Details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-23T03:00:00Z\",\r\n \"end\": \"2018-09-23T03:30:28.247Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 813.33\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 638.15\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.28\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.22\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 46.32\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 24.28\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.15\r\n },\r\n \"request/name\": \"GET Employees/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.81\r\n },\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.76\r\n },\r\n \"request/name\": \"GET Employees/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 11.59\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedIntervalSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:21.645Z\",\r\n \"end\": \"2018-09-24T21:36:21.645Z\",\r\n \"interval\": \"PT3H\",\r\n \"segments\": [\r\n {\r\n \"start\": \"2018-09-24T09:36:21.645Z\",\r\n \"end\": \"2018-09-24T12:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 797.33\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 554.53\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 367.67\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 297.02\r\n },\r\n \"request/name\": \"GET Reports/Tickets\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 178.54\r\n },\r\n \"request/name\": \"GET Reports/Employees\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.63\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 110.39\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 97.8\r\n },\r\n \"request/name\": \"GET Employees/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.96\r\n },\r\n \"request/name\": \"GET Customers/Delete\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 84.14\r\n },\r\n \"request/name\": \"GET ServiceTickets/Delete\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T12:00:00Z\",\r\n \"end\": \"2018-09-24T15:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1122.5\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 614.86\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 213.72\r\n },\r\n \"request/name\": \"GET /Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 168.01\r\n },\r\n \"request/name\": \"GET /Content/style.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 162.28\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 131.63\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.64\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.65\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 101.37\r\n },\r\n \"request/name\": \"GET /Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 96.6\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T15:00:00Z\",\r\n \"end\": \"2018-09-24T18:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 908.64\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 470.66\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 164.16\r\n },\r\n \"request/name\": \"GET ServiceTickets/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 119.3\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 89.45\r\n },\r\n \"request/name\": \"GET Customers/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 71.46\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 68.37\r\n },\r\n \"request/name\": \"GET /Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 48.63\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 28.92\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T18:00:00Z\",\r\n \"end\": \"2018-09-24T21:00:00Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 899.85\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 802.01\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 612.69\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 612.07\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 512.34\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 392.6\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 351.71\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 193.1\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-ui-1.8.11.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 188.63\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout.mapping-latest.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 140.39\r\n },\r\n \"request/name\": \"GET /Scripts/knockout-1.2.0.js\"\r\n }\r\n ]\r\n },\r\n {\r\n \"start\": \"2018-09-24T21:00:00Z\",\r\n \"end\": \"2018-09-24T21:36:21.645Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 761.64\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 481.82\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 113.98\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 108.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 57.06\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 22.47\r\n },\r\n \"request/name\": \"GET ServiceTickets/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 21.09\r\n },\r\n \"request/name\": \"GET Employees/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 20.69\r\n },\r\n \"request/name\": \"GET Employees/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 19.28\r\n },\r\n \"request/name\": \"GET ServiceTickets/GetLogEntries\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 15.69\r\n },\r\n \"request/name\": \"GET /Scripts/jquery-1.5.1.min.js\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json index c74a95bd6b03..ed7892b9c97b 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "ad699f1c-4976-4cd3-8356-ce497242c401" + "7dad4be4-5a0e-41a7-85f2-f4d3309c3864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:27 GMT" + "Mon, 24 Sep 2018 21:36:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.397c0bcb-be72-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.1ba68d48-bfd1-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -65,7 +65,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.529Z\",\r\n \"end\": \"2018-09-23T03:30:27.529Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.91\r\n }\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:21.017Z\",\r\n \"end\": \"2018-09-24T21:36:21.017Z\",\r\n \"requests/duration\": {\r\n \"avg\": 83.25\r\n }\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json index 28f510fc8f71..66aedacce2fd 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.MetricTests/GetMetrics.AggregatedSegmentMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "5a5d82c2-fdee-4163-8895-246c5403ba58" + "58f01adb-4daa-4d92-97f9-f5f93d41043f" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:28 GMT" + "Mon, 24 Sep 2018 21:36:21 GMT" ], "Via": [ - "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.31a1c7f5-c02c-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,13 +59,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "934" + "982" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.953Z\",\r\n \"end\": \"2018-09-23T03:30:27.953Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 826.12\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/name\": \"GET ServiceTickets/Assign\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 489.72\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/name\": \"GET Customers/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.14\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.72\r\n },\r\n \"request/name\": \"GET ServiceTickets/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/name\": \"GET ServiceTickets/Delete\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.04\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 47.88\r\n },\r\n \"request/name\": \"GET ServiceTickets/Create\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"AggregatedSegmentMetric\",\r\n \"status\": 200,\r\n \"body\": {\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:21.44Z\",\r\n \"end\": \"2018-09-24T21:36:21.44Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 930.95\r\n },\r\n \"request/name\": \"GET Customers/Details\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 559.83\r\n },\r\n \"request/name\": \"GET Home/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 297.02\r\n },\r\n \"request/name\": \"GET Reports/Tickets\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 275\r\n },\r\n \"request/name\": \"GET robots.txt/Index\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 229.34\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jQuery.tmpl.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 178.54\r\n },\r\n \"request/name\": \"GET Reports/Employees\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 176.04\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 164.16\r\n },\r\n \"request/name\": \"GET ServiceTickets/Edit\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 139.61\r\n },\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 124.57\r\n },\r\n \"request/name\": \"POST ServiceTickets/Create\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json index 31a0ef4dc352..44facf783eb6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetMultiSegmentedMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "068b90fc-2d62-4880-9cc3-86d0fffe70fe" + "fe1279bc-c74e-4a29-8181-cefe81066a5f" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:26 GMT" + "Mon, 24 Sep 2018 21:33:40 GMT" ], "Via": [ - "1.1 draft-ai-blue.6b7b32a8-bea4-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.3109e61a-bf93-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1427" + "1410" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.61Z\",\r\n \"end\": \"2018-09-23T03:30:26.61Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 1270.93\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 825.68\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Assign\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 822.8\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 489.89\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 183.74\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Customers/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 146.31\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 116.14\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 109.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 79.72\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 26.6\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Delete\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 77.15\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/knockout-1.2.0.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 55.04\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:33:40.237Z\",\r\n \"end\": \"2018-09-24T21:33:40.237Z\",\r\n \"segments\": [\r\n {\r\n \"request/name\": \"GET Customers/Details\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 931.06\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Home/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 559.76\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Employees\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 190.52\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 142.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET Reports/Tickets\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 297.02\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET robots.txt/Index\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 275\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jQuery.tmpl.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 229.34\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Scripts/jquery-1.5.1.min.js\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 176.04\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET ServiceTickets/Edit\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 164.16\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"GET /FabrikamProd/Content/themes/base/jquery.ui.all.css\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 139.61\r\n },\r\n \"request/resultCode\": \"200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"request/name\": \"POST ServiceTickets/Create\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 124.7\r\n },\r\n \"request/resultCode\": \"500\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json index 56dbe4d3920d..c97fb36d5747 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "d0fb26d4-c778-4af9-8759-302cf7a7feb8" + "19ab3d05-c353-4070-a499-d040b230f5be" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:26 GMT" + "Mon, 24 Sep 2018 21:33:40 GMT" ], "Via": [ - "1.1 draft-ai-blue.5a530b04-be21-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.23308d31-c024-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,7 +59,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.864Z\",\r\n \"end\": \"2018-09-23T03:30:26.864Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 214.42\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.86\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.51\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:33:40.746Z\",\r\n \"end\": \"2018-09-24T21:33:40.746Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 237.06\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.6\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 16.59\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json index c4148eabda0a..b88acc3f9d61 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SegmentedMetricsTests/GetSegmentedMetrics_AllAggregations.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "47fedf09-335a-4801-85b2-5b9e0b916ed4" + "5b909f74-8435-433d-926f-cd13c456294e" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:26 GMT" + "Mon, 24 Sep 2018 21:33:40 GMT" ], "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "441" + "445" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:26.355Z\",\r\n \"end\": \"2018-09-23T03:30:26.355Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 214.42,\r\n \"count\": 4602,\r\n \"min\": 19.12,\r\n \"max\": 3877.63,\r\n \"sum\": 986753.34\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 54.86,\r\n \"count\": 33491,\r\n \"min\": 0.43,\r\n \"max\": 23236,\r\n \"sum\": 1837205.88\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 9.51,\r\n \"count\": 721,\r\n \"min\": 1.65,\r\n \"max\": 1004.11,\r\n \"sum\": 6857.46\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:33:39.593Z\",\r\n \"end\": \"2018-09-24T21:33:39.593Z\",\r\n \"segments\": [\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 237.06,\r\n \"count\": 4634,\r\n \"min\": 19.24,\r\n \"max\": 24541.22,\r\n \"sum\": 1098548.8\r\n },\r\n \"request/resultCode\": \"500\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 63.6,\r\n \"count\": 33786,\r\n \"min\": 0.44,\r\n \"max\": 24323.5,\r\n \"sum\": 2148938.21\r\n },\r\n \"request/resultCode\": \"200\"\r\n },\r\n {\r\n \"requests/duration\": {\r\n \"avg\": 16.59,\r\n \"count\": 721,\r\n \"min\": 1.44,\r\n \"max\": 1535.19,\r\n \"sum\": 11963.68\r\n },\r\n \"request/resultCode\": \"404\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json index 94e3804a60e9..e62eb1109bd1 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "198ce128-c8de-47c5-b8d0-e6cac2f3462f" + "f882cfb5-faa7-4d29-8278-c58c57f686e1" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:27 GMT" + "Mon, 24 Sep 2018 21:36:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.58d7d1d7-be9a-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.3109e61a-bf93-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -59,7 +59,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.3Z\",\r\n \"end\": \"2018-09-23T03:30:27.3Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.93\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:23.38Z\",\r\n \"end\": \"2018-09-24T21:36:23.38Z\",\r\n \"requests/duration\": {\r\n \"avg\": 83.25\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json index 733fd4010824..d57501085772 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.Metrics.SummaryMetricsTests/GetSummaryMetric_AllAggregations.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "107a18a5-b960-42b2-955b-a5cd3d1fbc39" + "ffd4e11a-575f-43cc-b239-2e0d8ea8ba75" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:27 GMT" + "Mon, 24 Sep 2018 21:36:23 GMT" ], "Via": [ - "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.9c3cda1e-bfa6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -53,13 +53,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "167" + "170" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-22T15:30:27.094Z\",\r\n \"end\": \"2018-09-23T03:30:27.094Z\",\r\n \"requests/duration\": {\r\n \"avg\": 72.93,\r\n \"count\": 38814,\r\n \"min\": 0.43,\r\n \"max\": 23236,\r\n \"sum\": 2830816.67\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": {\r\n \"start\": \"2018-09-24T09:36:22.94Z\",\r\n \"end\": \"2018-09-24T21:36:22.94Z\",\r\n \"requests/duration\": {\r\n \"avg\": 83.25,\r\n \"count\": 39162,\r\n \"min\": 0.44,\r\n \"max\": 24541.22,\r\n \"sum\": 3260388.99\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json index 1b1a31230f12..88139ef15bea 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecutePostQueryWithTimespan_DemoWorkspace.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true,include-render=true,include-statistics=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6281b1b7-1d28-4d71-b436-34bd4ea3df8f" + "d0da14de-9f4a-439d-9019-4ef66c205c57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:29 GMT" + "Mon, 24 Sep 2018 21:33:41 GMT" ], "Via": [ - "1.1 draft-ai-blue.2f3ad4ac-beb6-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.790b8ed6-c005-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -58,13 +58,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "24680" + "24709" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-23T02:30:29.3525743Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"OUizEYS+Gi4=\",\r\n \"|OUizEYS+Gi4=.84dd3c15_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"a32c1a30-bed8-11e8-a732-87ea3d7f0576\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:30.4307518Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"f45089752f184443b5173a0f3c7b783c\",\r\n \"|f45089752f184443b5173a0f3c7b783c.0.84dd3c16_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"f45089752f184443b5173a0f3c7b783c\",\r\n \"us-ca-sjc-azr_f45089752f184443b5173a0f3c7b783c\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"a3ce2691-bed8-11e8-adb8-c5d15d632dee\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:56.9437613Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /Customers/Details/8469\",\r\n \"ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"|ce890bc2b6cf48da90a1559ab28d5321.0.84dd3c17_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"us-ca-sjc-azr_ce890bc2b6cf48da90a1559ab28d5321\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b399e1f2-bed8-11e8-adb8-c5d15d632dee\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.3405049Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.2.24f97d8a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b46c9b30-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.6534214Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.3.24f97d8b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b49c5dc9-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.6652932Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.4.24f97d8c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4b4c7c1-bed8-11e8-9dfd-9b89e60141b7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.673293Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/10\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.5.24f97d8d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4e41521-bed8-11e8-b849-81958ce1867c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.700294Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.6.24f97d8e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b4c0aea3-bed8-11e8-98a7-61a1726679a1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7052929Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.7.24f97d8f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b50f6ae8-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7092912Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.8.24f97d90_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b521ba61-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.7307559Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.9.24f97d91_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b524c7a2-bed8-11e8-b48b-9b54e5d24a76\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8844434Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.10.24f97d92_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5463252-bed8-11e8-9dfd-9b89e60141b7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8874427Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.11.24f97d93_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b55fd4d1-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.8904421Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/7\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.12.24f97d94_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b57f91d1-bed8-11e8-bb78-ffa688050455\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9150328Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.13.24f97d95_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b58b0383-bed8-11e8-9714-c3a181cd7267\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.923473Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.14.24f97d96_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5acbc51-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9294662Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/7\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.15.24f97d97_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5aa4b51-bed8-11e8-972b-85851c7bc73c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:58.9506437Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.16.24f97d98_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5cbb602-bed8-11e8-98a7-61a1726679a1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1439514Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.17.24f97d99_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5db9482-bed8-11e8-b834-9db56eff5685\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1489643Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.18.24f97d9a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5f473b1-bed8-11e8-9b05-f5896ee08563\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1529634Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/2\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.19.24f97d9b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b5eaafb1-bed8-11e8-972b-85851c7bc73c\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1773391Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.20.24f97d9c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b6042b23-bed8-11e8-b834-9db56eff5685\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1807125Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.21.24f97d9d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b638cfb2-bed8-11e8-8d35-9fa70d0e46e6\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.1837263Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/2\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.22.24f97d9e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b64097e2-bed8-11e8-8e3b-7b0c0d1a3f18\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T02:30:59.2054744Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"|a41513ad48b64077b77ffe35e0cf193a.23.24f97d9f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a41513ad48b64077b77ffe35e0cf193a\",\r\n \"us-fl-mia-edge_a41513ad48b64077b77ffe35e0cf193a\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"b63bb5e2-bed8-11e8-b513-e39f2b03ddf1\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 0.1250041,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 225,\r\n \"misses\": 0,\r\n \"total\": 225\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0468750\",\r\n \"kernel\": \"00:00:00.0156250\",\r\n \"totalCpu\": \"00:00:00.0625000\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 301991424\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12811,\r\n \"scanned\": 30\r\n },\r\n \"rows\": {\r\n \"total\": 25539648179,\r\n \"scanned\": 4435959\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 15298\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-24T20:33:44.0449485Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"43bf5bcd27114f3db2fafcfafe404719\",\r\n \"|43bf5bcd27114f3db2fafcfafe404719.0.84dd65ea_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"43bf5bcd27114f3db2fafcfafe404719\",\r\n \"emea-se-sto-edge_43bf5bcd27114f3db2fafcfafe404719\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Cardiff\",\r\n \"Cardiff\",\r\n \"United Kingdom\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"216d9a29-c039-11e8-9269-538aa81dd28e\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:33:48.8133537Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"ftgj5FzrLYM=\",\r\n \"|ftgj5FzrLYM=.84dd65eb_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"24426509-c039-11e8-bbc3-011041bbe785\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:33:52.0947382Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /Customers/Details/8469\",\r\n \"86f8df4315d746e38085c85ff720bb74\",\r\n \"|86f8df4315d746e38085c85ff720bb74.0.84dd65ec_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"86f8df4315d746e38085c85ff720bb74\",\r\n \"us-va-ash-azr_86f8df4315d746e38085c85ff720bb74\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Boydton\",\r\n \"Virginia\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"26370919-c039-11e8-b8ac-91f7dd2bcfca\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:12.0565242Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"6c1d9fc8fd3d4ddb9b50f9c985b31a8f\",\r\n \"|6c1d9fc8fd3d4ddb9b50f9c985b31a8f.0.84dd65ed_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"6c1d9fc8fd3d4ddb9b50f9c985b31a8f\",\r\n \"us-ca-sjc-azr_6c1d9fc8fd3d4ddb9b50f9c985b31a8f\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"323122f0-c039-11e8-9269-538aa81dd28e\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:24.791349Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.2.be60057_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"39c54aa0-c039-11e8-8936-8bc26a313bde\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.1052559Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.3.be60058_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"39e4b989-c039-11e8-be55-0363482d7ebf\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.1330691Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.4.be60059_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"39e6b551-c039-11e8-83bc-adc0fc6e03ef\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.1630689Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/10\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.5.be6005a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a0a69f1-c039-11e8-b194-bfc9586370da\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.2100704Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.6.be6005b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a278ee3-c039-11e8-bdc7-23826b528d11\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.2360701Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.7.be6005c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a26f2a2-c039-11e8-83bc-adc0fc6e03ef\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.2609083Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.8.be6005d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a485d59-c039-11e8-b531-f12218fc06e4\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.3047658Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.9.be6005e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a60c752-c039-11e8-a202-bb78ca9a3410\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.5720601Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.10.be6005f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a675703-c039-11e8-83bc-adc0fc6e03ef\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.6606404Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.11.be60060_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a823201-c039-11e8-be55-0363482d7ebf\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.6856421Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/7\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.12.be60061_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a834371-c039-11e8-b194-bfc9586370da\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.7312806Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.13.be60062_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3a996383-c039-11e8-83bc-adc0fc6e03ef\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.7562809Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.14.be60063_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3aa5e6a1-c039-11e8-a202-bb78ca9a3410\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.780723Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/7\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.15.be60064_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3abc54d1-c039-11e8-932e-cd5dae094438\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:25.8239307Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.16.be60065_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3adde692-c039-11e8-b194-bfc9586370da\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.0411469Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.17.be60066_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3aeadee2-c039-11e8-bdc7-23826b528d11\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.0721447Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.18.be60067_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3aef24a1-c039-11e8-bd5f-9f112225a55a\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.0971469Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/2\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.19.be60068_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3b1bb2e1-c039-11e8-8936-8bc26a313bde\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.1431455Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.20.be60069_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3b326f31-c039-11e8-bdc7-23826b528d11\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.1681619Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.21.be6006a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3b285d11-c039-11e8-83bc-adc0fc6e03ef\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-24T20:34:26.1929374Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/2\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"|2b56093be0af47f3a95ec323b28d54c3.22.be6006b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"2b56093be0af47f3a95ec323b28d54c3\",\r\n \"us-tx-sn1-azr_2b56093be0af47f3a95ec323b28d54c3\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"3b490471-c039-11e8-8936-8bc26a313bde\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 0.1718893,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 104,\r\n \"misses\": 0,\r\n \"total\": 104\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00\",\r\n \"kernel\": \"00:00:00.0156250\",\r\n \"totalCpu\": \"00:00:00.0156250\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 218104864\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12864,\r\n \"scanned\": 55\r\n },\r\n \"rows\": {\r\n \"total\": 25556128015,\r\n \"scanned\": 4660933\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 15334\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json index bb74c2e699dc..905efe4673d6 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/CanExecuteSimplePostQuery_DemoWorkspace.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true,include-render=true,include-statistics=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "6b0d861b-f77d-4ac1-84f1-0259ab2d9541" + "1a1a1d54-d004-45b0-8d48-7416f0114b37" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:32:11 GMT" + "Mon, 24 Sep 2018 21:35:42 GMT" ], "Via": [ - "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.c31b8ea8-c036-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -58,13 +58,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "24881" + "45262" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-22T00:23:47.6667741Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.8.f8ca253e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c5e0cde2-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.1837101Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.10.f8ca2540_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6159982-bdfd-11e8-b3ff-936f719e4d79\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.2351376Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.11.f8ca2541_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c61c7751-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.2865786Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/7\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.12.f8ca2542_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c631fb21-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:48.872289Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.17.f8ca2547_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c67e4662-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:49.0992214Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.21.f8ca254b_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6ddf291-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:49.1502285Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/2\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.22.f8ca254c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c6e23851-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.4751421Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.34.f8ca2559_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c799ef91-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.5261411Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Employees/Details/1\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.35.f8ca255a_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c7b23281-bdfd-11e8-aabb-53261730f263\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:50.8695901Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"|a3929fc341ee47a08efffe05cbd3defc.39.f8ca255e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"a3929fc341ee47a08efffe05cbd3defc\",\r\n \"us-ca-sjc-azr_a3929fc341ee47a08efffe05cbd3defc\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c7eaf5c3-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:53.1915258Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /Customers/Details/8469\",\r\n \"41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"|41e728af0b3b4c9494ba39d637f4b7a0.0.84dd2297_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"emea-fr-pra-edge_41e728af0b3b4c9494ba39d637f4b7a0\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Paris\",\r\n \"Paris\",\r\n \"France\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c918a056-bdfd-11e8-bb52-8fbcec20d158\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:54.1281985Z\",\r\n \"Listing Customers\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET ServiceTickets/Create\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"|e5e6e63bf1e24bb0baad4a573499bc3f.3.f8ca2563_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"us-ca-sjc-azr_e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c9c2ea10-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:23:54.4772089Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"POST /FabrikamProd/ServiceTickets/Create\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"|e5e6e63bf1e24bb0baad4a573499bc3f.6.f8ca2566_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"us-ca-sjc-azr_e5e6e63bf1e24bb0baad4a573499bc3f\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Jose\",\r\n \"California\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"c9f0d7e0-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:14.6816004Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /\",\r\n \"e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"|e3f2246bfcd44118b0760bbfe6956bf2.0.84dd2299_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"us-fl-mia-edge_e3f2246bfcd44118b0760bbfe6956bf2\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d5e72136-bdfd-11e8-b894-6318c09dadc7\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:15.7075412Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.2.f8ca256c_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6797628-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:15.9999672Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.3.f8ca256d_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6b51f99-bdfd-11e8-aabb-53261730f263\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.0278693Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.4.f8ca256e_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6aba9b1-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.0543667Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/Details/10\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.5.f8ca256f_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6b9da81-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1252418Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.7.f8ca2571_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6ddb632-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1497934Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets/GetLogEntries/10\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.8.f8ca2572_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d6eea621-bdfd-11e8-a069-b32015e10e97\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.1918803Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/ServiceTickets\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.9.f8ca2573_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d703b4c2-bdfd-11e8-a671-e52e2f41bfa3\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.4580428Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.10.f8ca2574_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d7086fb2-bdfd-11e8-b0e8-c5155703fe96\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.485229Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.11.f8ca2575_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d71e1a91-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.5568878Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.13.f8ca2577_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d72ebc63-bdfd-11e8-9a03-d9cf45743a95\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-22T00:24:16.582095Z\",\r\n \"New Request Received\",\r\n 0,\r\n \"trace\",\r\n null,\r\n null,\r\n \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"|d501f5298af742f4a3a6926db0b4a01d.14.f8ca2578_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"d501f5298af742f4a3a6926db0b4a01d\",\r\n \"us-tx-sn1-azr_d501f5298af742f4a3a6926db0b4a01d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"sd:2.6.4-28971\",\r\n \"d760c8e1-bdfd-11e8-9638-19f4b1cb536d\",\r\n 1,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 5.3283847,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 775,\r\n \"misses\": 0,\r\n \"total\": 775\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0312500\",\r\n \"kernel\": \"00:00:00\",\r\n \"totalCpu\": \"00:00:00.0312500\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 553796928\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12822,\r\n \"scanned\": 11634\r\n },\r\n \"rows\": {\r\n \"total\": 25539654906,\r\n \"scanned\": 21626473476\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 15500\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"tables\": [\r\n {\r\n \"name\": \"PrimaryResult\",\r\n \"columns\": [\r\n {\r\n \"name\": \"timestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"message\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"severityLevel\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"itemType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"customDimensions\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"customMeasurements\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"operation_Name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_ParentId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"operation_SyntheticSource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"session_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_Id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AuthenticatedId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"user_AccountId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"application_Version\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Model\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_OS\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_IP\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_City\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_StateOrProvince\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_CountryOrRegion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"client_Browser\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"cloud_RoleInstance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"appName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"iKey\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"sdkVersion\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"itemCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"name\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"id\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"duration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"performanceBucket\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"source\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"success\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"resultCode\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"target\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"data\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"problemId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"handledAt\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"assembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"method\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"outerMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostType\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMessage\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostAssembly\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"innermostMethod\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"details\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"size\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"value\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueCount\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"valueSum\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMin\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueMax\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"valueStdDev\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"counter\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"instance\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"networkDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"sendDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"receiveDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"processingDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"totalDuration\",\r\n \"type\": \"real\"\r\n },\r\n {\r\n \"name\": \"OperationName\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Level\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivityStatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ActivitySubstatus\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceGroup\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"SubscriptionId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CorrelationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Caller\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"CallerIpAddress\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"HTTPRequest\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Properties\",\r\n \"type\": \"dynamic\"\r\n },\r\n {\r\n \"name\": \"EventSubmissionTimestamp\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"Authorization\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"OperationId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ResourceProvider\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Resource\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"EventDataId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TenantId\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"TimeGenerated\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"SourceSystem\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"ingestionTime\",\r\n \"type\": \"datetime\"\r\n },\r\n {\r\n \"name\": \"col_0\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_1\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_2\",\r\n \"type\": \"string\"\r\n },\r\n {\r\n \"name\": \"col_3\",\r\n \"type\": \"string\"\r\n }\r\n ],\r\n \"rows\": [\r\n [\r\n \"2018-09-23T19:11:55.6050869Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"POST ServiceTickets/Create\",\r\n \"aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"|aa7bf3e81d8e4a93bdac383b33b5118d.6.e8217e99_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"us-fl-mia-edge_aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"8f9176f1-bf64-11e8-b622-cf26fd08d742\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|omBovw6VuS0=.e8217e9b_\",\r\n \"\",\r\n 15,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT TOP (1) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\\r\\n WHERE N'NORTHAMERICA\\\\drobbins' = [Extent1].[Identity]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:11:55.6382998Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"ErrorMessage\\\":\\\"The INSERT statement conflicted with the CHECK constraint \\\\\\\"chk_read_only_1\\\\\\\". The conflict occurred in database \\\\\\\"FabrikamlSQL\\\\\\\", table \\\\\\\"dbo.ServiceTickets\\\\\\\".\\\\r\\\\nThe statement has been terminated.\\\"}\",\r\n null,\r\n \"POST ServiceTickets/Create\",\r\n \"aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"|aa7bf3e81d8e4a93bdac383b33b5118d.6.e8217e99_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"us-fl-mia-edge_aa7bf3e81d8e4a93bdac383b33b5118d\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Des Moines\",\r\n \"Iowa\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"8f9176f2-bf64-11e8-b622-cf26fd08d742\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|VIJs6Nw8r88=.e8217e9d_\",\r\n \"\",\r\n 16,\r\n \"<250ms\",\r\n \"\",\r\n \"False\",\r\n \"547\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"INSERT [dbo].[ServiceTickets]([Title], [Description], [Status], [StatusValue], [EscalationLevel], [Opened], [Closed], [CustomerID], [CreatedByID], [AssignedToID])\\r\\nVALUES (@0, @1, @2, @3, @4, @5, NULL, NULL, NULL, NULL)\\r\\nSELECT [ID]\\r\\nFROM [dbo].[ServiceTickets]\\r\\nWHERE @@ROWCOUNT > 0 AND [ID] = scope_identity()\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:06.4549167Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET ServiceTickets/Index\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.9.e8217ea5_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"90469620-bf64-11e8-8774-03891f79eb42\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.9.e8217ea5_2.\",\r\n \"\",\r\n 16,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:06.8239551Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET ServiceTickets/Details\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.12.e8217ea9_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"90c514f0-bf64-11e8-bb0c-9127b97fd14d\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.12.e8217ea9_2.\",\r\n \"\",\r\n 15,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Limit1].[ID] AS [ID], \\r\\n [Limit1].[Title] AS [Title], \\r\\n [Limit1].[Description] AS [Description], \\r\\n [Limit1].[Status] AS [Status], \\r\\n [Limit1].[StatusValue] AS [StatusValue], \\r\\n [Limit1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Limit1].[Opened] AS [Opened], \\r\\n [Limit1].[Closed] AS [Closed], \\r\\n [Limit1].[CustomerID] AS [CustomerID], \\r\\n [Limit1].[CreatedByID] AS [CreatedByID], \\r\\n [Limit1].[AssignedToID] AS [AssignedToID], \\r\\n [Limit1].[ID1] AS [ID1], \\r\\n [Limit1].[FirstName] AS [FirstName], \\r\\n [Limit1].[LastName] AS [LastName], \\r\\n [Limit1].[Address_Street] AS [Address_Street], \\r\\n [Limit1].[Address_City] AS [Address_City], \\r\\n [Limit1].[Address_State] AS [Address_State], \\r\\n [Limit1].[Address_Zip] AS [Address_Zip], \\r\\n [Limit1].[ID2] AS [ID2], \\r\\n [Limit1].[FirstName1] AS [FirstName1], \\r\\n [Limit1].[LastName1] AS [LastName1], \\r\\n [Limit1].[Address_Street1] AS [Address_Street1], \\r\\n [Limit1].[Address_City1] AS [Address_City1], \\r\\n [Limit1].[Address_State1] AS [Address_State1], \\r\\n [Limit1].[Address_Zip1] AS [Address_Zip1], \\r\\n [Limit1].[Identity] AS [Identity], \\r\\n [Limit1].[ServiceAreas] AS [ServiceAreas], \\r\\n [Limit1].[ID3] AS [ID3], \\r\\n [Limit1].[FirstName2] AS [FirstName2], \\r\\n [Limit1].[LastName2] AS [LastName2], \\r\\n [Limit1].[Address_Street2] AS [Address_Street2], \\r\\n [Limit1].[Address_City2] AS [Address_City2], \\r\\n [Limit1].[Address_State2] AS [Address_State2], \\r\\n [Limit1].[Address_Zip2] AS [Address_Zip2], \\r\\n [Limit1].[Identity1] AS [Identity1], \\r\\n [Limit1].[ServiceAreas1] AS [ServiceAreas1]\\r\\n FROM ( SELECT TOP (1) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\\r\\n WHERE [Extent1].[ID] = @p__linq__0\\r\\n ) AS [Limit1]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:06.9318154Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET ServiceTickets/Index\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.16.e8217ead_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"91199d90-bf64-11e8-a828-e5d3da7dec74\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.16.e8217ead_2.\",\r\n \"\",\r\n 16,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:07.2171424Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET ServiceTickets/GetLogEntries\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.22.e8217eb4_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"919a6651-bf64-11e8-bafb-b753ead21d61\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.22.e8217eb4_2.\",\r\n \"\",\r\n 15,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[CreatedAt] AS [CreatedAt], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[ServiceTicketID] AS [ServiceTicketID]\\r\\n FROM [dbo].[ServiceLogEntries] AS [Extent1]\\r\\n WHERE [Extent1].[ServiceTicketID] = @p__linq__0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:07.2513563Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET ServiceTickets/Index\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.23.e8217eb5_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"91b7b251-bf64-11e8-9d35-d796d17be315\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.23.e8217eb5_2.\",\r\n \"\",\r\n 16,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:07.5242164Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Employees/Index\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.26.e8217eb8_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"91e30810-bf64-11e8-8a2f-8788710137b8\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.26.e8217eb8_2.\",\r\n \"\",\r\n 15,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:07.8470919Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Employees/Details\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.35.e8217ec1_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"188b3d30ffe84073b302b4181d27b24e\",\r\n \"us-il-ch1-azr_188b3d30ffe84073b302b4181d27b24e\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"\",\r\n \"AIConnect2\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"9284c650-bf64-11e8-8f46-7dfcef1633c8\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|188b3d30ffe84073b302b4181d27b24e.35.e8217ec1_2.\",\r\n \"\",\r\n 15,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:19.7340967Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b10-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|zgq5aqEohjM=.84dd4cb0_1.\",\r\n \"\",\r\n 53,\r\n \"<250ms\",\r\n \"\",\r\n \"False\",\r\n \"409\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:19.7966095Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b11-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|zgq5aqEohjM=.84dd4cb0_2.\",\r\n \"\",\r\n 128,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=acl\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:19.9216091Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\",\\\"Blob\\\":\\\"fabrikam.txt\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b12-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|zgq5aqEohjM=.84dd4cb0_3.\",\r\n \"\",\r\n 128,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"201\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:20.0466094Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b13-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"GET fabrikamaccount\",\r\n \"|zgq5aqEohjM=.84dd4cb0_4.\",\r\n \"\",\r\n 74,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:20.1349261Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b14-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"|zgq5aqEohjM=.84dd4cb0_5.\",\r\n \"\",\r\n 47,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"204\",\r\n \"fabrikamaccount.queue.core.windows.net\",\r\n \"Azure queue\",\r\n \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:20.175203Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b15-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"POST fabrikamaccount/fabrikamfiber\",\r\n \"|zgq5aqEohjM=.84dd4cb0_6.\",\r\n \"\",\r\n 255,\r\n \"250ms-500ms\",\r\n \"\",\r\n \"True\",\r\n \"201\",\r\n \"fabrikamaccount.queue.core.windows.net\",\r\n \"Azure queue\",\r\n \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:20.425219Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b16-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"GET fabrikamaccount/fabrikamfiber\",\r\n \"|zgq5aqEohjM=.84dd4cb0_7.\",\r\n \"\",\r\n 92,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.queue.core.windows.net\",\r\n \"Azure queue\",\r\n \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:20.5189718Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"zgq5aqEohjM=\",\r\n \"|zgq5aqEohjM=.84dd4cb0_\",\r\n \"Bot\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a3286b17-bf64-11e8-9cbe-f9dfdbdbab7e\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|zgq5aqEohjM=.84dd4cb0_9.\",\r\n \"\",\r\n 58,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:38.8960495Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Customers/Details\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"us-il-ch1-azr_3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a591f100-bf64-11e8-8921-1fc98b8842dc\",\r\n 1,\r\n \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_2.\",\r\n \"\",\r\n 58,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"\",\r\n \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"SQL\",\r\n \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:38.9585471Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Customers/Details\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"us-il-ch1-azr_3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a591f101-bf64-11e8-8921-1fc98b8842dc\",\r\n 1,\r\n \"POST fabrikamaccount/Tables\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_3.\",\r\n \"\",\r\n 131,\r\n \"<250ms\",\r\n \"\",\r\n \"False\",\r\n \"409\",\r\n \"fabrikamaccount.table.core.windows.net\",\r\n \"Azure table\",\r\n \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:39.0991825Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Customers/Details\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"us-il-ch1-azr_3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a591f102-bf64-11e8-8921-1fc98b8842dc\",\r\n 1,\r\n \"POST fabrikamaccount/fabrikamfiber\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_4.\",\r\n \"\",\r\n 209,\r\n \"<250ms\",\r\n \"\",\r\n \"False\",\r\n \"409\",\r\n \"fabrikamaccount.table.core.windows.net\",\r\n \"Azure table\",\r\n \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:39.3023365Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\"}\",\r\n null,\r\n \"GET Customers/Details\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"us-il-ch1-azr_3a2dc258ce8f4d68828cd62b145d47e6\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"Chicago\",\r\n \"Illinois\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"a591f103-bf64-11e8-8921-1fc98b8842dc\",\r\n 1,\r\n \"GET fabrikamaccount/fabrikamfiber\",\r\n \"|3a2dc258ce8f4d68828cd62b145d47e6.0.84dd4cb1_5.\",\r\n \"\",\r\n 53,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.table.core.windows.net\",\r\n \"Azure table\",\r\n \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:42.9645176Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"us-tx-sn1-azr_e4a921521cf5474095355630d06ceb62\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"ab559e70-bf64-11e8-8850-a3a6e626541f\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_1.\",\r\n \"\",\r\n 55,\r\n \"<250ms\",\r\n \"\",\r\n \"False\",\r\n \"409\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:43.0270147Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"us-tx-sn1-azr_e4a921521cf5474095355630d06ceb62\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"ab559e71-bf64-11e8-8850-a3a6e626541f\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_2.\",\r\n \"\",\r\n 129,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=acl\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:43.1520225Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\",\\\"Blob\\\":\\\"fabrikam.txt\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"us-tx-sn1-azr_e4a921521cf5474095355630d06ceb62\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"ab559e72-bf64-11e8-8850-a3a6e626541f\",\r\n 1,\r\n \"PUT fabrikamaccount\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_3.\",\r\n \"\",\r\n 129,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"201\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ],\r\n [\r\n \"2018-09-23T19:12:43.2770164Z\",\r\n \"\",\r\n null,\r\n \"dependency\",\r\n \"{\\\"_MS.ProcessedByMetricExtractors\\\":\\\"(Name:'Dependencies', Ver:'1.1')\\\",\\\"Container\\\":\\\"fabrikamfiber\\\"}\",\r\n null,\r\n \"GET Home/Index\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_\",\r\n \"Application Insights Availability Monitoring\",\r\n \"e4a921521cf5474095355630d06ceb62\",\r\n \"us-tx-sn1-azr_e4a921521cf5474095355630d06ceb62\",\r\n \"\",\r\n \"\",\r\n \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\",\r\n \"PC\",\r\n \"\",\r\n \"\",\r\n \"0.0.0.0\",\r\n \"San Antonio\",\r\n \"Texas\",\r\n \"United States\",\r\n \"\",\r\n \"fabrikamfiberapp\",\r\n \"RD00155D467AF0\",\r\n \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"fabrikamprod\",\r\n \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"rddp:2.7.0-10498\",\r\n \"ab559e73-bf64-11e8-8850-a3a6e626541f\",\r\n 1,\r\n \"GET fabrikamaccount\",\r\n \"|e4a921521cf5474095355630d06ceb62.0.84dd4cb2_4.\",\r\n \"\",\r\n 54,\r\n \"<250ms\",\r\n \"\",\r\n \"True\",\r\n \"200\",\r\n \"fabrikamaccount.blob.core.windows.net\",\r\n \"Azure blob\",\r\n \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n null,\r\n null,\r\n null,\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n null,\r\n \"\",\r\n \"\",\r\n \"\",\r\n \"\"\r\n ]\r\n ]\r\n }\r\n ],\r\n \"render\": {\r\n \"visualization\": null,\r\n \"title\": null,\r\n \"accumulate\": false,\r\n \"isQuerySorted\": false,\r\n \"kind\": null\r\n },\r\n \"statistics\": {\r\n \"query\": {\r\n \"executionTime\": 22.056641,\r\n \"resourceUsage\": {\r\n \"cache\": {\r\n \"memory\": {\r\n \"hits\": 108,\r\n \"misses\": 0,\r\n \"total\": 108\r\n },\r\n \"disk\": {\r\n \"hits\": 0,\r\n \"misses\": 0,\r\n \"total\": 0\r\n }\r\n },\r\n \"cpu\": {\r\n \"user\": \"00:00:00.0312500\",\r\n \"kernel\": \"00:00:00\",\r\n \"totalCpu\": \"00:00:00.0312500\"\r\n },\r\n \"memory\": {\r\n \"peakPerNode\": 654315296\r\n }\r\n },\r\n \"inputDatasetStatistics\": {\r\n \"extents\": {\r\n \"total\": 12881,\r\n \"scanned\": 11687\r\n },\r\n \"rows\": {\r\n \"total\": 25556140785,\r\n \"scanned\": 21642130130\r\n }\r\n },\r\n \"datasetStatistics\": [\r\n {\r\n \"tableRowCount\": 25,\r\n \"tableSize\": 35414\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json index e7f49928b08a..e467a5b126d0 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithShortWait.json @@ -14,7 +14,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true,wait=1" @@ -23,7 +23,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "0e0e7402-10d4-454a-8e44-a22c7f28bfa0" + "388eb597-d32c-4e8f-a562-bafba5375d74" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,10 +37,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:32:05 GMT" + "Mon, 24 Sep 2018 21:35:19 GMT" ], "Via": [ - "1.1 draft-ai-blue.fd108546-be66-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.4760ece2-c024-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json index debfe29c6e17..555ff21cc104 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.QueryTests/GetsExceptionWithSyntaxError.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "40fef7ed-dccb-493c-b953-8dfd172c797a" + "d5ea28ee-43d7-481b-a072-fd74701163cd" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,10 +34,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:32:06 GMT" + "Mon, 24 Sep 2018 21:35:20 GMT" ], "Via": [ - "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.c8d3978f-c01b-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.availabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.availabilityResults.json new file mode 100644 index 000000000000..1779973f7c36 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.availabilityResults.json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "f3f9f08f-9e49-4462-8770-72ca178c2203" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9c3cda1e-bfa6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "16550" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"b5c2a670-c041-11e8-8625-5d063560d418\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:55.346Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1215,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/24/2018 21:34:56 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ab13d194-c041-11e8-9ca9-4fd3b61eeba3\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:30.974Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"vm reports-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm reports-fabrikamprod_emea-gb-db3-azr\",\r\n \"WebtestLocationId\": \"emea-gb-db3-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\",\r\n \"parentId\": \"df5758d583054c50a62205d30e9dfdef\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 750,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"North Europe\",\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Dublin\",\r\n \"stateOrProvince\": \"Leinster\",\r\n \"countryOrRegion\": \"Ireland\"\r\n }\r\n },\r\n {\r\n \"id\": \"a93b409f-c041-11e8-9911-d13af5e2447e\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:28.956Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 1172,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"Central US\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a42426e3-c041-11e8-ba6b-a7158b082255\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:28.06Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"vm reports-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_vm reports-fabrikamprod_us-ca-sjc-azr\",\r\n \"WebtestLocationId\": \"us-ca-sjc-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"6c097756c8f34d8496605c62cf55abe9\",\r\n \"parentId\": \"6c097756c8f34d8496605c62cf55abe9\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"VM Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 398,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"West US\",\r\n \"id\": \"6c097756c8f34d8496605c62cf55abe9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9fd0f968-c041-11e8-8b28-8d52918f78f5\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:25.063Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 2522,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:34:25 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:34:26 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:34:26 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/24/2018 21:34:27 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"95802304-c041-11e8-811a-1149af8f9881\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:00.739Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_us-il-ch1-azr\",\r\n \"WebtestLocationId\": \"us-il-ch1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"2a13bbca4e6c44e8af4dae6f624a42c2\",\r\n \"parentId\": \"2a13bbca4e6c44e8af4dae6f624a42c2\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/24/2018 21:34:00 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"North Central US\",\r\n \"id\": \"2a13bbca4e6c44e8af4dae6f624a42c2\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"948a511f-c041-11e8-9bbb-b5840cf1beb9\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:33:56.625Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_apac-sg-sin-azr\",\r\n \"WebtestLocationId\": \"apac-sg-sin-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"e74d3ca7f2f34485b73042d359e1a26e\",\r\n \"parentId\": \"e74d3ca7f2f34485b73042d359e1a26e\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/24/2018 21:33:56 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"Southeast Asia\",\r\n \"id\": \"e74d3ca7f2f34485b73042d359e1a26e\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f9a2050-c041-11e8-b217-d7eb2f26aee2\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:33:52.737Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"dashtest nrt alert-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_dashtest nrt alert-fabrikamprod_emea-ch-zrh-edge\",\r\n \"WebtestLocationId\": \"emea-ch-zrh-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"bdc850c1720440568017217d8e2f01cb\",\r\n \"parentId\": \"bdc850c1720440568017217d8e2f01cb\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"DashTest NRT alert\",\r\n \"success\": \"0\",\r\n \"duration\": 0,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Exception (subtype 'WebException') occured at 09/24/2018 21:33:52 (UTC) for Uri 'http://fabrikamprod.azurewebsites.net', step #1 with the error 'The remote name could not be resolved: 'fabrikamprod.azurewebsites.net'', exception text 'Microsoft.VisualStudio.TestTools.WebTesting.ConnectionFailedWebTestException: The following error occurred which may indicate you need to configure a proxy server in your Web test: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' ---> System.Net.WebException: The remote name could not be resolved: 'fabrikamprod.azurewebsites.net' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result) --- End of inner exception stack trace ---', stack trace ' at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at Microsoft.VisualStudio.TestTools.WebStress.WebTestTransaction.ResponseReceived(IAsyncResult result)'.\",\r\n \"location\": \"France South\",\r\n \"id\": \"bdc850c1720440568017217d8e2f01cb\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Marseille\",\r\n \"stateOrProvince\": \"Bouches-du-Rhône\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"8d9f3a8d-c041-11e8-bdc9-f7e9bab57bbe\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:33:51.973Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-va-ash-azr\",\r\n \"WebtestLocationId\": \"us-va-ash-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"5bb20927da734f9a8424cce89d65daf7\",\r\n \"parentId\": \"5bb20927da734f9a8424cce89d65daf7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 595,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/24/2018 21:33:52 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"East US\",\r\n \"id\": \"5bb20927da734f9a8424cce89d65daf7\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8a82b88b-c041-11e8-ba20-79c770db6c0e\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:33:44.048Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\",\r\n \"WebtestArmResourceName\": \"app service home page-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service home page-fabrikamprod_emea-se-sto-edge\",\r\n \"WebtestLocationId\": \"emea-se-sto-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"8ed399bb67294bc9a82c168532efa7bf\",\r\n \"parentId\": \"8ed399bb67294bc9a82c168532efa7bf\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Home Page\",\r\n \"success\": \"1\",\r\n \"duration\": 1689,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"Passed\",\r\n \"location\": \"UK West\",\r\n \"id\": \"8ed399bb67294bc9a82c168532efa7bf\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Cardiff\",\r\n \"stateOrProvince\": \"Cardiff\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/b5c2a670-c041-11e8-8625-5d063560d418?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvYjVjMmE2NzAtYzA0MS0xMWU4LTg2MjUtNWQwNjM1NjBkNDE4P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "42f0e83a-f2f7-4760-979d-30b188b9bce5" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.8cd1d6bb-c00d-11e8-b19c-70b3d5800001" + ], + "Age": [ + "7" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1655" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"b5c2a670-c041-11e8-8625-5d063560d418\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:55.346Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1215,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/24/2018 21:34:56 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.browserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.browserTimings.json new file mode 100644 index 000000000000..abaf9609f0a4 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.browserTimings.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "a5f7755c-0850-48ab-87bc-1506489588d2" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:15 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.13fffd40-c020-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "7070" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"5fa31661-bff0-11e8-893a-df98f5a20bc6\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:55.008Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"h/viM\",\r\n \"parentId\": \"h/viM\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 806,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 141,\r\n \"receiveDuration\": 15,\r\n \"processingDuration\": 643\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"5e9528de-bff0-11e8-96dd-1b10334fed87\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:53.219Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"8kMaM\",\r\n \"parentId\": \"8kMaM\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 786,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 2,\r\n \"sendDuration\": 112,\r\n \"receiveDuration\": 4,\r\n \"processingDuration\": 666\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"55e1fc96-bff0-11e8-8d6e-abafe26a7291\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:38.444Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd\",\r\n \"id\": \"6fAn3\",\r\n \"parentId\": \"6fAn3\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd\",\r\n \"totalDuration\": 2018,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 160,\r\n \"sendDuration\": 424,\r\n \"receiveDuration\": 119,\r\n \"processingDuration\": 1315\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"46c19a11-bfbc-11e8-923c-732823f7090e\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:39:55.93Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"I6vaw\",\r\n \"parentId\": \"I6vaw\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"R+gCW\"\r\n },\r\n \"user\": {\r\n \"id\": \"dnVdS\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 7385,\r\n \"performanceBucket\": \"7sec-15sec\",\r\n \"networkDuration\": 210,\r\n \"sendDuration\": 1946,\r\n \"receiveDuration\": 6,\r\n \"processingDuration\": 5223\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"27ca3400-bfbc-11e8-942c-6740fd3333ef\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:39:05.204Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"KvlRW\",\r\n \"parentId\": \"KvlRW\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TD84H\"\r\n },\r\n \"user\": {\r\n \"id\": \"KnexQ\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"https://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1572,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 97,\r\n \"sendDuration\": 13,\r\n \"receiveDuration\": 62,\r\n \"processingDuration\": 1393\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"6dd28141-bfb8-11e8-a86d-51e58f3d5949\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T05:12:23.717Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"93Dio\",\r\n \"parentId\": \"93Dio\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"TD84H\"\r\n },\r\n \"user\": {\r\n \"id\": \"KnexQ\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"https://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 6043,\r\n \"performanceBucket\": \"3sec-7sec\",\r\n \"networkDuration\": 875,\r\n \"sendDuration\": 947,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 4216\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/607189f1-bff0-11e8-b5a7-b76344f18d93?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzLzYwNzE4OWYxLWJmZjAtMTFlOC1iNWE3LWI3NjM0NGYxOGQ5Mz90aW1lc3Bhbj1QMUQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "bc8b19af-1d7e-4191-ab23-0f47b93ddb98" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:16 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1142" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customEvents.json new file mode 100644 index 000000000000..1900eb4d8c52 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customEvents.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "1a9ede31-2539-4c00-bfe3-c74a1657d57b" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:14 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8512" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff222d81-c040-11e8-854e-55d4913e5a6f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"dJxRx\",\r\n \"parentId\": \"dJxRx\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"DMoO7\"\r\n },\r\n \"user\": {\r\n \"id\": \"alI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1de7b0-c040-11e8-a2d6-01e896f3eb0a\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"iCGDJ\",\r\n \"parentId\": \"iCGDJ\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ERhlX\"\r\n },\r\n \"user\": {\r\n \"id\": \"aqA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1e5ce1-c040-11e8-9c4d-a935b3ecedcc\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"GDDa7\",\r\n \"parentId\": \"GDDa7\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"7j5Zb\"\r\n },\r\n \"user\": {\r\n \"id\": \"f0I00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2031a0-c040-11e8-bdb2-0d36b291dc7b\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"52Xf8\",\r\n \"parentId\": \"52Xf8\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"uTtFY\"\r\n },\r\n \"user\": {\r\n \"id\": \"fSD00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2ded40-c040-11e8-9b17-3fceaf5159b4\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"Pq0wh\",\r\n \"parentId\": \"Pq0wh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"PxoCq\"\r\n },\r\n \"user\": {\r\n \"id\": \"fSH00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff29f5a1-c040-11e8-a863-939e38d7e004\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"bljl/\",\r\n \"parentId\": \"bljl/\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"KkPh/\"\r\n },\r\n \"user\": {\r\n \"id\": \"e4C00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff58f4f0-c040-11e8-a3c2-c171a2bcc086\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BQBVh\",\r\n \"parentId\": \"BQBVh\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"ZK3wY\"\r\n },\r\n \"user\": {\r\n \"id\": \"giE00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff1ef920-c040-11e8-8531-dfd6349b29fa\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"Otw6s\",\r\n \"parentId\": \"Otw6s\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"UTsw7\"\r\n },\r\n \"user\": {\r\n \"id\": \"dbB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff240230-c040-11e8-a9ea-eff0115676ed\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": \"\",\r\n \"customMeasurements\": \"\",\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FVe94\",\r\n \"parentId\": \"FVe94\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3u5Vs\"\r\n },\r\n \"user\": {\r\n \"id\": \"dZK00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Save Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/302839f1-c041-11e8-a137-b787b1506f19?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy8zMDI4MzlmMS1jMDQxLTExZTgtYTEzNy1iNzg3YjE1MDZmMTk/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "9537930b-01ab-443d-8046-c11cf1caa080" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:14 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c0854760-bff6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1488" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customMetrics.json new file mode 100644 index 000000000000..52dd5493a811 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.customMetrics.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "ceb84035-7aa4-4794-b214-68d59ed32be8" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:19 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.92e0529c-c03e-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "11163" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"98d44c14-c040-11e8-b194-bfc9586370da\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:27:08.9Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"c1e3b076-c03e-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:14:00.291Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8056aef4-c03e-11e8-932e-cd5dae094438\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:12:08.895Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a95f3586-c03c-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:59:00.227Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"67f413eb-c03c-11e8-b194-bfc9586370da\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:57:08.888Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"97ca8bf6-c03a-11e8-9269-538aa81dd28e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:44:00.183Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f6f4adb-c03a-11e8-8936-8bc26a313bde\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:42:08.87Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"7f3fa866-c038-11e8-b8ac-91f7dd2bcfca\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:29:00.124Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"36f1388b-c038-11e8-8936-8bc26a313bde\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T20:27:08.85Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.2117.0\",\r\n \"processSessionId\": \"518c0543-6757-4516-b61c-0ce7e4bc1342\",\r\n \"osType\": \"Win32NT\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/db15a976-c040-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvZGIxNWE5NzYtYzA0MC0xMWU4LWJiYzMtMDExMDQxYmJlNzg1P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "7a2a1779-1835-492d-b03c-43420a3963b0" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:19 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c0854760-bff6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1370" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.dependencies.json new file mode 100644 index 000000000000..d78a2cee5bbf --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.dependencies.json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "2376e269-f919-490a-ab07-da2385c39204" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:17 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.89f6aa26-bfc0-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "16859" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b8-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.702Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 70,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b7-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.64Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"success\": \"True\",\r\n \"duration\": 60,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_7.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b6-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.499Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"success\": \"True\",\r\n \"duration\": 145,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_6.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b5-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.437Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"success\": \"True\",\r\n \"duration\": 58,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"204\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b4-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.374Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"success\": \"True\",\r\n \"duration\": 61,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"GET fabrikamaccount\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b3-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.234Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\",\r\n \"Blob\": \"fabrikam.txt\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"success\": \"True\",\r\n \"duration\": 144,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b2-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.077Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=acl\",\r\n \"success\": \"True\",\r\n \"duration\": 144,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ada132b1-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.015Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container\",\r\n \"success\": \"False\",\r\n \"duration\": 59,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_1.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2bfbd2-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:27.233Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.38.be60d18_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.38.be60d18_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9da42e32-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:26.987Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.32.be60d12_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 16,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.32.be60d12_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/ada132b8-c041-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9hZGExMzJiOC1jMDQxLTExZTgtYmJjMy0wMTEwNDFiYmU3ODU/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "8ee6b6d3-3c4c-4654-9b90-b843863ac72e" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:17 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.23308d31-c024-11e8-b19c-70b3d5800001" + ], + "Age": [ + "7" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "3528" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b8-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.702Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 70,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.exceptions.json new file mode 100644 index 000000000000..40ddcc7b8a9c --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.exceptions.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "79e5fe20-cd23-4d67-b49f-36a637acf8de" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:17 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.b61bf8d6-bf2d-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "84969" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"bed16001-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:35:23.923Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"63858094\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"0217ac095c3c44c28cce3c8801603bd8\",\r\n \"parentId\": \"|0217ac095c3c44c28cce3c8801603bd8.19.be60d3a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"0217ac095c3c44c28cce3c8801603bd8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_0217ac095c3c44c28cce3c8801603bd8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b3cf88d2-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:35:05.123Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"27475536\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"27475536\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"58593045\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"58593045\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"21476718\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"1dbc5da346234836915ea4a65a52156f\",\r\n \"parentId\": \"|1dbc5da346234836915ea4a65a52156f.6.be60d23_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"1dbc5da346234836915ea4a65a52156f\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_1dbc5da346234836915ea4a65a52156f\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b2172a70-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:56.289Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"20298834\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"|97a05290a2f54f8ea14727d69845b680.0.84dd66e8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_97a05290a2f54f8ea14727d69845b680\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9dff4684-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:27.661Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"45199008\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"parentId\": \"|4957eb27cc2b4ea187cd1f83339e2020.0.84dd66e6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ddfb091-c041-11e8-bd5f-9f112225a55a\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:27.157Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\Employees\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_Employees_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_hvu2l3is, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"40173061\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.35.be60d15_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cbf4c75-c041-11e8-bd5f-9f112225a55a\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:26.285Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"64829123\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.19.be60d05_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c520bb1-c041-11e8-b531-f12218fc06e4\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:25.798Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"50514492\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.12.be60cfe_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9bc55c11-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:25.289Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"32629526\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.5.be60cf7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8db35eb4-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:33:52.593Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"36736499\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"5bb20927da734f9a8424cce89d65daf7\",\r\n \"parentId\": \"|5bb20927da734f9a8424cce89d65daf7.0.84dd66e3_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5bb20927da734f9a8424cce89d65daf7\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_5bb20927da734f9a8424cce89d65daf7\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Boydton\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af433-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:33:34.498Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.Data.SqlClient.SqlException at FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"message\": \"\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"outerType\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"outerMethod\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"outerAssembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"innermostType\": \"System.Data.SqlClient.SqlException\",\r\n \"innermostMessage\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\ServiceLogEntryRepository.cs\",\r\n \"method\": \"FabrikamFiber.DAL.Data.ServiceLogEntryRepository.Save\",\r\n \"level\": 1,\r\n \"line\": 72,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.Web\\\\Controllers\\\\ServiceTicketsController.cs\",\r\n \"method\": \"FabrikamFiber.Web.Controllers.ServiceTicketsController.Create\",\r\n \"level\": 2,\r\n \"line\": 130,\r\n \"assembly\": \"FabrikamFiber.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"lambda_method\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c.b__9_0\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`2.CallEndDelegate\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters.b__11_0\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+AsyncInvocationWithFilters+<>c__DisplayClass11_1.b__2\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Infrastructure.DbUpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"50475232\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Internal.InternalContext.SaveChanges\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"50475232\",\r\n \"message\": \"An error occurred while updating the entries. See the inner exception for details.\",\r\n \"type\": \"System.Data.Entity.Core.UpdateException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"58515964\"\r\n },\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlConnection.OnError\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.TdsParser.TryRun\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.TryConsumeMetaData\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlDataReader.get_MetaData\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.FinishExecuteReader\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReaderTds\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.RunExecuteReader\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.SqlClient.SqlCommand.ExecuteReader\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n }\r\n ],\r\n \"outerId\": \"58515964\",\r\n \"message\": \"The INSERT statement conflicted with the CHECK constraint \\\"chk_read_only_1\\\". The conflict occurred in database \\\"FabrikamlSQL\\\", table \\\"dbo.ServiceTickets\\\".\\r\\nThe statement has been terminated.\",\r\n \"type\": \"System.Data.SqlClient.SqlException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"47075641\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"POST ServiceTickets/Create\",\r\n \"id\": \"61e83906251647f5a367a854f0986ee5\",\r\n \"parentId\": \"|61e83906251647f5a367a854f0986ee5.6.be60cef_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"61e83906251647f5a367a854f0986ee5\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_61e83906251647f5a367a854f0986ee5\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/bed16001-c041-11e8-932e-cd5dae094438?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvYmVkMTYwMDEtYzA0MS0xMWU4LTkzMmUtY2Q1ZGFlMDk0NDM4P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "1cb9828b-382d-4774-be77-4d2b8a0722f2" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.89f6aa26-bfc0-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "6070" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"bed16001-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:35:23.923Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"63858094\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"0217ac095c3c44c28cce3c8801603bd8\",\r\n \"parentId\": \"|0217ac095c3c44c28cce3c8801603bd8.19.be60d3a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"0217ac095c3c44c28cce3c8801603bd8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_0217ac095c3c44c28cce3c8801603bd8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.pageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.pageViews.json new file mode 100644 index 000000000000..3620f76661b9 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.pageViews.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "7014c032-b1a9-4475-999e-d294af723e67" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:15 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.790b8ed6-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8232" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff2f9af0-c040-11e8-9ee6-5320f818f397\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uQCft\",\r\n \"parentId\": \"uQCft\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"HbgDk\"\r\n },\r\n \"user\": {\r\n \"id\": \"ewJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff293250-c040-11e8-a3d2-2794445376db\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"gJT/K\",\r\n \"parentId\": \"gJT/K\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qmbeY\"\r\n },\r\n \"user\": {\r\n \"id\": \"e6E00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff298070-c040-11e8-b298-15f14a58a11c\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"lhii5\",\r\n \"parentId\": \"lhii5\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"AuTwP\"\r\n },\r\n \"user\": {\r\n \"id\": \"d6E00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2a43c1-c040-11e8-9939-fd204ba19491\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uINwQ\",\r\n \"parentId\": \"uINwQ\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"o6joy\"\r\n },\r\n \"user\": {\r\n \"id\": \"glA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff2e1450-c040-11e8-9c39-6b3b19546ce7\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CiVVV\",\r\n \"parentId\": \"CiVVV\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"isO95\"\r\n },\r\n \"user\": {\r\n \"id\": \"fjB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff20f4f1-c040-11e8-bc9b-af0f5f1e51dd\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"1QLLp\",\r\n \"parentId\": \"1QLLp\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"k9jvG\"\r\n },\r\n \"user\": {\r\n \"id\": \"ePI00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.1\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff23b410-c040-11e8-ab88-8d9bdba00fed\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"X6X7P\",\r\n \"parentId\": \"X6X7P\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"2kQi0\"\r\n },\r\n \"user\": {\r\n \"id\": \"eVB00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff37d850-c040-11e8-a051-dfca667ac862\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"DTHqF\",\r\n \"parentId\": \"DTHqF\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"zJXqV\"\r\n },\r\n \"user\": {\r\n \"id\": \"fWA00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff219130-c040-11e8-9a0f-ef0951e91762\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5Bk66\",\r\n \"parentId\": \"5Bk66\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"sxXwC\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9G00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"ff22c9b0-c040-11e8-a5fc-4169f980067c\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"OuKqs\",\r\n \"parentId\": \"OuKqs\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"qSZKX\"\r\n },\r\n \"user\": {\r\n \"id\": \"fiJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/ff2f9af0-c040-11e8-9ee6-5320f818f397?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy9mZjJmOWFmMC1jMDQwLTExZTgtOWVlNi01MzIwZjgxOGYzOTc/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "964e661e-fe39-4efc-8d3a-aa536f479f02" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:15 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "918" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff2f9af0-c040-11e8-9ee6-5320f818f397\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uQCft\",\r\n \"parentId\": \"uQCft\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"HbgDk\"\r\n },\r\n \"user\": {\r\n \"id\": \"ewJ00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.performanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.performanceCounters.json new file mode 100644 index 000000000000..446d738f61bb --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.performanceCounters.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "1520c1f9-3a79-4495-bbf3-b66b99f9b714" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.89f6aa26-bfc0-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "8611" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"8f5af43d-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 10686.796875,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af43a-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af43b-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 102,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af438-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.55105459690094,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af435-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 2523619328,\r\n \"name\": \"Available Bytes\",\r\n \"category\": \"Memory\",\r\n \"counter\": \"Available Bytes\",\r\n \"instance\": \"\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af43c-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 243486720,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af439-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af437-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.55259394645691,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af436-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 7.52320289611816,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Processor\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"_Total\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8f5af43e-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/8f5af43d-c041-11e8-932e-cd5dae094438?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvOGY1YWY0M2QtYzA0MS0xMWU4LTkzMmUtY2Q1ZGFlMDk0NDM4P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "1c5d2e99-3a19-4f75-a899-8a88ba24356a" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:18 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.1debaf6b-bfde-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "975" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"8f5af43d-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 10686.796875,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instance\": \"w3wp\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.requests.json new file mode 100644 index 000000000000..675a668a3c44 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.requests.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "b9cd9ce1-e76a-4f9d-82d6-b986280bbba0" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:16 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c0854760-bff6-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "12831" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b9-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:29.015Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 788.778,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9f669eb0-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:28.32Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"6c097756c8f34d8496605c62cf55abe9\",\r\n \"parentId\": \"|6c097756c8f34d8496605c62cf55abe9.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6c097756c8f34d8496605c62cf55abe9\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_6c097756c8f34d8496605c62cf55abe9\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 3.941,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|6c097756c8f34d8496605c62cf55abe9.0.be60d1b_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e7a9100-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.327Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.39\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.6969,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.39.be60d19_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2bfbd3-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.232Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 18.8793,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.38.be60d18_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e29b1e9-c041-11e8-a202-bb78ca9a3410\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.207Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.37\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.58,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.37.be60d17_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9df75740-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.182Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.36\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 1.0127,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.36.be60d16_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ddfb090-c041-11e8-bdc7-23826b528d11\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.111Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.34\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.5747,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.34.be60d14_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9dc54ac0-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:27.087Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.33\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.7702,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.33.be60d13_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9da42e33-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:26.985Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.32\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 19.3206,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.32.be60d12_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d936550-c041-11e8-ad52-cdd1590dd6c7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:26.937Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.30\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"success\": \"True\",\r\n \"duration\": 0.6875,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|d122f660a66746cf97a6c0fd8e1c9444.30.be60d10_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests/ada132b9-c041-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2FkYTEzMmI5LWMwNDEtMTFlOC1iYmMzLTAxMTA0MWJiZTc4NT90aW1lc3Bhbj1QMUQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "8e985b7c-3489-4a22-aaca-b3339e250178" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:16 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.4760ece2-c024-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1375" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b9-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:29.015Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 788.778,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.traces.json new file mode 100644 index 000000000000..294257eba2bc --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByType.traces.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=10", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "5a97cee6-2fd2-4ce2-88a2-ac4eb93306c7" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:13 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.4760ece2-c024-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "10116" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132ba-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:55.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"|97a05290a2f54f8ea14727d69845b680.0.84dd66e8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_97a05290a2f54f8ea14727d69845b680\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9f669eb1-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:31.402Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Reports\",\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\",\r\n \"parentId\": \"|df5758d583054c50a62205d30e9dfdef.0.be60d1c_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"df5758d583054c50a62205d30e9dfdef\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-gb-db3-azr_df5758d583054c50a62205d30e9dfdef\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Dublin\",\r\n \"stateOrProvince\": \"Leinster\",\r\n \"countryOrRegion\": \"Ireland\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e7a9101-c041-11e8-b194-bfc9586370da\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.352Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.40.be60d1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2bfbd4-c041-11e8-83bc-adc0fc6e03ef\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.327Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.39.be60d19_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d10c7e2-c041-11e8-9269-538aa81dd28e\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.255Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"parentId\": \"|4957eb27cc2b4ea187cd1f83339e2020.0.84dd66e6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4957eb27cc2b4ea187cd1f83339e2020\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_4957eb27cc2b4ea187cd1f83339e2020\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e2c22e0-c041-11e8-a202-bb78ca9a3410\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.232Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.38.be60d18_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9df9c840-c041-11e8-8936-8bc26a313bde\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.207Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.37.be60d17_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ddfb091-c041-11e8-bdc7-23826b528d11\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.137Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Details/1\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.35.be60d15_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9dc54ac1-c041-11e8-932e-cd5dae094438\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.111Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-light-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.34.be60d14_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9da42e34-c041-11e8-8879-791d6045d4d5\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:27.087Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.33.be60d13_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces/ada132ba-c041-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9hZGExMzJiYS1jMDQxLTExZTgtYmJjMy0wMTEwNDFiYmU3ODU/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "0928fea2-b4b5-4863-bd1d-bd65825943c0" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:13 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.1debaf6b-bfde-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132ba-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:55.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"|97a05290a2f54f8ea14727d69845b680.0.84dd66e8_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_97a05290a2f54f8ea14727d69845b680\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.availabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.availabilityResults.json new file mode 100644 index 000000000000..9aea6523de9c --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.availabilityResults.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "e8eacad1-8750-4849-9a3a-9f5a06f69979" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:11 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c31b8ea8-c036-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1635" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"b5c2a670-c041-11e8-8625-5d063560d418\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:55.346Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1215,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/24/2018 21:34:56 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/b5c2a670-c041-11e8-8625-5d063560d418?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvYjVjMmE2NzAtYzA0MS0xMWU4LTg2MjUtNWQwNjM1NjBkNDE4P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "ef5ba87b-2113-4148-aaa3-dea92a5eeab0" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:11 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.3109e61a-bf93-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1655" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"b5c2a670-c041-11e8-8625-5d063560d418\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-24T21:34:55.346Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"app service customer details-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_app service customer details-fabrikamprod_us-fl-mia-edge\",\r\n \"WebtestLocationId\": \"us-fl-mia-edge\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"parentId\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"App Service Customer Details\",\r\n \"success\": \"0\",\r\n \"duration\": 1215,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 09/24/2018 21:34:56 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"Central US\",\r\n \"id\": \"97a05290a2f54f8ea14727d69845b680\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.browserTimings.json similarity index 64% rename from src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json rename to src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.browserTimings.json index e2ad171ba782..d60a7051b57a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.BrowserTimings.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.browserTimings.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "12fee4f0-0e1e-48d6-83f7-e896b9a6501c" + "bce7883e-4dca-438b-bf14-07df6c03d346" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:21 GMT" + "Mon, 24 Sep 2018 21:36:08 GMT" ], "Via": [ - "1.1 draft-ai-blue.66c7f40e-be3e-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.43ad40fc-bfdf-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -56,18 +56,18 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1109" + "1127" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/d785da71-be68-11e8-b519-694305c1af56?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzL2Q3ODVkYTcxLWJlNjgtMTFlOC1iNTE5LTY5NDMwNWMxYWY1Nj90aW1lc3Bhbj1QMUQ=", + "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/607189f1-bff0-11e8-b5a7-b76344f18d93?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzLzYwNzE4OWYxLWJmZjAtMTFlOC1iNWE3LWI3NjM0NGYxOGQ5Mz90aW1lc3Bhbj1QMUQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,7 +76,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -85,7 +85,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "1c858eb6-1d09-4a36-b397-436701041c44" + "2a5a8293-9774-4d6d-b0c1-1fbd3b1a8402" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:22 GMT" + "Mon, 24 Sep 2018 21:36:08 GMT" ], "Via": [ - "1.1 draft-ai-blue.fd108546-be66-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.3109e61a-bf93-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -121,13 +121,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1124" + "1142" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"d785da71-be68-11e8-b519-694305c1af56\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-22T13:10:13.346Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"2BowX\",\r\n \"parentId\": \"2BowX\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"jo8hI\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 649,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 19,\r\n \"sendDuration\": 130,\r\n \"receiveDuration\": 18,\r\n \"processingDuration\": 475\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Liverpool\",\r\n \"stateOrProvince\": \"Liverpool\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"607189f1-bff0-11e8-b5a7-b76344f18d93\",\r\n \"count\": 1,\r\n \"type\": \"browserTiming\",\r\n \"timestamp\": \"2018-09-24T11:52:56.468Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"MA7cD\",\r\n \"parentId\": \"MA7cD\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"Zfxvk\"\r\n },\r\n \"user\": {\r\n \"id\": \"/oZ02\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.20\"\r\n },\r\n \"browserTiming\": {\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 585,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"networkDuration\": 5,\r\n \"sendDuration\": 167,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 403\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Chrome 69.0\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"City of Westminster\",\r\n \"stateOrProvince\": \"City of Westminster\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customEvents.json new file mode 100644 index 000000000000..c36b8f8e788f --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customEvents.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "60ab954b-bae8-4eb0-ad83-5729bb5bc0cb" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:06 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.43ad40fc-bfdf-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1475" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/302839f1-c041-11e8-a137-b787b1506f19?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy8zMDI4MzlmMS1jMDQxLTExZTgtYTEzNy1iNzg3YjE1MDZmMTk/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "32ea3058-a380-4170-a07d-0f841e0f6f0a" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:07 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.1ba68d48-bfd1-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1488" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"302839f1-c041-11e8-a137-b787b1506f19\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-24T21:30:54.552Z\",\r\n \"customDimensions\": {\r\n \"ProcessId\": \"2496\",\r\n \"SnapshotCollectorConfiguration\": \"{\\\"FailedRequestLimit\\\":3,\\\"IsEnabled\\\":true,\\\"IsEnabledWhenProfiling\\\":true,\\\"IsLowPrioritySnapshotUploader\\\":true,\\\"MaximumCollectionPlanSize\\\":50,\\\"MaximumSnapshotsRequired\\\":3,\\\"ProblemCounterResetInterval\\\":\\\"P1D\\\",\\\"ProvideAnonymousTelemetry\\\":true,\\\"ReconnectInterval\\\":\\\"PT15M\\\",\\\"SnapshotInLowPriorityThread\\\":true,\\\"SnapshotsPerDayLimit\\\":30,\\\"SnapshotsPerTenMinutesLimit\\\":1,\\\"ThresholdForSnapshotting\\\":1}\",\r\n \"HeartbeatInterval\": \"00:30:00\",\r\n \"EventName\": \"Heartbeat\"\r\n },\r\n \"customMeasurements\": {\r\n \"FirstChanceExceptions\": 846,\r\n \"TrackExceptionCalls\": 42\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"\",\r\n \"parentId\": \"\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"14f18d71-fdf0-4ad4-a5ea-789d943a13c6\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sc:1.3.0.0\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"AppInsightsSnapshotCollectorLogs\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customMetrics.json similarity index 87% rename from src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json rename to src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customMetrics.json index 3a3edd5f37ec..3d8dd318d503 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomMetrics.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.customMetrics.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "c34dc0ac-75a9-4ccb-99a8-dd25b98961bb" + "df3e912c-4ae4-4192-a28e-089bcc58c4c0" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:25 GMT" + "Mon, 24 Sep 2018 21:36:12 GMT" ], "Via": [ - "1.1 draft-ai-blue.c61d55aa-be37-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.9c3cda1e-bfa6-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -62,12 +62,12 @@ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvY2RlMGJlOWQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBlP3RpbWVzcGFuPVAxRA==", + "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/db15a976-c040-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvZGIxNWE5NzYtYzA0MC0xMWU4LWJiYzMtMDExMDQxYmJlNzg1P3RpbWVzcGFuPVAxRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,7 +76,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -85,7 +85,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "084ae2d6-5629-4120-8099-d23e91cef8e6" + "c240048d-29e1-458c-809c-acc7cdffa024" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:25 GMT" + "Mon, 24 Sep 2018 21:36:13 GMT" ], "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.b61bf8d6-bf2d-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -127,7 +127,7 @@ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be9d-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-23T03:28:51.132Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"db15a976-c040-11e8-bbc3-011041bbe785\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-09-24T21:29:00.336Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"processSessionId\": \"b80407c6-d825-49d6-b0dc-590e4b92d07b\",\r\n \"appSrv_wsStamp\": \"waws-prod-bay-073\",\r\n \"baseSdkTargetFramework\": \"net46\",\r\n \"runtimeFramework\": \"4.7.3130.0\",\r\n \"osType\": \"Win32NT\",\r\n \"appSrv_wsOwner\": \"72993b69-db12-44fc-9a66-9c2005c30513+Fabrikam-WestUSwebspace\",\r\n \"appSrv_SiteName\": \"FabrikamFiberApp\",\r\n \"appSrv_wsHost\": \"fabrikamfiberapp.azurewebsites.net\"\r\n },\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"hbnet:2.7.0-13435\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.dependencies.json new file mode 100644 index 000000000000..6d84ae26968c --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.dependencies.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "6c1e1207-eddb-42c3-b0db-d831918eef31" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:10 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "3515" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b8-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.702Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 70,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/ada132b8-c041-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9hZGExMzJiOC1jMDQxLTExZTgtYmJjMy0wMTEwNDFiYmU3ODU/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "2bf417a4-722f-460e-bc23-c4e6a1e6c44b" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:10 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.23308d31-c024-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "3528" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b8-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-24T21:34:29.702Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 70,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.exceptions.json new file mode 100644 index 000000000000..1eb5780463ce --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.exceptions.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "0cf83b2e-c341-4f9e-ba27-4b161b55e8e7" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:10 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.cd1d8a63-c028-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "6057" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c520bb1-c041-11e8-b531-f12218fc06e4\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:25.798Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"50514492\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.12.be60cfe_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/9c520bb1-c041-11e8-b531-f12218fc06e4?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvOWM1MjBiYjEtYzA0MS0xMWU4LWI1MzEtZjEyMjE4ZmMwNmU0P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "6438d1fb-acbb-4000-ade2-a398ad5f3588" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:10 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c8d3978f-c01b-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "6068" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c520bb1-c041-11e8-b531-f12218fc06e4\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-24T21:34:25.798Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.NullReferenceException at ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"message\": \"\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"outerType\": \"System.NullReferenceException\",\r\n \"outerMethod\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"outerAssembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"outerMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostType\": \"System.NullReferenceException\",\r\n \"innermostMessage\": \"Object reference not set to an instance of an object.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"fileName\": \"c:\\\\inetpub\\\\wwwroot\\\\FabrikamProd\\\\Views\\\\ServiceTickets\\\\Details.cshtml\",\r\n \"method\": \"ASP._Page_Views_ServiceTickets_Details_cshtml.Execute\",\r\n \"level\": 0,\r\n \"line\": 13,\r\n \"assembly\": \"App_Web_jz3u2j3t, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 3,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 4,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Object reference not set to an instance of an object.\",\r\n \"type\": \"System.NullReferenceException\",\r\n \"severityLevel\": \"Critical\",\r\n \"id\": \"50514492\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET ServiceTickets/Details\",\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"parentId\": \"|d122f660a66746cf97a6c0fd8e1c9444.12.be60cfe_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d122f660a66746cf97a6c0fd8e1c9444\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d122f660a66746cf97a6c0fd8e1c9444\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.pageViews.json similarity index 69% rename from src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json rename to src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.pageViews.json index 446660bf9f36..7e8152484783 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PageViews.json +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.pageViews.json @@ -11,7 +11,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -20,7 +20,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "698bcd38-0dec-4c55-96f7-8980f4685ac2" + "e4da9c10-00eb-43cd-a03f-e9221fbf076b" ] }, "ResponseHeaders": { @@ -28,10 +28,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:21 GMT" + "Mon, 24 Sep 2018 21:36:07 GMT" ], "Via": [ - "1.1 draft-ai-blue.7d1dc807-be68-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.23308d31-c024-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -56,18 +56,18 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "934" + "911" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"8e7fba40-bedf-11e8-a21a-b51b58ae909a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:20:00.056Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"VJYXP\",\r\n \"parentId\": \"VJYXP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3fhdj\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9N00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff225480-c040-11e8-93f9-efeb6277a940\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FOXQW\",\r\n \"parentId\": \"FOXQW\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"7Nu5Y\"\r\n },\r\n \"user\": {\r\n \"id\": \"gqC00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/8e7fba40-bedf-11e8-a21a-b51b58ae909a?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy84ZTdmYmE0MC1iZWRmLTExZTgtYTIxYS1iNTFiNThhZTkwOWE/dGltZXNwYW49UDFE", + "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/ff225480-c040-11e8-93f9-efeb6277a940?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy9mZjIyNTQ4MC1jMDQwLTExZTgtOTNmOS1lZmViNjI3N2E5NDA/dGltZXNwYW49UDFE", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,7 +76,7 @@ ], "User-Agent": [ "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" ], "prefer": [ "response-v1=true" @@ -85,7 +85,7 @@ "csharpsdk" ], "x-ms-client-request-id": [ - "7e9461ee-ad19-4202-91ba-a908c580bf49" + "ef04a089-0f5f-4a56-a33e-334cb582fcc1" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "keep-alive" ], "Date": [ - "Sun, 23 Sep 2018 03:30:21 GMT" + "Mon, 24 Sep 2018 21:36:07 GMT" ], "Via": [ - "1.1 draft-ai-blue.b1cec974-be8f-11e8-b19c-70b3d5800001" + "1.1 draft-ai-blue.43ad40fc-bfdf-11e8-b19c-70b3d5800001" ], "Server": [ "nginx" @@ -121,13 +121,13 @@ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "944" + "921" ], "Content-Type": [ "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"8e7fba40-bedf-11e8-a21a-b51b58ae909a\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-23T03:20:00.056Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"VJYXP\",\r\n \"parentId\": \"VJYXP\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"3fhdj\"\r\n },\r\n \"user\": {\r\n \"id\": \"f9N00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"ff225480-c040-11e8-93f9-efeb6277a940\",\r\n \"count\": 1,\r\n \"type\": \"pageView\",\r\n \"timestamp\": \"2018-09-24T21:30:00.114Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FOXQW\",\r\n \"parentId\": \"FOXQW\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"7Nu5Y\"\r\n },\r\n \"user\": {\r\n \"id\": \"gqC00\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": \"\",\r\n \"duration\": null,\r\n \"performanceBucket\": \"\",\r\n \"id\": \"\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.performanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.performanceCounters.json new file mode 100644 index 000000000000..284a1894ea2b --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.performanceCounters.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "b4b5c09f-be7f-4437-bc41-f7b1464a847b" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:11 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.7276cbf9-bfd4-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1006" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"8f5af43e-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/8f5af43e-c041-11e8-932e-cd5dae094438?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvOGY1YWY0M2UtYzA0MS0xMWU4LTkzMmUtY2Q1ZGFlMDk0NDM4P3RpbWVzcGFuPVAxRA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "1e986ef5-7b20-47a5-831f-9dc709f845ba" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:12 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.790b8ed6-c005-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1026" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"8f5af43e-c041-11e8-932e-cd5dae094438\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-24T21:33:50.267Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instance\": \"_LM_W3SVC_1_ROOT_FabrikamProd\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"Y/bdjmmVotw=\",\r\n \"parentId\": \"|Y/bdjmmVotw=.be5e89d_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"pc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.requests.json new file mode 100644 index 000000000000..115b3966e487 --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.requests.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "f0c661d8-b4f8-46d4-9e3c-552c681cd3e9" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:09 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.03dd05d6-bf77-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1366" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b9-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:29.015Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 788.778,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/requests/ada132b9-c041-11e8-bbc3-011041bbe785?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2FkYTEzMmI5LWMwNDEtMTFlOC1iYmMzLTAxMTA0MWJiZTc4NT90aW1lc3Bhbj1QMUQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "a6df3bc4-0285-4022-b9c7-2c932716e49b" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:36:09 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.31a1c7f5-c02c-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1375" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"ada132b9-c041-11e8-bbc3-011041bbe785\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-24T21:34:29.015Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"parentId\": \"|6000ffc23f944f38ba77de6ab3f04e91.0\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6000ffc23f944f38ba77de6ab3f04e91\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_6000ffc23f944f38ba77de6ab3f04e91\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 788.778,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|6000ffc23f944f38ba77de6ab3f04e91.0.84dd66e7_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.traces.json new file mode 100644 index 000000000000..7b625df655ad --- /dev/null +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetByTypeAsync.traces.json @@ -0,0 +1,136 @@ +{ + "Entries": [ + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=1", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "768ffad4-d084-4e27-b45d-8aef8dc2aea3" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:35:45 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.9ee17da4-c004-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1124" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"9406a1f0-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:12.305Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"6f5434824f084db280580b22cc4b49e8\",\r\n \"parentId\": \"|6f5434824f084db280580b22cc4b49e8.0.84dd66e5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6f5434824f084db280580b22cc4b49e8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_6f5434824f084db280580b22cc4b49e8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1/apps/DEMO_APP/events/traces/9406a1f0-c041-11e8-b8ac-91f7dd2bcfca?timespan=P1D", + "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy85NDA2YTFmMC1jMDQxLTExZTgtYjhhYy05MWY3ZGQyYmNmY2E/dGltZXNwYW49UDFE", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-api-key": [ + "DEMO_KEY" + ], + "User-Agent": [ + "FxVersion/4.6.00001.0", + "Microsoft.Azure.ApplicationInsights.Query.ApplicationInsightsDataClient/1.0.0.0" + ], + "prefer": [ + "response-v1=true" + ], + "x-ms-app": [ + "csharpsdk" + ], + "x-ms-client-request-id": [ + "84b18d00-e404-416e-a3ba-f13806a23a4a" + ] + }, + "ResponseHeaders": { + "Connection": [ + "keep-alive" + ], + "Date": [ + "Mon, 24 Sep 2018 21:35:53 GMT" + ], + "Via": [ + "1.1 draft-ai-blue.c8d3978f-c01b-11e8-b19c-70b3d5800001" + ], + "Server": [ + "nginx" + ], + "Vary": [ + "Accept", + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Expose-Headers": [ + "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" + ], + "OData-Version": [ + "4.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1131" + ], + "Content-Type": [ + "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"9406a1f0-c041-11e8-b8ac-91f7dd2bcfca\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-24T21:34:12.305Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"6f5434824f084db280580b22cc4b49e8\",\r\n \"parentId\": \"|6f5434824f084db280580b22cc4b49e8.0.84dd66e5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"6f5434824f084db280580b22cc4b49e8\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_6f5434824f084db280580b22cc4b49e8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json deleted file mode 100644 index c1d57534fbf5..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.AvailabilityResults.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UDFEJiR0b3A9MQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "8aac75ed-06e2-4ce6-bf0b-e98ce43e3d6c" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:24 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "2280" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:19.274Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 2540,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:19 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:21 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvZTBhM2U4NDUtYmVlMC0xMWU4LTllYzAtYTVjNmViNmYzYzI1P3RpbWVzcGFuPVAxRA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "2c1cb641-6e6a-4e83-9bf1-ec3cf5048d79" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:24 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.5d094356-be96-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "2300" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"e0a3e845-bee0-11e8-9ec0-a5c6eb6f3c25\",\r\n \"count\": 1,\r\n \"type\": \"availabilityResult\",\r\n \"timestamp\": \"2018-09-23T03:29:19.274Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\",\r\n \"WebtestArmResourceName\": \"fabrikam click tickets and employees-fabrikamprod\",\r\n \"SyntheticMonitorId\": \"default_fabrikam click tickets and employees-fabrikamprod_us-tx-sn1-azr\",\r\n \"WebtestLocationId\": \"us-tx-sn1-azr\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"\"\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Click Tickets and Employees\",\r\n \"success\": \"0\",\r\n \"duration\": 2540,\r\n \"performanceBucket\": \"\",\r\n \"message\": \"4 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:19 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/10', step #6 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/7', step #13 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:20 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/2', step #20 with the error '500 - InternalServerError'.%G%S%M%Http Error (subtype '500 - InternalServerError') occured at 09/23/2018 03:29:21 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Details/1', step #36 with the error '500 - InternalServerError'.\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json deleted file mode 100644 index d37881d49ad9..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.CustomEvents.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QMUQmJHRvcD0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "0a53070a-159a-4863-bf6a-ec9f624d7f45" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1306" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"4fca4d50-bee0-11e8-be52-f12672a1628f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:23:48.27Z\",\r\n \"customDimensions\": {\r\n \"ServiceProfilerContent\": \"v1|westus2-6eesb2fclnyj2|cf58dcfd-0683-487c-bc84-048789bca8e5|rd00155d467af0fabrikamfiberapp|2496|2018-09-23T03:21:44.0776283Z|2d877218-054f-43db-b0ab-30e4797c789a|2018-09-23T03:23:47.2059620Z|2018-09-23T03:23:48.2702988Z\",\r\n \"ServiceProfilerVersion\": \"v2\",\r\n \"DeveloperMode\": \"true\",\r\n \"RequestId\": \"|0335efaa5f4149e1a00ccdf92c1bc1fe.0.84dd3d0d_\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"parentId\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.4.0-32153\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"ServiceProfilerSample\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/4fca4d50-bee0-11e8-be52-f12672a1628f?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy80ZmNhNGQ1MC1iZWUwLTExZTgtYmU1Mi1mMTI2NzJhMTYyOGY/dGltZXNwYW49UDFE", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "f1db55b7-655c-4e4f-bfdf-a52ef90b86ef" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.83da5075-be94-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1319" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"4fca4d50-bee0-11e8-be52-f12672a1628f\",\r\n \"count\": 1,\r\n \"type\": \"customEvent\",\r\n \"timestamp\": \"2018-09-23T03:23:48.27Z\",\r\n \"customDimensions\": {\r\n \"ServiceProfilerContent\": \"v1|westus2-6eesb2fclnyj2|cf58dcfd-0683-487c-bc84-048789bca8e5|rd00155d467af0fabrikamfiberapp|2496|2018-09-23T03:21:44.0776283Z|2d877218-054f-43db-b0ab-30e4797c789a|2018-09-23T03:23:47.2059620Z|2018-09-23T03:23:48.2702988Z\",\r\n \"ServiceProfilerVersion\": \"v2\",\r\n \"DeveloperMode\": \"true\",\r\n \"RequestId\": \"|0335efaa5f4149e1a00ccdf92c1bc1fe.0.84dd3d0d_\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"parentId\": \"0335efaa5f4149e1a00ccdf92c1bc1fe\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.4.0-32153\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"ServiceProfilerSample\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json deleted file mode 100644 index 380e7fced7a4..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Dependencies.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QMUQmJHRvcD0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "5927f9ba-e97b-437d-8a33-73d17f1607ec" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:23 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1878" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a60-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:29:21.459Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/dd9a2a60-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9kZDlhMmE2MC1iZWUwLTExZTgtOWRmZC05Yjg5ZTYwMTQxYjc/dGltZXNwYW49UDFE", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "0cb4bb03-89f7-4ac1-bf30-324eb0d7ec11" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:23 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.6b7b32a8-bea4-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1891" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a60-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"dependency\",\r\n \"timestamp\": \"2018-09-23T03:29:21.459Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.7.0-10498\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip], \\r\\n [Extent1].[Identity] AS [Identity], \\r\\n [Extent1].[ServiceAreas] AS [ServiceAreas]\\r\\n FROM [dbo].[Employees] AS [Extent1]\",\r\n \"success\": \"True\",\r\n \"duration\": 15,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json deleted file mode 100644 index 18c6a5514e0a..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Exceptions.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "1619ee7b-e6aa-4139-8ec8-1b796c74f55f" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:23 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.da6cdf1a-be71-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "10811" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/dbaa6854-bee0-11e8-8385-951c4ec324fd?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvZGJhYTY4NTQtYmVlMC0xMWU4LTgzODUtOTUxYzRlYzMyNGZkP3RpbWVzcGFuPVAxRA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "428705ad-00ca-4b1f-8adf-23bcdbe688cb" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:23 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.18f16ee9-beaf-11e8-b19c-70b3d5800001" - ], - "Age": [ - "6" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "10822" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"dbaa6854-bee0-11e8-8385-951c4ec324fd\",\r\n \"count\": 1,\r\n \"type\": \"exception\",\r\n \"timestamp\": \"2018-09-23T03:29:16.132Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": \"\",\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": \"\",\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": \"\",\r\n \"innermostAssembly\": \"\",\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0,\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 0,\r\n \"assembly\": \"App_Web_pdpudhmd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 15,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive\",\r\n \"level\": 16,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 17,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_6.b__3\",\r\n \"level\": 18,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass3_1.b__5\",\r\n \"level\": 19,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.CallEndDelegate\",\r\n \"level\": 20,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 21,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__152_1\",\r\n \"level\": 23,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 24,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 25,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller+<>c.b__151_2\",\r\n \"level\": 27,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 28,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 29,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 31,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c.b__20_1\",\r\n \"level\": 32,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncVoid`1.CallEndDelegate\",\r\n \"level\": 33,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResultBase`1.End\",\r\n \"level\": 34,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 36,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 37,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass285_0.b__0\",\r\n \"level\": 38,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 39,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker+<>c__DisplayClass4_0.b__0\",\r\n \"level\": 40,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule.OnExecuteRequestStep\",\r\n \"level\": 41,\r\n \"line\": 0,\r\n \"assembly\": \"Microsoft.AspNet.TelemetryCorrelation, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+<>c__DisplayClass284_0.b__0\",\r\n \"level\": 42,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication+StepInvoker.Invoke\",\r\n \"level\": 43,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 44,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n },\r\n {\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 45,\r\n \"line\": 0,\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\"\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"severityLevel\": \"Critical\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"50875597\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\",\r\n \"parentId\": \"|f5a7a088f3574af89797f7da7c368cc8.0.84dd3d20_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"f5a7a088f3574af89797f7da7c368cc8\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_f5a7a088f3574af89797f7da7c368cc8\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json deleted file mode 100644 index 41d3f51e3dd2..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.PerformanceCounters.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UDFEJiR0b3A9MQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "55f2af5b-36fe-41f5-be0c-edcb727b955b" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:24 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.bfc46bce-bebc-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1045" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:28:47.027Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.312322351046725,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvY2RlMGJlOTQtYmVlMC0xMWU4LWFhYzAtYTNlMGFhZjFjZjBlP3RpbWVzcGFuPVAxRA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "d3fbbc74-8eda-482f-8a07-6950cd3dac47" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:25 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.72dbc689-be35-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1065" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"cde0be94-bee0-11e8-aac0-a3e0aaf1cf0e\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-09-23T03:28:47.027Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.312322351046725,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": \"\",\r\n \"id\": \"lMcrkKAhNIA=\",\r\n \"parentId\": \"|lMcrkKAhNIA=.84dbf9e8_\",\r\n \"syntheticSource\": \"\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467AF0\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.7.0-10498\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json deleted file mode 100644 index 15ab2ea2873e..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Requests.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVAxRCYkdG9wPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "41fc171f-6442-46be-af95-3f4162ed52dd" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:22 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.14723a98-be33-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1321" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a61-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:29:21.457Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 18.356,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests/dd9a2a61-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2RkOWEyYTYxLWJlZTAtMTFlOC05ZGZkLTliODllNjAxNDFiNz90aW1lc3Bhbj1QMUQ=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "1ce84b47-537b-42a7-8c13-277fff7f0068" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:22 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.1acbd733-be8e-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1330" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a61-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"request\",\r\n \"timestamp\": \"2018-09-23T03:29:21.457Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.1')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.38\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.7.0-10498\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"success\": \"True\",\r\n \"duration\": 18.356,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": \"\",\r\n \"id\": \"|20d0881e5c4a4f0a80842738b08a5178.38.24f98a1a_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json deleted file mode 100644 index 9ac9f48bf280..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEvents.Traces.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=P1D&$top=1", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QMUQmJHRvcD0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "7b65a12c-9667-45b7-b65c-7c6b153b6a90" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.f2890eab-beb0-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1105" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a62-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:29:21.551Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.39.24f98a1b_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/dd9a2a62-bee0-11e8-9dfd-9b89e60141b7?timespan=P1D", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9kZDlhMmE2Mi1iZWUwLTExZTgtOWRmZC05Yjg5ZTYwMTQxYjc/dGltZXNwYW49UDFE", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.00001.0", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "7f608dc1-cbad-4ab3-a575-b09a618c3335" - ] - }, - "ResponseHeaders": { - "Connection": [ - "keep-alive" - ], - "Date": [ - "Sun, 23 Sep 2018 03:30:20 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.154f14c7-be2d-11e8-b19c-70b3d5800001" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Content-Length": [ - "1112" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"dd9a2a62-bee0-11e8-9dfd-9b89e60141b7\",\r\n \"count\": 1,\r\n \"type\": \"trace\",\r\n \"timestamp\": \"2018-09-23T03:29:21.551Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Content/fonts/segoewp-webfont.eot\",\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\",\r\n \"parentId\": \"|20d0881e5c4a4f0a80842738b08a5178.39.24f98a1b_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"20d0881e5c4a4f0a80842738b08a5178\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_20d0881e5c4a4f0a80842738b08a5178\",\r\n \"accountId\": \"\",\r\n \"authenticatedId\": \"\"\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.6.4-28971\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": \"\",\r\n \"os\": \"\",\r\n \"type\": \"PC\",\r\n \"browser\": \"\",\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.AvailabilityResults.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.AvailabilityResults.json deleted file mode 100644 index 87c11f10b83d..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.AvailabilityResults.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "38998210-a813-40a6-aa7a-9e4eb8b3a2d8" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"f2e61675-fbbf-11e7-be69-c1189d9d8f04\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:52:12.691Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1430,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"0bd81b92-eae3-479a-8ac2-d9f9cd9560b9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.142.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"d6f25328-fbbf-11e7-8d75-d9146355c7bd\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:51:21.305Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 993,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"RU : Moscow\",\r\n \"id\": \"891f8bce-9251-4d08-b011-263e00496898\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.79.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"c21d39d1-fbbf-11e7-9885-31c84b4b0017\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:49.722Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 622,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 01/17/2018 19:50:50 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : IL-Chicago\",\r\n \"id\": \"7c1ff8e1-9cb7-4988-b510-5436b11d39dc\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.237.156.0\",\r\n \"city\": \"Chicago\",\r\n \"stateOrProvince\": \"Illinois\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"c3046567-fbbf-11e7-b904-8935f3b0215c\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:36.623Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 62,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : CA-San Jose\",\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a6ec51bd-fbbf-11e7-ad2d-911d7d054dfb\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.12Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Zip Code Test\",\r\n \"success\": \"0\",\r\n \"duration\": 1398,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 500 - InternalServerError') occured at 01/17/2018 19:50:15 (UTC) for Uri 'http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469', step #1 with the error ''500 - InternalServerError' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b48c2c42-fbbf-11e7-b1de-2fc0580a70ce\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.216Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1735,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"SG : Singapore\",\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9d78bb81-fbbf-11e7-84b1-c93014bbcea9\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.122Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 1055,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"BR : Sao Paulo\",\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c2f2492-fbbf-11e7-91ca-7fa43ffbb3a4\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:36.583Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Employee Create\",\r\n \"success\": \"0\",\r\n \"duration\": 499,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 01/17/2018 19:49:37 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"BR : Sao Paulo\",\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"97671554-fbbf-11e7-8eaa-01be7136926f\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.878Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Web App Reports\",\r\n \"success\": \"1\",\r\n \"duration\": 254,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : TX-San Antonio\",\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8a59415e-fbbf-11e7-8c58-5de0314797d3\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:24.82Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"true\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Employee Create\",\r\n \"success\": \"0\",\r\n \"duration\": 254,\r\n \"performanceBucket\": null,\r\n \"message\": \"1 primary requests, 0 dependant requests and 0 conditional rules failed%G%S%M%Http Error (subtype 'Unexpected 404 - NotFound') occured at 01/17/2018 19:49:25 (UTC) for Uri 'http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create', step #1 with the error ''404 - NotFound' does not match the expected status '200 - OK'.'.\",\r\n \"location\": \"RU : Moscow\",\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/availabilityResults/f2e61675-fbbf-11e7-be69-c1189d9d8f04?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2F2YWlsYWJpbGl0eVJlc3VsdHMvZjJlNjE2NzUtZmJiZi0xMWU3LWJlNjktYzExODlkOWQ4ZjA0P3RpbWVzcGFuPVBUMTJI", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "48417b50-5a0f-4e51-b5a4-254785a8a700" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/availabilityResults/$metadata#availabilityResults\",\r\n \"value\": [\r\n {\r\n \"id\": \"f2e61675-fbbf-11e7-be69-c1189d9d8f04\",\r\n \"type\": \"availabilityResult\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:52:12.691Z\",\r\n \"customDimensions\": {\r\n \"FullTestResultAvailable\": \"false\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"availabilityResult\": {\r\n \"name\": \"Fabrikam Homepage\",\r\n \"success\": \"1\",\r\n \"duration\": 1430,\r\n \"performanceBucket\": null,\r\n \"message\": \"Passed\",\r\n \"location\": \"US : FL-Miami\",\r\n \"id\": \"0bd81b92-eae3-479a-8ac2-d9f9cd9560b9\",\r\n \"size\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.142.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.BrowserTimings.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.BrowserTimings.json deleted file mode 100644 index ab474b082c3d..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.BrowserTimings.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzP3RpbWVzcGFuPVBUMTJIJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "029266ac-5d72-403e-a370-dfabe26684c8" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:21.263Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1440,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 715,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 708\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"AGZao\",\r\n \"parentId\": \"AGZao\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"26b8a232-fb96-11e7-8421-bd577372ca7c\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:16.895Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1400,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 18,\r\n \"sendDuration\": 723,\r\n \"receiveDuration\": 3,\r\n \"processingDuration\": 647\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"yDi63\",\r\n \"parentId\": \"yDi63\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"1bdeec72-fb96-11e7-905b-c30a00070154\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:52:58.443Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1548,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 719,\r\n \"receiveDuration\": 4,\r\n \"processingDuration\": 704\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"bh12g\",\r\n \"parentId\": \"bh12g\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"63a37633-fb72-11e7-8a71-f9d7f0a8b291\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:16.698Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Customers\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Customers\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Customers\",\r\n \"totalDuration\": 322,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 200,\r\n \"receiveDuration\": 2,\r\n \"processingDuration\": 118\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Customers\",\r\n \"id\": \"AXUHE\",\r\n \"parentId\": \"AXUHE\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Customers\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"61d21197-fb72-11e7-9300-87f61212cf07\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:13.912Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Reports\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Index\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Reports\",\r\n \"totalDuration\": 2068,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 188,\r\n \"receiveDuration\": 8,\r\n \"processingDuration\": 1865\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Reports\",\r\n \"id\": \"g7Xv+\",\r\n \"parentId\": \"g7Xv+\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Index\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"600a49e3-fb72-11e7-b0d1-470e151cb3ba\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:11.077Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/Employees\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Employees\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees\",\r\n \"totalDuration\": 443,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 268,\r\n \"receiveDuration\": 11,\r\n \"processingDuration\": 159\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/Employees\",\r\n \"id\": \"HrV0f\",\r\n \"parentId\": \"HrV0f\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Employees\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n },\r\n {\r\n \"id\": \"5cbdde03-fb72-11e7-ac92-671a876fbfd2\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T10:37:04.017Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/FabrikamProd/ServiceTickets/Details/16\",\r\n \"urlHost\": \"aiconnect2.cloudapp.net\",\r\n \"name\": \"Details\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/ServiceTickets/Details/16\",\r\n \"totalDuration\": 3085,\r\n \"performanceBucket\": \"3sec-7sec\",\r\n \"networkDuration\": 0,\r\n \"sendDuration\": 387,\r\n \"receiveDuration\": 169,\r\n \"processingDuration\": 2307\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/FabrikamProd/ServiceTickets/Details/16\",\r\n \"id\": \"cYTmY\",\r\n \"parentId\": \"cYTmY\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"iZ3oK\"\r\n },\r\n \"user\": {\r\n \"id\": \"gHCKn\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Details\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 15.15063\",\r\n \"ip\": \"192.118.68.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"Israel\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.4225dc9f-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/browserTimings/29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2Jyb3dzZXJUaW1pbmdzLzI5YmY3OTk0LWZiOTYtMTFlNy05YzcxLWE1ZmU1YTBiOWEyZT90aW1lc3Bhbj1QVDEySA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "b5fbfa80-abff-4386-b981-60b2bd78a685" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/browserTimings/$metadata#browserTimings\",\r\n \"value\": [\r\n {\r\n \"id\": \"29bf7994-fb96-11e7-9c71-a5fe5a0b9a2e\",\r\n \"type\": \"browserTiming\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T14:53:21.263Z\",\r\n \"browserTiming\": {\r\n \"urlPath\": \"/\",\r\n \"urlHost\": \"fabrikamfiberapp.azurewebsites.net\",\r\n \"name\": \"Home Page\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"totalDuration\": 1440,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"networkDuration\": 9,\r\n \"sendDuration\": 715,\r\n \"receiveDuration\": 5,\r\n \"processingDuration\": 708\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"AGZao\",\r\n \"parentId\": \"AGZao\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0Rtz\"\r\n },\r\n \"user\": {\r\n \"id\": \"aRnk\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.14\"\r\n },\r\n \"clientPerformance\": {\r\n \"name\": \"Home Page\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": \"Edge 16.16299\",\r\n \"ip\": \"104.190.165.0\",\r\n \"city\": \"Frisco\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96ffa9e9-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomEvents.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomEvents.json deleted file mode 100644 index 540cbaa82a03..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomEvents.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "265713bb-b5b4-44f3-9dd2-fa35d84219f8" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uV0X5\",\r\n \"parentId\": \"uV0X5\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0bVu\"\r\n },\r\n \"user\": {\r\n \"id\": \"baC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c650180-fbbf-11e7-ae28-010eee82581a\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"06FQN\",\r\n \"parentId\": \"06FQN\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"kI0Nv\"\r\n },\r\n \"user\": {\r\n \"id\": \"gbE00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c71f9d2-fbbf-11e7-b322-639c75869ff2\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"mCdS+\",\r\n \"parentId\": \"mCdS+\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"sJ42g\"\r\n },\r\n \"user\": {\r\n \"id\": \"a/m00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked My Profile Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"24.16.57.0\",\r\n \"city\": \"Bothell\",\r\n \"stateOrProvince\": \"Washington\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9ca6504b-fbbf-11e7-834a-c71122776c6f\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"85K6O\",\r\n \"parentId\": \"85K6O\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"1pbz3\"\r\n },\r\n \"user\": {\r\n \"id\": \"fmJ00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Schedule Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c7d1d60-fbbf-11e7-a0e6-0f7643b3a861\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"+caJu\",\r\n \"parentId\": \"+caJu\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"+/fjE\"\r\n },\r\n \"user\": {\r\n \"id\": \"dnJ00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c6d17d0-fbbf-11e7-9778-89320908da94\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"UaJM7\",\r\n \"parentId\": \"UaJM7\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"0YAGS\"\r\n },\r\n \"user\": {\r\n \"id\": \"cyK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Delete Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.49.100.0\",\r\n \"city\": \"Nantes\",\r\n \"stateOrProvince\": \"Loire-Atlantique\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c6f3ac0-fbbf-11e7-8e26-03f2c76a96e2\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"DLi1O\",\r\n \"parentId\": \"DLi1O\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Zs61F\"\r\n },\r\n \"user\": {\r\n \"id\": \"fgK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c861e12-fbbf-11e7-b90a-b5427c90e166\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"aTJeC\",\r\n \"parentId\": \"aTJeC\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"y/q9r\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8C00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Assign Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c64da70-fbbf-11e7-bfef-85315fbb4195\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"rgO33\",\r\n \"parentId\": \"rgO33\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"HFn1e\"\r\n },\r\n \"user\": {\r\n \"id\": \"gDA00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"38.123.68.0\",\r\n \"city\": \"Zapopan\",\r\n \"stateOrProvince\": \"Jalisco\",\r\n \"countryOrRegion\": \"Mexico\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c802aa0-fbbf-11e7-ab4a-1998e2c0d806\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"NlMxp\",\r\n \"parentId\": \"NlMxp\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Dx3DD\"\r\n },\r\n \"user\": {\r\n \"id\": \"bZB00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 7\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.933f77d5-fbb2-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/customEvents/9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbUV2ZW50cy85YzZmM2FiMC1mYmJmLTExZTctOGU1OC02ZjU2MGMzYWQwZjg/dGltZXNwYW49UFQxMkg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "695b5a46-f594-4553-bd65-5c4801ef2242" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customEvents/$metadata#customEvents\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c6f3ab0-fbbf-11e7-8e58-6f560c3ad0f8\",\r\n \"type\": \"customEvent\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"uV0X5\",\r\n \"parentId\": \"uV0X5\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"P0bVu\"\r\n },\r\n \"user\": {\r\n \"id\": \"baC00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"customEvent\": {\r\n \"name\": \"Clicked Create New Ticket Button\"\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"5.56.177.0\",\r\n \"city\": \"Rottweil\",\r\n \"stateOrProvince\": \"Baden-Württemberg Region\",\r\n \"countryOrRegion\": \"Germany\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "937" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.e74872b8-fb36-11e7-a5b2-70b3d5800008" - ], - "Age": [ - "175" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomMetrics.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomMetrics.json deleted file mode 100644 index fbac03dde2ac..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.CustomMetrics.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3M/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "d0dd9361-f185-48b3-87a9-9a7885c41964" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"a0fe38b0-fbbf-11e7-b9b9-1911379805ea\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.793Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a0ce7630-fbbf-11e7-b8e3-c5cb581b466c\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.715Z\",\r\n \"customMetric\": {\r\n \"value\": 1.5,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 1.5,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1.5,\r\n \"valueMax\": 1.5,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a092f3c0-fbbf-11e7-84d3-1b855edf3a77\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.636Z\",\r\n \"customMetric\": {\r\n \"value\": 3,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 3,\r\n \"valueCount\": 1,\r\n \"valueMin\": 3,\r\n \"valueMax\": 3,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"a0445e90-fbbf-11e7-96f0-b1141b9a57fa\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.402Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"04782f03-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:28.745Z\",\r\n \"customMetric\": {\r\n \"value\": 0,\r\n \"name\": \"HeartbeatState\",\r\n \"valueSum\": 0,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0,\r\n \"valueMax\": 0,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"runtimeFramework\": \"4.7.2102.0\",\r\n \"baseSdkTargetFramework\": \"net46\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": \"1urDO1eaC4s=\",\r\n \"parentId\": \"|1urDO1eaC4s=.c43fd029_\",\r\n \"syntheticSource\": \"HeartbeatState\"\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"dotnet:2.5.0-44811\"\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.91.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"edabd970-fbbe-11e7-b092-b38e18a71446\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.916Z\",\r\n \"customMetric\": {\r\n \"value\": 1.5,\r\n \"name\": \"AzureBlobSuccessRate\",\r\n \"valueSum\": 1.5,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1.5,\r\n \"valueMax\": 1.5,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"edf90f11-fbbe-11e7-96f0-b1141b9a57fa\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.775Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ed513650-fbbe-11e7-b27c-69e6f990b115\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.634Z\",\r\n \"customMetric\": {\r\n \"value\": 2,\r\n \"name\": \"CritFailureRate2\",\r\n \"valueSum\": 2,\r\n \"valueCount\": 1,\r\n \"valueMin\": 2,\r\n \"valueMax\": 2,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"ed75d551-fbbe-11e7-94bd-13d7ced51729\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:45:08.447Z\",\r\n \"customMetric\": {\r\n \"value\": 0.25,\r\n \"name\": \"AzureDependencyFailureRate5Min\",\r\n \"valueSum\": 0.25,\r\n \"valueCount\": 1,\r\n \"valueMin\": 0.25,\r\n \"valueMax\": 0.25,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"3b6f5700-fbbe-11e7-94bd-13d7ced51729\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:40:09.047Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:34 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96ff34b6-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/customMetrics/a0fe38b0-fbbf-11e7-b9b9-1911379805ea?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2N1c3RvbU1ldHJpY3MvYTBmZTM4YjAtZmJiZi0xMWU3LWI5YjktMTkxMTM3OTgwNWVhP3RpbWVzcGFuPVBUMTJI", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "31049a1f-2e65-4187-bf01-9af6da2ba0fb" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/customMetrics/$metadata#customMetrics\",\r\n \"value\": [\r\n {\r\n \"id\": \"a0fe38b0-fbbf-11e7-b9b9-1911379805ea\",\r\n \"type\": \"customMetric\",\r\n \"timestamp\": \"2018-01-17T19:50:08.793Z\",\r\n \"customMetric\": {\r\n \"value\": 1,\r\n \"name\": \"CriticalOperationFailureRate\",\r\n \"valueSum\": 1,\r\n \"valueCount\": 1,\r\n \"valueMin\": 1,\r\n \"valueMax\": 1,\r\n \"valueStdDev\": 0\r\n },\r\n \"customDimensions\": {\r\n \"SA_OriginAppId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\"\r\n },\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": null\r\n },\r\n \"application\": {\r\n \"version\": null\r\n },\r\n \"client\": {\r\n \"model\": \"Other\",\r\n \"os\": \"Other\",\r\n \"type\": \"PC\",\r\n \"browser\": \"Other\",\r\n \"ip\": \"104.210.144.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "994" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:34 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.a74bd533-fb36-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Dependencies.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Dependencies.json deleted file mode 100644 index 09200b21e77f..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Dependencies.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "3ab61ff5-99c8-4aea-a95f-2e7829b5c75c" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f45e-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.449Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 48,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45d-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.293Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber()\",\r\n \"success\": \"False\",\r\n \"duration\": 155,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45c-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.043Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/Tables()\",\r\n \"success\": \"False\",\r\n \"duration\": 251,\r\n \"performanceBucket\": \"250ms-500ms\",\r\n \"resultCode\": \"409\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"POST fabrikamaccount/Tables\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45b-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT TOP (2) \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[FirstName] AS [FirstName], \\r\\n [Extent1].[LastName] AS [LastName], \\r\\n [Extent1].[Address_Street] AS [Address_Street], \\r\\n [Extent1].[Address_City] AS [Address_City], \\r\\n [Extent1].[Address_State] AS [Address_State], \\r\\n [Extent1].[Address_Zip] AS [Address_Zip]\\r\\n FROM [dbo].[Customers] AS [Extent1]\\r\\n WHERE [Extent1].[ID] = @p0\",\r\n \"success\": \"True\",\r\n \"duration\": 76,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_2.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45a-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.918Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"data\": \"SELECT \\r\\n [Extent1].[ID] AS [ID], \\r\\n [Extent1].[Title] AS [Title], \\r\\n [Extent1].[Description] AS [Description], \\r\\n [Extent1].[Status] AS [Status], \\r\\n [Extent1].[StatusValue] AS [StatusValue], \\r\\n [Extent1].[EscalationLevel] AS [EscalationLevel], \\r\\n [Extent1].[Opened] AS [Opened], \\r\\n [Extent1].[Closed] AS [Closed], \\r\\n [Extent1].[CustomerID] AS [CustomerID], \\r\\n [Extent1].[CreatedByID] AS [CreatedByID], \\r\\n [Extent1].[AssignedToID] AS [AssignedToID], \\r\\n [Extent2].[ID] AS [ID1], \\r\\n [Extent2].[FirstName] AS [FirstName], \\r\\n [Extent2].[LastName] AS [LastName], \\r\\n [Extent2].[Address_Street] AS [Address_Street], \\r\\n [Extent2].[Address_City] AS [Address_City], \\r\\n [Extent2].[Address_State] AS [Address_State], \\r\\n [Extent2].[Address_Zip] AS [Address_Zip], \\r\\n [Extent3].[ID] AS [ID2], \\r\\n [Extent3].[FirstName] AS [FirstName1], \\r\\n [Extent3].[LastName] AS [LastName1], \\r\\n [Extent3].[Address_Street] AS [Address_Street1], \\r\\n [Extent3].[Address_City] AS [Address_City1], \\r\\n [Extent3].[Address_State] AS [Address_State1], \\r\\n [Extent3].[Address_Zip] AS [Address_Zip1], \\r\\n [Extent3].[Identity] AS [Identity], \\r\\n [Extent3].[ServiceAreas] AS [ServiceAreas], \\r\\n [Extent4].[ID] AS [ID3], \\r\\n [Extent4].[FirstName] AS [FirstName2], \\r\\n [Extent4].[LastName] AS [LastName2], \\r\\n [Extent4].[Address_Street] AS [Address_Street2], \\r\\n [Extent4].[Address_City] AS [Address_City2], \\r\\n [Extent4].[Address_State] AS [Address_State2], \\r\\n [Extent4].[Address_Zip] AS [Address_Zip2], \\r\\n [Extent4].[Identity] AS [Identity1], \\r\\n [Extent4].[ServiceAreas] AS [ServiceAreas1]\\r\\n FROM [dbo].[ServiceTickets] AS [Extent1]\\r\\n LEFT OUTER JOIN [dbo].[Customers] AS [Extent2] ON [Extent1].[CustomerID] = [Extent2].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent3] ON [Extent1].[CreatedByID] = [Extent3].[ID]\\r\\n LEFT OUTER JOIN [dbo].[Employees] AS [Extent4] ON [Extent1].[AssignedToID] = [Extent4].[ID]\",\r\n \"success\": \"True\",\r\n \"duration\": 77,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"\",\r\n \"type\": \"SQL\",\r\n \"name\": \"SQL: tcp:fabrikamxyz.database.windows.net,1433 | FabrikamlSQL\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_9.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f459-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.871Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages?numofmessages=1\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_7.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f458-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.746Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber/messages\",\r\n \"success\": \"True\",\r\n \"duration\": 113,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"POST fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_6.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f457-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.699Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.queue.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.queue.core.windows.net:443/fabrikamfiber\",\r\n \"success\": \"True\",\r\n \"duration\": 53,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"204\",\r\n \"type\": \"Azure queue\",\r\n \"name\": \"PUT fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f456-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.636Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber?restype=container&comp=list&delimiter=%2F\",\r\n \"success\": \"True\",\r\n \"duration\": 50,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"GET fabrikamaccount\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_4.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f455-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.527Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\",\r\n \"Container\": \"fabrikamfiber\",\r\n \"Blob\": \"fabrikam.txt\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.blob.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.blob.core.windows.net:443/fabrikamfiber/fabrikam.txt\",\r\n \"success\": \"True\",\r\n \"duration\": 119,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"201\",\r\n \"type\": \"Azure blob\",\r\n \"name\": \"PUT fabrikamaccount\",\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_3.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.933f77d5-fbb2-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/dependencies/b222f45e-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2RlcGVuZGVuY2llcy9iMjIyZjQ1ZS1mYmJmLTExZTctODJiZC00MTMwYTFjODAxMTk/dGltZXNwYW49UFQxMkg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "fcf1f77c-cd98-429a-bcb8-f119c290c186" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/dependencies/$metadata#dependencies\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f45e-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"dependency\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:13.449Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Dependencies', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"rddp:2.5.0-33031\"\r\n },\r\n \"dependency\": {\r\n \"target\": \"fabrikamaccount.table.core.windows.net\",\r\n \"data\": \"https://fabrikamaccount.table.core.windows.net:443/fabrikamfiber(PartitionKey='Taylor',RowKey='Dan')\",\r\n \"success\": \"True\",\r\n \"duration\": 48,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"type\": \"Azure table\",\r\n \"name\": \"GET fabrikamaccount/fabrikamfiber\",\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_5.\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96ff34b5-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Exceptions.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Exceptions.json deleted file mode 100644 index a7c0bbed3f7d..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Exceptions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "5866d191-8e56-44d4-994d-4acc93dad900" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f462-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.23Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15312812\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca3-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.354Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"41824242\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"|xtXUIM2Tbr8=.c43fd182_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca2-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.025Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"55374404\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"|F/r1noB4Jx0=.c43fd181_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b43-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.196Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"16411082\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"|c42lrvdqyQk=.c43fd180_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b42-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:48:38.689Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"28077334\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"oTWvTwP9qyg=\",\r\n \"parentId\": \"|oTWvTwP9qyg=.c43fd17f_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"acb7d340-449c-4d6b-a52f-47ebcc39cc74\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-fr-pra-edge_acb7d340-449c-4d6b-a52f-47ebcc39cc74\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"94.245.72.0\",\r\n \"city\": \"Paris\",\r\n \"stateOrProvince\": \"Paris\",\r\n \"countryOrRegion\": \"France\"\r\n }\r\n },\r\n {\r\n \"id\": \"5e8ca391-fbbf-11e7-b9ad-d9c0457bb13c\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:47:50.266Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"id\": \"11418575\",\r\n \"outerId\": \"0\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"6lmu7umI6kc=\",\r\n \"parentId\": \"|6lmu7umI6kc=.c43fd17e_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"4f617f45-f722-42d8-8f02-56decf6cc0ce\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-au-syd-edge_4f617f45-f722-42d8-8f02-56decf6cc0ce\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.75.150.0\",\r\n \"city\": \"Sydney\",\r\n \"stateOrProvince\": \"New South Wales\",\r\n \"countryOrRegion\": \"Australia\"\r\n }\r\n },\r\n {\r\n \"id\": \"2c972e0b-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:46:38.773Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"57971789\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"dBRZotWkYAY=\",\r\n \"parentId\": \"|dBRZotWkYAY=.1eb694aa_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"d827bcbd-7fae-4a2e-8bfc-f12889c36391\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_d827bcbd-7fae-4a2e-8bfc-f12889c36391\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.171.141.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"2c972e0a-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:46:27.744Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"6720312\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"Lr+FZX7obok=\",\r\n \"parentId\": \"|Lr+FZX7obok=.1eb694a9_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5af37463-6a2d-4e47-8c5e-d0cc5a474682\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_5af37463-6a2d-4e47-8c5e-d0cc5a474682\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"04782f01-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:45:19.137Z\",\r\n \"exception\": {\r\n \"severityLevel\": null,\r\n \"problemId\": \"System.Web.HttpException at System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"handledAt\": null,\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"message\": null,\r\n \"type\": \"System.Web.HttpException\",\r\n \"outerType\": \"System.Web.HttpException\",\r\n \"outerMethod\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"outerAssembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"outerMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostType\": \"System.Web.HttpException\",\r\n \"innermostMessage\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.HandleUnknownAction\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 3,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 4,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 5,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 10,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"A public action method 'Create' was not found on controller 'FabrikamFiber.Web.Controllers.EmployeesController'.\",\r\n \"type\": \"System.Web.HttpException\",\r\n \"id\": \"40546674\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"69sqPdret1k=\",\r\n \"parentId\": \"|69sqPdret1k=.c43fd17d_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"1c451544-6077-4d13-9c47-d023c3221187\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_1c451544-6077-4d13-9c47-d023c3221187\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"ee928ffe-fbbe-11e7-8b10-571b7b648c56\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:44:43.817Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"60988302\",\r\n \"severityLevel\": \"Critical\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"TYCUEg3ggNQ=\",\r\n \"parentId\": \"|TYCUEg3ggNQ=.1eb694a7_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"db579983-3532-4b86-96b1-8bdde7181d57\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-va-ash-azr_db579983-3532-4b86-96b1-8bdde7181d57\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.85.187.0\",\r\n \"city\": \"Washington\",\r\n \"stateOrProvince\": \"Virginia\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.a0495a7b-fbba-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/exceptions/b222f462-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL2V4Y2VwdGlvbnMvYjIyMmY0NjItZmJiZi0xMWU3LTgyYmQtNDEzMGExYzgwMTE5P3RpbWVzcGFuPVBUMTJI", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "6dd0ebc9-df6f-4e19-8f33-68ba9903b9a7" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/exceptions/$metadata#exceptions\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f462-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"exception\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:14.23Z\",\r\n \"exception\": {\r\n \"severityLevel\": 4,\r\n \"problemId\": \"System.FormatException at FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"handledAt\": null,\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"message\": null,\r\n \"type\": \"System.FormatException\",\r\n \"outerType\": \"System.FormatException\",\r\n \"outerMethod\": \"System.Number.StringToNumber\",\r\n \"outerAssembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"outerMessage\": \"Input string was not in a correct format.\",\r\n \"innermostType\": \"System.FormatException\",\r\n \"innermostMessage\": \"Input string was not in a correct format.\",\r\n \"innermostMethod\": null,\r\n \"innermostAssembly\": null,\r\n \"details\": [\r\n {\r\n \"severityLevel\": \"Critical\",\r\n \"parsedStack\": [\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.StringToNumber\",\r\n \"level\": 0,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Number.ParseInt32\",\r\n \"level\": 1,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\",\r\n \"method\": \"System.Int32.Parse\",\r\n \"level\": 2,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Data.AddressValidator.ValidZipCode\",\r\n \"level\": 3,\r\n \"line\": 13,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Data\\\\AddressValidator.cs\"\r\n },\r\n {\r\n \"assembly\": \"FabrikamFiber.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"FabrikamFiber.DAL.Models.Address.FullAddress\",\r\n \"level\": 4,\r\n \"line\": 25,\r\n \"fileName\": \"C:\\\\Users\\\\rahulba\\\\Source\\\\Repos\\\\FabrikamFiber\\\\FabrikamFiber.CallCenter\\\\FabrikamFiber.DAL\\\\Models\\\\Address.cs\"\r\n },\r\n {\r\n \"assembly\": \"App_Web_mvkutmdy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\",\r\n \"method\": \"ASP._Page_Views_Customers_Details_cshtml.Execute\",\r\n \"level\": 5,\r\n \"line\": 19,\r\n \"fileName\": \"d:\\\\home\\\\site\\\\wwwroot\\\\Views\\\\Customers\\\\Details.cshtml\"\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 6,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.WebViewPage.ExecutePageHierarchy\",\r\n \"level\": 7,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.RunPage\",\r\n \"level\": 8,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.StartPage.ExecutePageHierarchy\",\r\n \"level\": 9,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.WebPages.WebPageBase.ExecutePageHierarchy\",\r\n \"level\": 10,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.RazorView.RenderView\",\r\n \"level\": 11,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.BuildManagerCompiledView.Render\",\r\n \"level\": 12,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ViewResultBase.ExecuteResult\",\r\n \"level\": 13,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResult\",\r\n \"level\": 14,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a.b__17\",\r\n \"level\": 15,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter\",\r\n \"level\": 16,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker+<>c__DisplayClass1a+<>c__DisplayClass1c.b__19\",\r\n \"level\": 17,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters\",\r\n \"level\": 18,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25+<>c__DisplayClass2a.b__20\",\r\n \"level\": 19,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker+<>c__DisplayClass25.b__22\",\r\n \"level\": 20,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 21,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction\",\r\n \"level\": 22,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller+<>c__DisplayClass1d.b__18\",\r\n \"level\": 23,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 24,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 25,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecuteCore\",\r\n \"level\": 26,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 27,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 28,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.EndExecute\",\r\n \"level\": 29,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute\",\r\n \"level\": 30,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler+<>c__DisplayClass8.b__3\",\r\n \"level\": 31,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+<>c__DisplayClass4.b__3\",\r\n \"level\": 32,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.Async.AsyncResultWrapper+WrappedAsyncResult`1.End\",\r\n \"level\": 33,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.EndProcessRequest\",\r\n \"level\": 34,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\r\n \"method\": \"System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest\",\r\n \"level\": 35,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute\",\r\n \"level\": 36,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStepImpl\",\r\n \"level\": 37,\r\n \"line\": 0\r\n },\r\n {\r\n \"assembly\": \"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\",\r\n \"method\": \"System.Web.HttpApplication.ExecuteStep\",\r\n \"level\": 38,\r\n \"line\": 0\r\n }\r\n ],\r\n \"outerId\": \"0\",\r\n \"message\": \"Input string was not in a correct format.\",\r\n \"type\": \"System.FormatException\",\r\n \"id\": \"15312812\"\r\n }\r\n ]\r\n },\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.4225b58e-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PageViews.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PageViews.json deleted file mode 100644 index 4a87c96cfa2c..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PageViews.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "496e0c80-3210-4a8e-9f11-d2b3a576f867" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-88c9-53bb74d81bb1\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5tfK8\",\r\n \"parentId\": \"5tfK8\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"DN50\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8I00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c83ad10-fbbf-11e7-8b62-35e705aefb67\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"lV2Vi\",\r\n \"parentId\": \"lV2Vi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"hAicd\"\r\n },\r\n \"user\": {\r\n \"id\": \"ehG00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c5dae80-fbbf-11e7-abcc-bfc518423d09\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"BKmCi\",\r\n \"parentId\": \"BKmCi\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"tROai\"\r\n },\r\n \"user\": {\r\n \"id\": \"h4C00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Customers\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Ubuntu\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c8b0010-fbbf-11e7-95fd-bb10dd10cbe5\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"4GpHz\",\r\n \"parentId\": \"4GpHz\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"2gp0z\"\r\n },\r\n \"user\": {\r\n \"id\": \"hHR00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c73f5a1-fbbf-11e7-99ed-a5bb5322478f\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"I//NN\",\r\n \"parentId\": \"I//NN\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"boJ/r\"\r\n },\r\n \"user\": {\r\n \"id\": \"ePF00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.73.100.0\",\r\n \"city\": \"Yokohama\",\r\n \"stateOrProvince\": \"Kanagawa\",\r\n \"countryOrRegion\": \"Japan\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c94c411-fbbf-11e7-a677-7f5420cc9b17\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CgkWm\",\r\n \"parentId\": \"CgkWm\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"1WsSK\"\r\n },\r\n \"user\": {\r\n \"id\": \"dKI00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c822670-fbbf-11e7-b8f2-bb2383906b70\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"CIre\",\r\n \"parentId\": \"CIre\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"vgDQL\"\r\n },\r\n \"user\": {\r\n \"id\": \"fdD00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"1.25.100.0\",\r\n \"city\": \"Baotou\",\r\n \"stateOrProvince\": \"Inner Mongolia Autonomous Region\",\r\n \"countryOrRegion\": \"China\"\r\n }\r\n },\r\n {\r\n \"id\": \"9cbb5ee0-fbbf-11e7-b01f-5fa1ac8aeddd\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"FjMMU\",\r\n \"parentId\": \"FjMMU\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"wG07R\"\r\n },\r\n \"user\": {\r\n \"id\": \"h3J00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.2.6\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"2.125.100.0\",\r\n \"city\": \"Peterborough\",\r\n \"stateOrProvince\": \"Peterborough\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c5dfca0-fbbf-11e7-bf96-8777e379f10c\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"LO53I\",\r\n \"parentId\": \"LO53I\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"W+I4o\"\r\n },\r\n \"user\": {\r\n \"id\": \"dNK00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"macOS 10.12\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-8bf2-118dea8db50f\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"zUjUa\",\r\n \"parentId\": \"zUjUa\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"Gmur+\"\r\n },\r\n \"user\": {\r\n \"id\": \"dfH00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 10\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/pageViews/9c71abb0-fbbf-11e7-88c9-53bb74d81bb1?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BhZ2VWaWV3cy85YzcxYWJiMC1mYmJmLTExZTctODhjOS01M2JiNzRkODFiYjE/dGltZXNwYW49UFQxMkg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "9628e30a-ea0c-4170-98be-a99c418889b2" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/pageViews/$metadata#pageViews\",\r\n \"value\": [\r\n {\r\n \"id\": \"9c71abb0-fbbf-11e7-88c9-53bb74d81bb1\",\r\n \"type\": \"pageView\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:00.04Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"/\",\r\n \"id\": \"5tfK8\",\r\n \"parentId\": \"5tfK8\",\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": \"DN50\"\r\n },\r\n \"user\": {\r\n \"id\": \"d8I00\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": null,\r\n \"roleInstance\": null\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"javascript:1.0.8\"\r\n },\r\n \"pageView\": {\r\n \"name\": \"Home Page\",\r\n \"url\": null,\r\n \"duration\": null,\r\n \"performanceBucket\": null\r\n },\r\n \"application\": {\r\n \"version\": \"1.3.2\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": \"Windows 8.1\",\r\n \"type\": \"Browser\",\r\n \"browser\": null,\r\n \"ip\": \"131.0.40.0\",\r\n \"city\": \"Sao Goncalo\",\r\n \"stateOrProvince\": \"Rio de Janeiro\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "945" - ], - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Via": [ - "1.1 draft-ai-blue.a74bfc44-fb36-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PerformanceCounters.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PerformanceCounters.json deleted file mode 100644 index 3bdc8cb88f61..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.PerformanceCounters.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnM/dGltZXNwYW49UFQxMkgmJHRvcD0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "86f44ce0-adef-474a-8732-dc35b5b6a416" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"4f416d88-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d84-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests/Sec\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests/Sec\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d85-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"# of Exceps Thrown / sec\",\r\n \"category\": \".NET CLR Exceptions\",\r\n \"counter\": \"# of Exceps Thrown / sec\",\r\n \"instanceName\": \"??APP_CLR_PROC??\",\r\n \"instance\": \"??APP_CLR_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d89-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"Requests In Application Queue\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Requests In Application Queue\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d87-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 221388800,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d86-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1238,\r\n \"name\": \"Request Execution Time\",\r\n \"category\": \"ASP.NET Applications\",\r\n \"counter\": \"Request Execution Time\",\r\n \"instanceName\": \"??APP_W3SVC_PROC??\",\r\n \"instance\": \"??APP_W3SVC_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d83-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0.559547846797091,\r\n \"name\": \"% Processor Time Normalized\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time Normalized\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"4f416d82-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 1.11909569359418,\r\n \"name\": \"% Processor Time\",\r\n \"category\": \"Process\",\r\n \"counter\": \"% Processor Time\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0a880b4a-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:52:57.738Z\",\r\n \"performanceCounter\": {\r\n \"value\": 81466,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"0a880b49-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:52:57.738Z\",\r\n \"performanceCounter\": {\r\n \"value\": 219705344,\r\n \"name\": \"Private Bytes\",\r\n \"category\": \"Process\",\r\n \"counter\": \"Private Bytes\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:57:09 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.4225676d-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/performanceCounters/4f416d88-fbc0-11e7-9b15-272dd9e533f1?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3BlcmZvcm1hbmNlQ291bnRlcnMvNGY0MTZkODgtZmJjMC0xMWU3LTliMTUtMjcyZGQ5ZTUzM2YxP3RpbWVzcGFuPVBUMTJI", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "7e886ed2-451f-4d17-858e-a09261ea580b" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/performanceCounters/$metadata#performanceCounters\",\r\n \"value\": [\r\n {\r\n \"id\": \"4f416d88-fbc0-11e7-9b15-272dd9e533f1\",\r\n \"type\": \"performanceCounter\",\r\n \"timestamp\": \"2018-01-17T19:54:57.809Z\",\r\n \"performanceCounter\": {\r\n \"value\": 0,\r\n \"name\": \"IO Data Bytes/sec\",\r\n \"category\": \"Process\",\r\n \"counter\": \"IO Data Bytes/sec\",\r\n \"instanceName\": \"??APP_WIN32_PROC??\",\r\n \"instance\": \"??APP_WIN32_PROC??\"\r\n },\r\n \"customDimensions\": null,\r\n \"operation\": {\r\n \"name\": null,\r\n \"id\": null,\r\n \"parentId\": null,\r\n \"syntheticSource\": null\r\n },\r\n \"session\": {\r\n \"id\": null\r\n },\r\n \"user\": {\r\n \"id\": null,\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"azwapc:2.5.0-33031\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.112.216.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:57:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Requests.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Requests.json deleted file mode 100644 index 17a033f81947..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Requests.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzP3RpbWVzcGFuPVBUMTJIJiR0b3A9MTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "20ce7401-a4e9-415d-9c19-d0e48006ef3e" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f461-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"tVSdkaXhdHc=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 3.0414,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|tVSdkaXhdHc=.1eb694b6_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f460-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"rhP6IjNSN5o=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Customers/Details\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Customers/Details/8469\",\r\n \"success\": \"False\",\r\n \"duration\": 1260.9052,\r\n \"performanceBucket\": \"1sec-3sec\",\r\n \"resultCode\": \"500\",\r\n \"source\": null,\r\n \"id\": \"|rhP6IjNSN5o=.1eb694b5_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f45f-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.355Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"QlGmdhUwlAo=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 669.2065,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|QlGmdhUwlAo=.1eb694b4_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e8cc381-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.704Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"L0NYaQesLCQ=\",\r\n \"parentId\": \"L0NYaQesLCQ=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 2.9867,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|L0NYaQesLCQ=.1eb694b3_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca5-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.353Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"xtXUIM2Tbr8=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3533,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|xtXUIM2Tbr8=.c43fd182_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b85-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:26.151Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"jSTTc8xGcsg=\",\r\n \"parentId\": \"jSTTc8xGcsg=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 12.0485,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|jSTTc8xGcsg=.1eb694b2_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca4-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.023Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"F/r1noB4Jx0=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3855,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|F/r1noB4Jx0=.c43fd181_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b84-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:12.706Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"/4+vZEyg+3g=\",\r\n \"parentId\": \"/4+vZEyg+3g=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"094b5c0d-a8c4-4059-ae00-f41f3816c94a\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_094b5c0d-a8c4-4059-ae00-f41f3816c94a\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 667.682,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|/4+vZEyg+3g=.1eb694b1_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b184b83-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:04.97Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Home/Index\",\r\n \"id\": \"GMtGO1NBT7I=\",\r\n \"parentId\": \"GMtGO1NBT7I=\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Home/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/\",\r\n \"success\": \"True\",\r\n \"duration\": 664.708,\r\n \"performanceBucket\": \"500ms-1sec\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|GMtGO1NBT7I=.1eb694b0_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b45-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.195Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"c42lrvdqyQk=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Employees/Create\",\r\n \"url\": \"http://aiconnect2.cloudapp.net/FabrikamProd/Employees/Create\",\r\n \"success\": \"False\",\r\n \"duration\": 1.3542,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"404\",\r\n \"source\": null,\r\n \"id\": \"|c42lrvdqyQk=.c43fd180_\"\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:31 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.96febf84-fb37-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/requests/b222f461-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3JlcXVlc3RzL2IyMjJmNDYxLWZiYmYtMTFlNy04MmJkLTQxMzBhMWM4MDExOT90aW1lc3Bhbj1QVDEySA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "36ad667e-57fd-4727-9392-b1fb0924cb03" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/requests/$metadata#requests\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f461-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"request\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": {\r\n \"_MS.ProcessedByMetricExtractors\": \"(Name:'Requests', Ver:'1.0')\"\r\n },\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"tVSdkaXhdHc=\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"web:2.5.0-33031\"\r\n },\r\n \"request\": {\r\n \"name\": \"GET Reports/Index\",\r\n \"url\": \"http://fabrikamfiberapp.azurewebsites.net/Reports\",\r\n \"success\": \"True\",\r\n \"duration\": 3.0414,\r\n \"performanceBucket\": \"<250ms\",\r\n \"resultCode\": \"200\",\r\n \"source\": null,\r\n \"id\": \"|tVSdkaXhdHc=.1eb694b6_\"\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:32 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.e2724348-fbb9-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Traces.json b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Traces.json deleted file mode 100644 index 80efb135cca8..000000000000 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/SessionRecords/Data.ApplicationInsights.Tests.ScenarioTests.Events.EventsExtensionTests/GetEventsAsync.Traces.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces?timespan=PT12H&$top=10", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcz90aW1lc3Bhbj1QVDEySCYkdG9wPTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "6841a0df-0f05-4c94-818a-bc8532473d6e" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f452-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"|tVSdkaXhdHc=.1eb694b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f451-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:12.965Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Customers/Details/8469\",\r\n \"id\": \"rhP6IjNSN5o=\",\r\n \"parentId\": \"|rhP6IjNSN5o=.1eb694b5_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"65a9a6b5-b639-4892-a0c2-73fce037782b\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_65a9a6b5-b639-4892-a0c2-73fce037782b\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"b222f450-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:10.355Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"QlGmdhUwlAo=\",\r\n \"parentId\": \"|QlGmdhUwlAo=.1eb694b4_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"9a78c107-1d2e-4781-b1c8-e60b0daa5822\"\r\n },\r\n \"user\": {\r\n \"id\": \"apac-sg-sin-azr_9a78c107-1d2e-4781-b1c8-e60b0daa5822\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.187.30.0\",\r\n \"city\": \"Singapore\",\r\n \"stateOrProvince\": \"Central Singapore Community Development Council\",\r\n \"countryOrRegion\": \"Singapore\"\r\n }\r\n },\r\n {\r\n \"id\": \"9e8cc380-fbbf-11e7-8b10-571b7b648c56\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.704Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"L0NYaQesLCQ=\",\r\n \"parentId\": \"|L0NYaQesLCQ=.1eb694b3_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"aed414e6-ff7b-496b-ae34-a546ccda0ddb\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_aed414e6-ff7b-496b-ae34-a546ccda0ddb\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.176.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca1-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:37.353Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"xtXUIM2Tbr8=\",\r\n \"parentId\": \"|xtXUIM2Tbr8=.c43fd182_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"5560760a-6f1a-475f-b5c0-7a0f26d7e523\"\r\n },\r\n \"user\": {\r\n \"id\": \"latam-br-gru-edge_5560760a-6f1a-475f-b5c0-7a0f26d7e523\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"191.232.172.0\",\r\n \"city\": \"Campinas\",\r\n \"stateOrProvince\": \"Sao Paulo\",\r\n \"countryOrRegion\": \"Brazil\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da83-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:26.151Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"jSTTc8xGcsg=\",\r\n \"parentId\": \"|jSTTc8xGcsg=.1eb694b2_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"53104c4e-1e73-4d46-af0c-f4cad6946df0\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-tx-sn1-azr_53104c4e-1e73-4d46-af0c-f4cad6946df0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"13.84.176.0\",\r\n \"city\": \"San Antonio\",\r\n \"stateOrProvince\": \"Texas\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"9706cca0-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:25.024Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"F/r1noB4Jx0=\",\r\n \"parentId\": \"|F/r1noB4Jx0=.c43fd181_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"352442e6-441d-46d6-8d7c-59c81bf69da0\"\r\n },\r\n \"user\": {\r\n \"id\": \"emea-ru-msa-edge_352442e6-441d-46d6-8d7c-59c81bf69da0\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"51.140.105.0\",\r\n \"city\": \"London\",\r\n \"stateOrProvince\": \"England\",\r\n \"countryOrRegion\": \"United Kingdom\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da82-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:12.706Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"/4+vZEyg+3g=\",\r\n \"parentId\": \"|/4+vZEyg+3g=.1eb694b1_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"094b5c0d-a8c4-4059-ae00-f41f3816c94a\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_094b5c0d-a8c4-4059-ae00-f41f3816c94a\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.215.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n },\r\n {\r\n \"id\": \"8b15da81-fbbf-11e7-9433-571540014357\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:04.97Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /\",\r\n \"id\": \"GMtGO1NBT7I=\",\r\n \"parentId\": \"|GMtGO1NBT7I=.1eb694b0_\",\r\n \"syntheticSource\": \"Bot\"\r\n },\r\n \"session\": {\r\n \"id\": \"\"\r\n },\r\n \"user\": {\r\n \"id\": \"\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"0.0.0.0\",\r\n \"city\": \"\",\r\n \"stateOrProvince\": \"\",\r\n \"countryOrRegion\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"78222b41-fbbf-11e7-a8db-f760734b2971\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:49:02.195Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /FabrikamProd/Employees/Create\",\r\n \"id\": \"c42lrvdqyQk=\",\r\n \"parentId\": \"|c42lrvdqyQk=.c43fd180_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"777c2db9-0890-4c79-ba3f-975fc0d05c71\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-fl-mia-edge_777c2db9-0890-4c79-ba3f-975fc0d05c71\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"\",\r\n \"roleInstance\": \"AIConnect2\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"52.173.244.0\",\r\n \"city\": \"Des Moines\",\r\n \"stateOrProvince\": \"Iowa\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:29 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.e74872b8-fb36-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/v1/apps/DEMO_APP/events/traces/b222f452-fbbf-11e7-82bd-4130a1c80119?timespan=PT12H", - "EncodedRequestUri": "L3YxL2FwcHMvREVNT19BUFAvZXZlbnRzL3RyYWNlcy9iMjIyZjQ1Mi1mYmJmLTExZTctODJiZC00MTMwYTFjODAxMTk/dGltZXNwYW49UFQxMkg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-api-key": [ - "DEMO_KEY" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.ApplicationInsights.ApplicationInsightsDataClient/0.9.0.0" - ], - "prefer": [ - "response-v1=true" - ], - "x-ms-app": [ - "csharpsdk" - ], - "x-ms-client-request-id": [ - "6cfd57d1-70c4-46c9-9fe6-dadeafc5fbeb" - ] - }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://api.applicationinsights.io/v1/apps/DEMO_APP/events/traces/$metadata#traces\",\r\n \"value\": [\r\n {\r\n \"id\": \"b222f452-fbbf-11e7-82bd-4130a1c80119\",\r\n \"type\": \"trace\",\r\n \"count\": 1,\r\n \"timestamp\": \"2018-01-17T19:50:37.018Z\",\r\n \"customDimensions\": null,\r\n \"customMeasurements\": null,\r\n \"operation\": {\r\n \"name\": \"GET /Reports\",\r\n \"id\": \"tVSdkaXhdHc=\",\r\n \"parentId\": \"|tVSdkaXhdHc=.1eb694b6_\",\r\n \"syntheticSource\": \"Application Insights Availability Monitoring\"\r\n },\r\n \"session\": {\r\n \"id\": \"c33fb890-54bb-4a74-b87a-57b8393e6f80\"\r\n },\r\n \"user\": {\r\n \"id\": \"us-ca-sjc-azr_c33fb890-54bb-4a74-b87a-57b8393e6f80\",\r\n \"accountId\": null,\r\n \"authenticatedId\": null\r\n },\r\n \"cloud\": {\r\n \"roleName\": \"fabrikamfiberapp\",\r\n \"roleInstance\": \"RD00155D467E8D\"\r\n },\r\n \"ai\": {\r\n \"iKey\": \"5a2e4e0c-e136-4a15-9824-90ba859b0a89\",\r\n \"appName\": \"fabrikamprod\",\r\n \"appId\": \"cf58dcfd-0683-487c-bc84-048789bca8e5\",\r\n \"sdkVersion\": \"sd:2.4.1-442\"\r\n },\r\n \"trace\": {\r\n \"message\": \"New Request Received\",\r\n \"severityLevel\": 0\r\n },\r\n \"application\": {\r\n \"version\": \"AutoGen_49c3aea0-4641-4675-93b5-55f7a62d22d3\"\r\n },\r\n \"client\": {\r\n \"model\": null,\r\n \"os\": null,\r\n \"type\": \"PC\",\r\n \"browser\": null,\r\n \"ip\": \"40.83.189.0\",\r\n \"city\": \"San Jose\",\r\n \"stateOrProvince\": \"California\",\r\n \"countryOrRegion\": \"United States\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8; ieee754compatible=false; odata.metadata=none; odata.streaming=false" - ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Wed, 17 Jan 2018 19:54:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Via": [ - "1.1 draft-ai-blue.a74bfc44-fb36-11e7-a5b2-70b3d5800008" - ], - "Server": [ - "nginx" - ], - "Vary": [ - "Accept", - "Accept-Encoding" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Expose-Headers": [ - "Retry-After,Age,WWW-Authenticate" - ], - "OData-Version": [ - "4.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": {} -} \ No newline at end of file From a5eec257ae5a3bc4aeff310765198e4b6a3d3873 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Mon, 24 Sep 2018 16:05:39 -0700 Subject: [PATCH 3/6] version fix --- .../Microsoft.Azure.ApplicationInsights.Query.csproj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj index b094d633debb..12ac34c6961d 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj @@ -5,8 +5,7 @@ Microsoft Azure Application Insights Data Library - 1.0.0.0 - Preview-1 + 0.10.0-preview Microsoft.Azure.ApplicationInsights.Query Microsoft.Azure.ApplicationInsights.Query ApplicationInsights; @@ -15,7 +14,6 @@ net452;netstandard1.4 Microsoft.Azure.ApplicationInsights.Query - 1.0.0-Preview-1 From a8b33e727fa7f65fb806cd6bafd08767ed78f50b Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Tue, 25 Sep 2018 15:15:47 -0700 Subject: [PATCH 4/6] revert version for new package --- .../Microsoft.Azure.ApplicationInsights.Query.csproj | 2 +- .../DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj index 12ac34c6961d..2e59ae8b03e2 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Microsoft.Azure.ApplicationInsights.Query.csproj @@ -5,7 +5,7 @@ Microsoft Azure Application Insights Data Library - 0.10.0-preview + 0.9.0-preview Microsoft.Azure.ApplicationInsights.Query Microsoft.Azure.ApplicationInsights.Query ApplicationInsights; diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs index ff0f02a7fca6..280c58c6cca2 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Application Insights Data Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Application Insights data plane query operations operations.")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] From 6c082dd0c86fa2e2bd9655a9c5cd2c2011ec7c48 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Fri, 28 Sep 2018 15:25:26 -0700 Subject: [PATCH 5/6] regenerate from master branch --- src/SDKs/_metadata/ApplicationInsights_data-plane.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SDKs/_metadata/ApplicationInsights_data-plane.txt b/src/SDKs/_metadata/ApplicationInsights_data-plane.txt index 662ebb1d50ac..796da7e731f2 100644 --- a/src/SDKs/_metadata/ApplicationInsights_data-plane.txt +++ b/src/SDKs/_metadata/ApplicationInsights_data-plane.txt @@ -1,9 +1,9 @@ -2018-09-23 01:55:41 UTC +2018-09-28 22:24:59 UTC 1) azure-rest-api-specs repository information -GitHub user: alexeldeib -Branch: modelAsString -Commit: 2cba8d29b4c8b4e518c46297f8f2f07560da43cb +GitHub user: Azure +Branch: master +Commit: 3f094a4eb44682f1608aaf836ca9ad8a8b15b6b9 2) AutoRest information Requested version: latest From 0a2320c9aca179d7839dd229b5c1a94a3888b446 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Fri, 28 Sep 2018 16:15:32 -0700 Subject: [PATCH 6/6] Fix version, treatWarningAsError, fix warnings, add docstrings --- .../ApplicationInsights/Customized/Events.cs | 76 +++++++++ .../Customized/EventsExtensions.cs | 161 +++++++++++++++++- .../ApplicationInsights/Customized/IEvents.cs | 80 +++++++++ .../Customized/IMetrics.cs | 16 ++ .../ApplicationInsights/Customized/Metrics.cs | 16 ++ .../Customized/MetricsExtensions.cs | 32 ++++ .../ApplicationInsights/Customized/Query.cs | 0 .../Data.ApplicationInsights.Tests.csproj | 3 +- .../Events/EventsExtensionTests.cs | 134 +++++++++++---- 9 files changed, 483 insertions(+), 35 deletions(-) delete mode 100644 src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs index b92dfe17000b..fc67d33f1455 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Events.cs @@ -89,6 +89,10 @@ public async Task>> GetTr /// /// Gets the data for a single trace event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -129,6 +133,10 @@ public async Task>> GetTr /// /// Executes an OData query for custom events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -199,6 +207,10 @@ public async Task>> /// /// Gets the data for a single custom event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -239,6 +251,10 @@ public async Task>> /// /// Executes an OData query for page view events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -309,6 +325,10 @@ public async Task>> /// /// Gets the data for a single page view event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -349,6 +369,10 @@ public async Task>> /// /// Executes an OData query for browser timing events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -419,6 +443,10 @@ public async Task /// /// Gets the data for a single browser timing event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -459,6 +487,10 @@ public async Task /// /// Executes an OData query for request events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -529,6 +561,10 @@ public async Task>> /// /// Gets the data for a single request event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -569,6 +605,10 @@ public async Task>> /// /// Executes an OData query for dependency events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -639,6 +679,10 @@ public async Task>> /// /// Gets the data for a single dependency event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -679,6 +723,10 @@ public async Task>> /// /// Executes an OData query for exception events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -749,6 +797,10 @@ public async Task>> /// /// Gets the data for a single exception event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -794,6 +846,10 @@ public async Task>> /// ISO8601 time period value. This timespan is applied in addition to /// any that are specified in the Odata expression. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// An expression used to filter the returned events /// @@ -859,6 +915,10 @@ public async Task /// Gets the data for a single availability result event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -899,6 +959,10 @@ public async Task /// Executes an OData query for performance counter events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -969,6 +1033,10 @@ public async Task /// Gets the data for a single performance counter event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1009,6 +1077,10 @@ public async Task /// Executes an OData query for custom metric events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1079,6 +1151,10 @@ public async Task> /// /// Gets the data for a single custom metric event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs index 54b5216db954..d905a85f5b2a 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/EventsExtensions.cs @@ -19,6 +19,10 @@ public partial class EventsExtensions /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -74,6 +78,10 @@ public static EventsResults GetTraceEvents(this IEvents opera /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -135,6 +143,10 @@ public static async Task> GetTraceEventsAsync( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -158,6 +170,10 @@ public static EventsResults GetTraceEvent(this IEvents operat /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -188,6 +204,10 @@ public static async Task> GetTraceEventAsync( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -243,6 +263,10 @@ public static EventsResults GetCustomEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -304,6 +328,10 @@ public static async Task> GetCustomEvents /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -327,6 +355,10 @@ public static EventsResults GetCustomEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -357,6 +389,10 @@ public static async Task> GetCustomEventA /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -412,6 +448,10 @@ public static EventsResults GetPageViewEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -473,6 +513,10 @@ public static async Task> GetPageViewEventsA /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -496,6 +540,10 @@ public static EventsResults GetPageViewEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -526,6 +574,10 @@ public static async Task> GetPageViewEventAs /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -581,6 +633,10 @@ public static EventsResults GetBrowserTimingEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -642,6 +698,10 @@ public static async Task> GetBrowserTim /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -665,6 +725,10 @@ public static EventsResults GetBrowserTimingEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -695,6 +759,10 @@ public static async Task> GetBrowserTim /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -750,6 +818,10 @@ public static EventsResults GetRequestEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -808,10 +880,13 @@ public static async Task> GetRequestEventsAsy /// /// Gets the data for a single request event /// - /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -835,6 +910,10 @@ public static EventsResults GetRequestEvent(this IEvents op /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -865,6 +944,10 @@ public static async Task> GetRequestEventAsyn /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -920,6 +1003,10 @@ public static EventsResults GetDependencyEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -981,6 +1068,10 @@ public static async Task> GetDependencyEve /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1004,6 +1095,10 @@ public static EventsResults GetDependencyEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1034,6 +1129,10 @@ public static async Task> GetDependencyEve /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1089,6 +1188,10 @@ public static EventsResults GetExceptionEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1150,6 +1253,10 @@ public static async Task> GetExceptionEvent /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1173,6 +1280,10 @@ public static EventsResults GetExceptionEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1203,6 +1314,10 @@ public static async Task> GetExceptionEvent /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1258,6 +1373,10 @@ public static EventsResults GetAvailabilityResul /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1319,6 +1438,10 @@ public static async Task> GetAvail /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1342,6 +1465,10 @@ public static EventsResults GetAvailabilityResul /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1372,6 +1499,10 @@ public static async Task> GetAvail /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1427,6 +1558,10 @@ public static EventsResults GetPerformanceCounte /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1488,6 +1623,10 @@ public static async Task> GetPerfo /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1511,6 +1650,10 @@ public static EventsResults GetPerformanceCounte /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1541,6 +1684,10 @@ public static async Task> GetPerfo /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1596,6 +1743,10 @@ public static EventsResults GetCustomMetricEvents( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -1657,6 +1808,10 @@ public static async Task> GetCustomMetri /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -1680,6 +1835,10 @@ public static EventsResults GetCustomMetricEvent( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs index 53606aa4f91c..d182a8a192db 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IEvents.cs @@ -14,6 +14,10 @@ public partial interface IEvents /// /// Executes an OData query for trace events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -68,6 +72,10 @@ Task>> GetTraceEventsWith /// /// Gets the data for a single trace event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -93,6 +101,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for custom events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -147,6 +159,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single custom event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -171,6 +187,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for page view events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -225,6 +245,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single page view event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -249,6 +273,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for browser timing events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -303,6 +331,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single browser timing event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -327,6 +359,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for request events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -381,6 +417,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single request event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -405,6 +445,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for dependency events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -459,6 +503,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single dependency event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -483,6 +531,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for exception events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -537,6 +589,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single exception event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -561,6 +617,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for availability result events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -614,6 +674,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single availability result event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -638,6 +702,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for performance counter events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -692,6 +760,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single performance counter event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// @@ -716,6 +788,10 @@ Task>> GetTraceEventWithH /// /// Executes an OData query for custom metric events /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// Optional. The timespan over which to retrieve events. This is an /// ISO8601 time period value. This timespan is applied in addition to @@ -770,6 +846,10 @@ Task>> GetTraceEventWithH /// /// Gets the data for a single custom metric event /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of event. /// diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs index ad07eedc4b47..6a724d8541aa 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/IMetrics.cs @@ -14,6 +14,10 @@ public partial interface IMetrics /// /// Gets summary metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -81,6 +85,10 @@ public partial interface IMetrics /// /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -165,6 +173,10 @@ Task> GetIntervaledMetricWithHttp /// /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -241,6 +253,10 @@ Task> GetSegmentedMetricWithHttpMe /// /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs index 757989fa8021..1ad12d500ebd 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Metrics.cs @@ -17,6 +17,10 @@ public partial class Metrics : IServiceOperations /// /// Gets summary metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -103,6 +107,10 @@ public partial class Metrics : IServiceOperations /// /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -212,6 +220,10 @@ public async Task> GetIntervaledM /// /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -335,6 +347,10 @@ private static IList GetSegmentInfo(IList /// Gets metric values for a single metric /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs index c14918990387..117d8f6ed295 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/MetricsExtensions.cs @@ -19,6 +19,10 @@ public partial class MetricsExtensions /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -86,6 +90,10 @@ public partial class MetricsExtensions /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -160,6 +168,10 @@ public partial class MetricsExtensions /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -245,6 +257,10 @@ public static MetricsIntervaledResult GetIntervaledMetric(this IMetrics operatio /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -335,6 +351,10 @@ public static async Task GetIntervaledMetricAsync(this /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -411,6 +431,10 @@ public static MetricsSegmentedResult GetSegmentedMetric(this IMetrics operations /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -493,6 +517,10 @@ public static async Task GetSegmentedMetricAsync(this IM /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: @@ -579,6 +607,10 @@ public static MetricsIntervaledSegmentedResult GetIntervaledSegmentedMetric( /// /// The operations group for this extension method. /// + /// + /// ID of the application. This is Application ID from the API Access settings + /// blade in the Azure portal. + /// /// /// ID of the metric. This is either a standard AI metric, or an /// application-specific custom metric. Possible values include: diff --git a/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs b/src/SDKs/ApplicationInsights/DataPlane/ApplicationInsights/Customized/Query.cs deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj index 4124231bc7bc..d0e338ba1a16 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/Data.ApplicationInsights.Tests.csproj @@ -4,7 +4,8 @@ Data.ApplicationInsights.Tests Data.ApplicationInsights.Tests Class library Data.ApplicationInsights.Tests - 1.0.0-preview + 1.0.0-preview + true diff --git a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs index 03a945c7ea69..55d376994610 100644 --- a/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs +++ b/src/SDKs/ApplicationInsights/DataPlane/Data.ApplicationInsights.Tests/ScenarioTests/Events/EventsExtensionTests.cs @@ -13,18 +13,17 @@ namespace Data.ApplicationInsights.Tests.ScenarioTests.Events public class EventsExtensionTests : EventsTestBase { [Theory] - [MemberData(nameof(TraceData))] - [MemberData(nameof(CustomEventsData))] - [MemberData(nameof(PageViewsData))] - [MemberData(nameof(BrowserTimingsData))] - [MemberData(nameof(RequestsData))] - [MemberData(nameof(DependenciesData))] - [MemberData(nameof(ExceptionsData))] - [MemberData(nameof(AvailabilityResultsData))] - [MemberData(nameof(PerformanceCountersData))] - [MemberData(nameof(CustomMetricsData))] - public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQueryAsync, SingleQueryAsync singleQueryAsync, - object unused1, object unused2) where T : EventsResultData + [MemberData(nameof(TraceDataAsync))] + [MemberData(nameof(CustomEventsDataAsync))] + [MemberData(nameof(PageViewsDataAsync))] + [MemberData(nameof(BrowserTimingsDataAsync))] + [MemberData(nameof(RequestsDataAsync))] + [MemberData(nameof(DependenciesDataAsync))] + [MemberData(nameof(ExceptionsDataAsync))] + [MemberData(nameof(AvailabilityResultsDataAsync))] + [MemberData(nameof(PerformanceCountersDataAsync))] + [MemberData(nameof(CustomMetricsDataAsync))] + public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQueryAsync, SingleQueryAsync singleQueryAsync) where T : EventsResultData { using (var ctx = MockContext.Start(GetType().FullName, $"GetByTypeAsync.{eventType}")) { @@ -68,8 +67,7 @@ public async Task GetEventsAsync(string eventType, MultiQueryAsync multiQu [MemberData(nameof(AvailabilityResultsData))] [MemberData(nameof(PerformanceCountersData))] [MemberData(nameof(CustomMetricsData))] - public void GetByType(string eventType, object unused1, object unused2, - MultiQuery multiQuery, SingleQuery singleQuery) where T : EventsResultData + public void GetByType(string eventType, MultiQuery multiQuery, SingleQuery singleQuery) where T : EventsResultData { using (var ctx = MockContext.Start(GetType().FullName, $"GetByType.{eventType}")) { @@ -108,11 +106,79 @@ public void GetByType(string eventType, object unused1, object unused2, public delegate EventsResults MultiQuery(ApplicationInsightsDataClient client, string timespan, int top) where T : EventsResultData; public delegate EventsResults SingleQuery(ApplicationInsightsDataClient client, string id, string timespan) where T : EventsResultData; - private static readonly object[] TraceParams = new object[] + private static readonly object[] TraceParamsAsync = new object[] { EventType.Traces, new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetTraceEventsAsync(DefaultAppId, timespan, top: top)), new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetTraceEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] CustomEventsParamsAsync = new object[] + { + EventType.CustomEvents, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] PageViewsParamsAsync = new object[] + { + EventType.PageViews, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPageViewEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPageViewEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] BrowserTimingsParamsAsync = new object[] + { + EventType.BrowserTimings, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetBrowserTimingEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetBrowserTimingEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] RequestsParamsAsync = new object[] + { + EventType.Requests, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetRequestEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetRequestEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] DependenciesParamsAsync = new object[] + { + EventType.Dependencies, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetDependencyEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetDependencyEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] ExceptionsParamsAsync = new object[] + { + EventType.Exceptions, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetExceptionEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetExceptionEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] AvailabilityResultsParamsAsync = new object[] + { + EventType.AvailabilityResults, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetAvailabilityResultEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetAvailabilityResultEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] PerformanceCountersParamsAsync = new object[] + { + EventType.PerformanceCounters, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPerformanceCounterEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPerformanceCounterEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] CustomMetricsParamsAsync = new object[] + { + EventType.CustomMetrics, + new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomMetricEventsAsync(DefaultAppId, timespan, top: top)), + new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomMetricEventAsync(DefaultAppId, id, timespan)), + }; + + private static readonly object[] TraceParams = new object[] + { + EventType.Traces, new MultiQuery((client, timespan, top) => client.Events.GetTraceEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetTraceEvent(DefaultAppId, id, timespan)), }; @@ -120,8 +186,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] CustomEventsParams = new object[] { EventType.CustomEvents, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetCustomEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetCustomEvent(DefaultAppId, id, timespan)), }; @@ -129,8 +193,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] PageViewsParams = new object[] { EventType.PageViews, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPageViewEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPageViewEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetPageViewEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetPageViewEvent(DefaultAppId, id, timespan)), }; @@ -138,8 +200,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] BrowserTimingsParams = new object[] { EventType.BrowserTimings, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetBrowserTimingEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetBrowserTimingEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetBrowserTimingEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetBrowserTimingEvent(DefaultAppId, id, timespan)), }; @@ -147,8 +207,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] RequestsParams = new object[] { EventType.Requests, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetRequestEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetRequestEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetRequestEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetRequestEvent(DefaultAppId, id, timespan)), }; @@ -156,8 +214,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] DependenciesParams = new object[] { EventType.Dependencies, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetDependencyEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetDependencyEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetDependencyEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetDependencyEvent(DefaultAppId, id, timespan)), }; @@ -165,8 +221,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] ExceptionsParams = new object[] { EventType.Exceptions, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetExceptionEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetExceptionEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetExceptionEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetExceptionEvent(DefaultAppId, id, timespan)), }; @@ -174,8 +228,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] AvailabilityResultsParams = new object[] { EventType.AvailabilityResults, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetAvailabilityResultEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetAvailabilityResultEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetAvailabilityResultEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetAvailabilityResultEvent(DefaultAppId, id, timespan)), }; @@ -183,8 +235,6 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] PerformanceCountersParams = new object[] { EventType.PerformanceCounters, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetPerformanceCounterEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetPerformanceCounterEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetPerformanceCounterEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetPerformanceCounterEvent(DefaultAppId, id, timespan)), }; @@ -192,12 +242,30 @@ public void GetByType(string eventType, object unused1, object unused2, private static readonly object[] CustomMetricsParams = new object[] { EventType.CustomMetrics, - new MultiQueryAsync(async (client, timespan, top) => await client.Events.GetCustomMetricEventsAsync(DefaultAppId, timespan, top: top)), - new SingleQueryAsync(async (client, id, timespan) => await client.Events.GetCustomMetricEventAsync(DefaultAppId, id, timespan)), new MultiQuery((client, timespan, top) => client.Events.GetCustomMetricEvents(DefaultAppId, timespan, top: top)), new SingleQuery((client, id, timespan) => client.Events.GetCustomMetricEvent(DefaultAppId, id, timespan)), }; + public static IEnumerable TraceDataAsync { get { yield return TraceParamsAsync; } } + + public static IEnumerable CustomEventsDataAsync { get { yield return CustomEventsParamsAsync; } } + + public static IEnumerable PageViewsDataAsync { get { yield return PageViewsParamsAsync; } } + + public static IEnumerable BrowserTimingsDataAsync { get { yield return BrowserTimingsParamsAsync; } } + + public static IEnumerable RequestsDataAsync { get { yield return RequestsParamsAsync; } } + + public static IEnumerable DependenciesDataAsync { get { yield return DependenciesParamsAsync; } } + + public static IEnumerable ExceptionsDataAsync { get { yield return ExceptionsParamsAsync; } } + + public static IEnumerable AvailabilityResultsDataAsync { get { yield return AvailabilityResultsParamsAsync; } } + + public static IEnumerable PerformanceCountersDataAsync { get { yield return PerformanceCountersParamsAsync; } } + + public static IEnumerable CustomMetricsDataAsync { get { yield return CustomMetricsParamsAsync; } } + public static IEnumerable TraceData { get { yield return TraceParams; } } public static IEnumerable CustomEventsData { get { yield return CustomEventsParams; } }