Skip to content

Commit d3264fb

Browse files
a few more fixes
1 parent ff21a50 commit d3264fb

9 files changed

+9
-11
lines changed

content/posts/2014-12-01-telemetry-initializers.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: "Telemetry Initializers"
44
date: 2014-12-01 21:07:47 -0800
55
comments: true
66
aliases: [/blog/2014/12/01/telemetry-initializers/]
7-
published: true
87
categories:
98
---
109
Application Insights .NET SDK has number of extensibility points. One of them is called telemetry initializer. Telemetry initializer is a class implementing ITelemetryInitializer interface. The only method of this interface "Initialize" is called whenever a TraceFoo method is called for one of telemetry data items (Event, Metric, Request, Exception, etc.).

content/posts/2014-12-02-tracking-static-content-with-application-insights-httpmodule.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: "tracking static content with Application Insights HttpModule"
44
date: 2014-12-02 12:01:01 -0800
55
comments: true
66
aliases: [/blog/2014/12/02/tracking-static-content-with-application-insights-httpmodule/]
7-
published: true
87
categories:
98
- Application Insights
109
---

content/posts/2015-01-02-integrated-this-blog-with-twitter.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "Integrated this blog with twitter"
44
date: 2015-01-02 21:44:37 -0800
55
comments: true
6-
aliases: [/blog/2015-01-02-integrated-this-blog-with-twitter/]
6+
aliases: [/blog/2015/01/02/integrated-this-blog-with-twitter/]
77
categories:
88
- setup
99
---

content/posts/2015-01-05-track-dependencies-in-console-application.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "track dependencies in console application"
44
date: 2015-01-05 20:28:50 +0200
55
comments: true
6-
aliases: [/blog/2015-01-05-track-dependencies-in-console-application/]
6+
aliases: [/blog/2015/01/05/track-dependencies-in-console-application/]
77
categories:
88
- Application Insights
99
---

content/posts/2015-02-02-collecting-performance-counters.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "Collecting performance counters"
44
date: 2015-02-02 08:18:47 -0800
55
comments: true
6-
aliases: [/blog/2015-02-02-collecting-performance-counters/]
6+
aliases: [/blog/2015/02/02/collecting-performance-counters/]
77
published: false
88
categories:
99
---

content/posts/2015-02-02-developer-mode.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "Developer Mode"
44
date: 2015-02-02 08:54:58 -0800
55
comments: true
6-
aliases: [/blog/2015-02-02-developer-mode/]
6+
aliases: [/blog/2015/02/02/developer-mode/]
77
categories:
88
- Application Insights
99
- troubleshooting

content/posts/2015-02-06-more-on-applicationinsights-dot-config.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "More on ApplicationInsights.config"
44
date: 2015-02-06 09:04:12 -0800
55
comments: true
6-
aliases: [/blog/2015-02-06-more-on-applicationinsights-dot-config/]
6+
aliases: [/blog/2015/02/06/more-on-applicationinsights-dot-config/]
77
categories:
88
- Application Insights
99
---

content/posts/2015-02-23-request-name-and-url.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "Request name and url"
44
date: 2015-02-23 09:08:55 -0800
55
comments: true
6-
aliases: [/blog/2015-02-23-request-name-and-url/]
6+
aliases: [/blog/2015/02/23/request-name-and-url/]
77
categories:
88
- Application Insights
99
---

content/posts/2018-09-26-filtering-bad-sampling-good.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ about all slow outgoing calls. You may also discover that while browsing Azure
150150
portal in many cases you will see examples of slow incoming requests with both -
151151
slow and fast requests collected.
152152

153-
![](../images/2018-09-26-filtering-bad-sampling-good/suggested-slow-request.png)
153+
![](/images/2018-09-26-filtering-bad-sampling-good/suggested-slow-request.png)
154154

155155
The reason for this is that adaptive sampling is using probability sampling
156156
algorithm to decide on sampling decision. If sampling score is lower than 20% -
@@ -162,7 +162,7 @@ interesting to analyze. This is why you will get many useful samples
162162
with all the details. When you scroll down or randomly will open examples - you
163163
will see many of them with slow dependency only collected.
164164

165-
![](../images/2018-09-26-filtering-bad-sampling-good/other-slow-request.png)
165+
![](/images/2018-09-26-filtering-bad-sampling-good/other-slow-request.png)
166166

167167
In a given conditions all collected fast requests will have the details on all
168168
the fast dependency calls. Again, browsing those may be useful.
@@ -185,7 +185,7 @@ calls that used to take 10 ms will start taking 200 ms - this change will be
185185
visible on chart even on 5% of telemetry. And it will likely be caught by smart
186186
detectors of Application Insights.
187187

188-
![](../images/2018-09-26-filtering-bad-sampling-good/count-gained-up.png)
188+
![](/images/2018-09-26-filtering-bad-sampling-good/count-gained-up.png)
189189

190190
Latency problems caused by multiple calls to the fast dependent service will be
191191
caught - there probably be examples of those in the collected 5%.

0 commit comments

Comments
 (0)