1

我最近发现这篇文章: http ://coderjournal.com/2010/10/timing-the-execution-time-of-your-mvc-actions/

它显示了一个不错的小属性,您可以将其添加到您的Controller类中,它会创建一个秒表并将X-Runtime标题添加到结果中。

我一直在尝试添加类似于我的 WCF Rest 服务的东西,但到目前为止还无法弄清楚。关于如何在我的网络服务上实现类似的东西有什么建议吗?

4

1 回答 1

1

这是一个完美的地方。签出后锋利

然后,您可以创建一个类似的方面:

/// <summary>
/// Adds execution timing and automatic logging to the tagged method
/// </summary>
[Serializable]
public class MethodTimeAttribute : OnMethodBoundaryAspect
{
    private String MethodName { get; set; }
    private DateTime StartTime { get; set; }

    /// <summary>
    /// Method executed at build time. Initializes the aspect instance. After the execution
    /// of <see cref="CompileTimeInitialize"/>, the aspect is serialized as a managed 
    /// resource inside the transformed assembly, and deserialized at runtime.
    /// </summary>
    /// <param name="method">Method to which the current aspect instance 
    /// has been applied.</param>
    /// <param name="aspectInfo">Unused.</param>
    public override void CompileTimeInitialize(MethodBase method, AspectInfo aspectInfo)
    {
        MethodName = method.DeclaringType.FullName  "."  method.Name;
    }


    public override void OnEntry(MethodExecutionArgs args)
    {
        StartTime = DateTime.Now;
    }

    public override void OnExit(MethodExecutionArgs args)
    {
        Log.Debug(this, "Method {0} took {1} to execute", MethodName, DateTime.Now - StartTime);
    }
}

你所要做的就是像这样标记你的方法:

[MethodTime]
private void RunFor(TimeSpan runTime){
    // do stuff 
}

高级后期锐化功能需要许可证,但方法边界方面等简单功能是免费的。

虽然这不会测试您的 wcf 服务的任何网络边界,但它将测试您的服务实施时间。

如果您真的想要,您可以创建一些自定义行为并将其注入您的 WCF 链以测试时间,但在该阶段出现瓶颈的可能性非常小。更有可能的是您正在发送大量数据,因此速度很慢,或者您的实现速度很慢,所有这些都可以独立地在服务器端或客户端进行测试。

于 2012-09-04T20:24:05.890 回答