使用 siftingappender 或 gsiftingappender 访问 MDC 中的多个值

发布于 2024-11-11 10:13:51 字数 103 浏览 1 评论 0原文

我有一个 siftingappender,我用它作为 mdc 中的键来自定义文件附加程序。问题是我无法从配置中访问多个值。

有没有办法访问 MDC 中存在的 2 个或更多密钥?

I have a siftingappender that i use for a key in mdc to customize the file appenders. The problem is i cannot access multiple values from the configuration.

Is there a way to access 2 or more keys that exists in MDC?

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

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

发布评论

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

评论(1

怪我太投入 2024-11-18 10:13:51

我遇到了同样的问题,并且查看了该类,似乎不可能使用两个鉴别器键。我使用的解决方案是在“会话”的开头设置一个包含这些值的组合的属性:

String value1 = "a variable";
String username = "the username";
MDC.put("myDiscriminatingValue", value1 + username);

然后您只需将“myDiscriminatingValue”放入 logback.xml 作为判别值。

实现它的更优雅的方法是实现您自己的 Discriminator 类而不是 MDCBasedDicriminator。

I had the same problem, and looking at the class it appeared it wasn't possible to use two discriminator keys. The solution I used was then to set a property containing the combination of this values at the beginning of the "session" :

String value1 = "a variable";
String username = "the username";
MDC.put("myDiscriminatingValue", value1 + username);

and then you just have to put "myDiscriminatingValue" in logback.xml as a discriminating value.

A more elegant way to achieve it would be to implement your own Discriminator class instead of MDCBasedDicriminator.

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