1

我在 Visual Studio 2010 中设置了负载测试,运行了几次,然后将数据导出到 SQL 数据库中。这应该是这样做的典型方式。它有所有这些标准表:

http://blogs.msdn.com/b/billbar/archive/2006/02/10/what-is-the-data-in-the-vsts-load-test-results-store.aspx

我尝试在测试中查询特定 requestURI 的“第一个字节的时间”。

关于如何组合此查询的任何想法?实际存储的特定 URI 的“到第一个字节的时间”表在哪里?有没有列出这些负载测试数据库的常见查询的网站?

谢谢。

4

1 回答 1

1

我想我明白了:

/****** Script for SelectTopNRows command from SSMS  ******/
SELECT TOP 1000 [LoadTestRunId]
      ,[CounterId]
      ,[InstanceId]
      ,[LoadTestItemId]
      ,[InstanceName]
      ,[CumulativeValue]
      ,[OverallThresholdRuleResult]
  FROM [LoadTest2010].[dbo].[LoadTestPerformanceCounterInstance] where 
  LoadTestItemId = 12  -- The specific element in the web page I'm interested in
  and LoadTestRunId = 127 -- The specefic load test run I am using
  and CounterId = 78  -- The time to first byte metric
于 2012-08-24T14:00:42.700 回答