How can we help you today? How can we help you today?
Ben C

Activity overview

Latest activity by Ben C

Hi Jeff For reliability, SQL Monitor internally represents all times in UTC. This has several advantages: - Times from different servers can easily be compared with each other (as long as your clocks are synchronized!) - UTC does not have DST so there are no ambiguous times (when time repeats itself in the fall) or invalid times (when time jumps ahead in the spring) Unfortunately, some sources of data only give us local times, and we have to convert these to UTC before storing them. While UTC to local conversion always succeeds, local to UTC conversion will fail if the data source provides us with an invalid time. Most of the timestamped data we collect from SQL Server is subject to this conversion, including SQL Server error log events, job history, backup history, integrity check history, etc. For example, one of my SQL Server instances has a job which it says ran at 2010-28-03 01:00:00 (GMT Standard Time). However, this time never existed, as the clocks actually went from 00:59:59 to 02:00:00 on that date. When we encounter such data there are two approaches that we could take: either guess which of 00:59:59 and 02:00:00 SQL Server meant, or just drop the data. We currently just drop the data. This should not result in a permanent error, but there was a bug in the SQL Server error log reader in 2.2 that prevented us from reading further error log lines. The bug has already been fixed for 2.3, but it should correct itself when the error log cycles. This might be what happened to you. Does that make sense? Thanks Ben / comments
Hi Jeff For reliability, SQL Monitor internally represents all times in UTC. This has several advantages: - Times from different servers can easily be compared with each other (as long as your cloc...
0 votes
We try to account for the network latency in the clock skew measurement. Even so, as the default threshold is 15 seconds, it seems unlikely that network latency would contribute much to the skew. Thanks Ben / comments
We try to account for the network latency in the clock skew measurement. Even so, as the default threshold is 15 seconds, it seems unlikely that network latency would contribute much to the skew. T...
0 votes
Hi We do not collect any information from the Physical Disk counters. We currently have a bug open for excluding "HarddiskVolume1" from the overviews - is this the same system partition that you are seeing? Thanks Ben / comments
Hi We do not collect any information from the Physical Disk counters. We currently have a bug open for excluding "HarddiskVolume1" from the overviews - is this the same system partition that you ar...
0 votes