-
Find me on Mastodon @jrothmanshore@fosstodon.org
Twitter Updates
- @Delta My flight tomorrow was canceled. I keep pressing the "Find Other Flights" button, but it is stuck in a loop… twitter.com/i/web/status/1… 1 month ago
- @paramountplus count me among your very angry customers who are paying for commercial free but getting ads. Fix this or I will cancel! 1 year ago
- @onthemedia Love your show, haven't missed an episode in 10 years, but was shocked you didn't challenge @rsgexp whe… twitter.com/i/web/status/1… 1 year ago
- @SeeClickFix Is there a way to get a daily digest of updates instead of a separate email for each and every report in my area? 1 year ago
- @doteasy Is DotEasy down? We are unable to access our site or access our doteasy account. 1 year ago
What I’m Reading
Tags
- .NET
- advertising
- airplay
- akamai
- apple
- asp.net
- awk
- bluetooth
- books
- browser
- customer service
- cygwin
- debugging
- DNS
- e-commerce
- excel
- experiments
- family
- fitness
- formatting
- health
- home technology
- HTML
- html shortcuts
- iis
- iMovie
- iOS
- iPad
- iPhone
- ISP
- javascript
- jboss
- judaism
- lego
- legos
- localization
- location services
- marketing
- medical
- memcached
- methodology
- Microsoft
- mobile
- MS word
- net neutrality
- networking
- npr
- OSX
- OS X
- outlook
- parenting
- performance
- personal finance
- photography
- plumbing
- powershell
- privacy
- psychology
- routing
- security
- shabbat
- shortcuts
- social media
- sql
- sqlserver
- television
- tomcat
- toys
- tracking
- travel
- voip
- windows 7
- wireless
- Word
-
Recent Posts
- php-fpm 503 timeout error triggered by interrupted client connection
- Shortcut: Simple rubber strips to make a phone easier to hold without the bulk of a case
- Shortcut: Overcome cell network congestion by dropping to 4G
- If you travel frequently, take a look at Arro app for taxis
- Am I really saving money as a cord cutter?
Archives
- January 2023
- April 2017
- September 2016
- June 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
-
Join 753 other subscribers
RSS
Categories
Meta
-
Tag Archives: iis
A powershell script for running reverse lookups on many IP addresses at once
I often find myself looking at web logs when researching anomalous traffic on our servers. It’s not uncommon for a poorly written web scraper to come through the system and generate spurious errors, and I start looking at what IP … Continue reading
Posted in Uncategorized
Tagged akamai, debugging, DNS, iis, ISP, powershell, routing, tomcat
18 Comments
Performance: generate web traffic load using a powershell script
The other day, I found myself wanting a quick and dirty way to throw a controlled amount of load against a server for the purpose of tuning some thread settings. What I wanted was to simulate varying numbers of concurrent … Continue reading
Debugging: Use Fiddler and WebProxy to debug HttpWebRequest / HttpWebResponse issues in ASP.NET
We recently found ourselves debugging code that was making web requests to another server. If we hit the server manually in a web browser, it worked fine, but when we ran it through the code simulating the request using HttpWebRequest, … Continue reading
Performance: Yes, time-taken in IIS includes network time
I’ve written previously about many of the useful types of analysis you can perform using the time-taken field in your web logs. However, I would be remiss for not pointing out some limitations of the data it provides. When poring … Continue reading
Solved: ASP.NET Web Services using POST only work on localhost by default
This information isn’t exactly secret, but it took a bit of googling around to piece the answer together, so I wanted to share it in a more condensed form. We are in the process of migrating some legacy ASP … Continue reading
Kick off a Cygwin script from a windows bat file with a different working directory
I recently created a script that would pull the Tomcat log files from a group of web servers and then run my 95th percentile awk script to generate a summary of response times for the 100 most popular pages. I … Continue reading
Performance: Hyper-threading actually does boost server capacity
We recently noticed some odd behavior with one of our servers during a deployment. Several machines were removed from the traffic pool to receive updates, and during this time, the other machines were shouldering the extra load. We have significant … Continue reading
Performance: An awk script for computing 95th percentile times straight from web log files (IIS, Tomcat)
When analyzing performance, looking at 95th percentile response times is one of the most useful metrics. While the average can be a good indicator, it can be heavily skewed by lots of small requests or a few extremely long ones. … Continue reading
Performance Tuning: Visualize your web log performance data using Excel scatter plots
I’ve written previously about how to turn on time-taken values in web logs for IIS, Tomcat, and Apache. Armed with time-taken data, you can identify which are the slow pages in your system and decide where to focus your performance … Continue reading
Performance Tuning Tip: Turn on time-taken in your web logs (IIS, Apache, Tomcat) to identify performance hot spots
Everyone knows that the web logs generated by web servers like IIS, Apache, and Tomcat (JBOSS / Catalina) are a well-known goldmine of information. They allow you to track site usage, find content errors, gather browser statistics, and all sorts … Continue reading