同时检查多个URL的页面加载时间

本文关键字:加载 时间 URL 检查 | 更新日期: 2023-09-27 18:14:31

如果URL作为输入,我应该写什么c#代码来获取每个URL的页面加载时间?

如果可能的话,请提供给我链接到任何这样做的软件。

同时检查多个URL的页面加载时间

任何以多个URL作为输入并提供每个URL的页面加载时间的软件。

您想要测量第一个请求得到响应所需的时间,还是想要包括样式和外部脚本的下载以及客户端呈现?

第一个问题可以通过使用WebClient来解决。

WebClient client = new WebClient ();
// Add a user agent header in case the 
// requested URI contains a query.
client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
Stream data = client.OpenRead (@"your-url-here");
StreamReader reader = new StreamReader (data);
string s = reader.ReadToEnd();
stopwatch.Stop();
Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
data.Close();
reader.Close();

而对于后者,在表单上放置一个WebBrowser,并创建一个用于消费DocumentCompleted事件的方法:

// in your form declarations
Stopwatch _stopwatch = new Stopwatch();
String _url = @"your-url-here";
// in the button-click or whenever you want to start the test
_stopwatch.Start();
this.WebBrowser1.Navigate(_url);
// The DocumentCompled event handler
private void WebBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    if (e.Url == _url)
    {  
        _stopwatch.Stop();
        Console.WriteLine("Time elapsed: {0}", _stopwatch.Elapsed);
    }
}

如果我正确理解这个问题,那么Apache JMeter可以这样做:http://jmeter.apache.org/

它是可编写脚本的,并且您可以为负载测试设置各种场景。

试试这个

var URLs = new[] 
{ 
    "http://www.google.com", 
    "http://www.microsoft.com", 
    "http://www.slashdot.org"
};
var tasks = URLs.Select(
url => Task.Factory.StartNew(task => 
    {
        using (var client = new WebClient())
        {
            var t = (string)task;
        Stopwatch stopwatch = new Stopwatch();
        stopwatch.Start();
        String result = client.DownloadString(t);
        stopwatch.Stop();
            Console.WriteLine(String.Format("{0} = {1}", url, stopwatch.Elapsed));
        }
    }, url)
    ).ToArray();
    Task.WaitAll(tasks);

我得到

http://www.microsoft.com = 00:00:05.1784172 milliseconds
http://www.slashdot.org = 00:00:09.9922422 milliseconds
http://www.google.com = 00:00:10.8720623 milliseconds

我推荐YSlow,这是一个非常有用的检查网站性能的工具,YSlow

我相信您熟悉Web调试代理Fiddler。在Fiddler中有很多你不需要的东西(比如UI),但是他们提供了一个。net库,可以包含在你的项目中,它会给你所有你想要的http。

FiddlerCore目前作为。net类库提供可以被任何。net应用程序使用。FiddlerCore是专为在使用no运行的特殊用途应用程序中使用用户界面(例如测试自动化),或者是专门的UIFiddler插件不是一个合适的选择(例如WPF流量可视化)。

有一个示例应用程序包含在下载中,我在几分钟内修改,这将使您访问统计选项卡下提琴手UI中显示的相同信息。检查会话。在fiddlercore dll中的Timers对象中获取这些值。

ClientConnected: 15:03:05.017
ClientBeginRequest: 15:03:05.056
ClientDoneRequest: 15:03:05.076
确定网关:0ms
DNS查找:3ms
TCP/IP连接:20ms
HTTPS握手:0ms
ServerConnected: 15:03:05.151
FiddlerBeginRequest: 15:03:05.152
ServerGotRequest: 15:03:05.157
ServerBeginResponse: 15:03:05.292
ServerDoneResponse: 15:03:05.314
ClientBeginResponse: 15:03:05.331
ClientDoneResponse: 15:03:05.333
总运行时间:00:00:00.2770277

希望这对您有所帮助,您需要弄清楚如何创建自己的会话而不是使用代理,但这是产品的规定功能,应该不需要太多时间。

您将需要一个Stopwatch,以及WebClientWebRequest

我用这个来保持内部网站的活跃和测量/记录响应时间,一种保持活力的服务:

static void Main(string[] args)
{
    LoggingManager.ConfigureAtStartup();
    ErrorLogger.LogInformation("STARTED");
    try
    {
        if (args.Length < 1)
        {
            ErrorLogger.LogInformation("No parameters provided...");
            return;
        }
        int pingTimeoutMilliseconds = Convert.ToInt32(ConfigurationManager.AppSettings["pingTimeoutMilliseconds"]);
        var urls = args[0].Split(';');
        foreach (string url in urls)
        {
            if (string.IsNullOrWhiteSpace(url))
            {
                continue;
            }
            ErrorLogger.LogInformation(String.Format("Pinging url: {0}", url));
            using (var client = new WebClient())
            {
                client.Credentials = CredentialCache.DefaultCredentials;
                var stopW = new Stopwatch();
                stopW.Start();
                string result = client.DownloadString(url);
                var elapsed = stopW.ElapsedMilliseconds;
                stopW.Stop();
                if (elapsed > pingTimeoutMilliseconds)
                {
                    ErrorLogger.LogWarning(String.Format("{0} - took: {1} milliseconds to answer!", url, elapsed.ToString("N0")));
                    ErrorLogger.LogInformation(String.Format("Response was: {0} chars long", result.Length.ToString("n0")));
                }                        
            }
        }
    }
    catch(Exception exc)
    {
        ErrorLogger.LogError(exc);
    }
    finally
    {
        ErrorLogger.LogInformation("COMPLETED");
        LoggingManager.ShutdownOnExit();
    }
}

ErrorLogger是我在Log4Net周围做的一个小包装。