有什么方法可以在 Elmah 中以编程方式设置应用程序名称吗?

发布于 2024-07-06 13:59:30 字数 135 浏览 10 评论 0原文

我需要根据我在 Visual Studio 中使用的配置更改应用程序名称。 例如,如果我处于调试配置中,我希望应用程序名称在 Elmah_Error 表的应用程序字段中显示为“App_Debug”。 有人对这个有经验么? 或者还有其他方法可以做到吗?

I need to change the app name based on what configuration I'm using in Visual Studio. For example, if I'm in Debug configuration, I want the app name to show as 'App_Debug' in the Application field in the Elmah_Error table. Does anyone have any experience with this? Or is there another way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难如初 2024-07-13 13:59:30

现在这可以纯粹在标记中完成。 只需将 applicationName 属性添加到 web.config 文件的 部分中的 errorLog 元素即可。 示例:

<errorLog type="Elmah.SqlErrorLog, Elmah" 
    connectionStringName="connectionString" applicationName="myApp"  />

我已经对此进行了测试,它在记录异常时和通过 Elmah.axd 查看日志时都有效。

就OP而言,人们会想象它也可以通过编程方式设置,但我没有对此进行测试。 对于我和我来说,对于大多数情况,标记方法就足够了。

This can now be done purely in markup. Just add an applicationName attribute to the errorLog element in the <elmah> section of the web.config file. Example:

<errorLog type="Elmah.SqlErrorLog, Elmah" 
    connectionStringName="connectionString" applicationName="myApp"  />

I've tested this and it works both when logging an exception and when viewing the log via Elmah.axd.

In the case of the OP, one would imagine it can be set programatically too but I didn't test that. For me and I imagine for most scenarios the markup approach is sufficient.

冷心人i 2024-07-13 13:59:30

默认情况下,Elmah 使用 AppPool 的应用程序 GUID 作为默认应用程序名称。 当您查看通过其 HTTP 模块创建的 Web 界面时,它使用此键来识别 Elmah_Error 表中的错误。

今年早些时候,我的任务是为我的公司探索这一选择。 默认情况下,我找不到处理此问题的方法,因为 Elmah 从 ErrorLog.cs 文件中的 HttpRuntime.AppDomainAppId 中提取应用程序名称。 你可以用任何你想要的键来操纵它; 但是,这是 AppPool 的 GUID。

话虽如此,我能够操作 ErrorLog.cs 文件,将 Elmah 转变为可调用框架,而不是基于处理程序的框架,并允许我设置 ApplicationName。 我最终做的是修改 ErrorLog.cs 以包含一个允许我设置名称的属性,如下所示:

public virtual string ApplicationName
{
    get 
    {
        if (_applicationName == null) {  _applicationName = HttpRuntime.AppDomainAppId; }
        return _applicationName;
    }
    set { _applicationName = value; }
}

您可能需要做的是以不同的方式调整它并将 ApplicationName 设置为不为 HttpRuntime.AppDomainAppId 但是,而是从 web.config 中提取的值。 总而言之,这是可能的。 我这样做的方式增强了 ErrorLog.Log(ex) 方法,这样我就可以使用 Elmah 拥有一个超越 Web 应用程序的可调用框架。 回想起来,我希望我改用 app/web.config 方法。

在 Elmah 中更改应用程序名称时要记住一件事。 生成 /elmah/default.aspx 接口的 http 处理程序将不再工作。 我仍在努力寻找时间回到这样的地方; 但是,您可能需要在实施时考虑创建自定义界面。

By default, Elmah uses the AppPool's application GUID as the default application name. It uses this as the key to identify the errors in the Elmah_Error table when you look at the web interface that's created through it's HTTP Module.

I was tasked to explore this option for my company earlier this year. I couldn't find a way to manipulate this by default since Elmah pulls the application name from HttpRuntime.AppDomainAppId in the ErrorLog.cs file. You could manipulate it by whatever key you want; however, that is the AppPool's GUID.

With that said, I was able to manipulate the ErrorLog.cs file to turn Elmah into a callable framework instead of a handler based one and allow for me set the ApplicationName. What I ended up doing was modifying ErrorLog.cs to include a property that allowed me to set the name as below:

public virtual string ApplicationName
{
    get 
    {
        if (_applicationName == null) {  _applicationName = HttpRuntime.AppDomainAppId; }
        return _applicationName;
    }
    set { _applicationName = value; }
}

What you will probably need to do is adjust this differently and set the ApplicationName not to HttpRuntime.AppDomainAppId but, instead, a value pulled from the web.config. All in all, it's possible. The way I did it enhanced the ErrorLog.Log(ex) method so I could use Elmah has a callable framework beyond web applications. Looking back I wish I did the app/web.config approach instead.

One thing to keep in mind when changing the application name in Elmah. The http handler that generates the /elmah/default.aspx interface will no longer work. I'm still trying to find time to circle back around to such; however, you may need to look into creating a custom interface when implementing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文