log4net 2.0.8 pattern for client ip address
I tried to log ip address of the incoming request. I tried following configuration but it does not working for me its log in as "DEBUG".
Global.aspx
void Application_BeginRequest(object sender, EventArgs e)
{
log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress;
}
RollingFileAppender
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%p{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
Log look like this
DEBUG 2018-11-20 06:22:50,328 [40] DEBUG Conference - loging successfully
log4net ip-address
add a comment |
I tried to log ip address of the incoming request. I tried following configuration but it does not working for me its log in as "DEBUG".
Global.aspx
void Application_BeginRequest(object sender, EventArgs e)
{
log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress;
}
RollingFileAppender
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%p{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
Log look like this
DEBUG 2018-11-20 06:22:50,328 [40] DEBUG Conference - loging successfully
log4net ip-address
add a comment |
I tried to log ip address of the incoming request. I tried following configuration but it does not working for me its log in as "DEBUG".
Global.aspx
void Application_BeginRequest(object sender, EventArgs e)
{
log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress;
}
RollingFileAppender
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%p{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
Log look like this
DEBUG 2018-11-20 06:22:50,328 [40] DEBUG Conference - loging successfully
log4net ip-address
I tried to log ip address of the incoming request. I tried following configuration but it does not working for me its log in as "DEBUG".
Global.aspx
void Application_BeginRequest(object sender, EventArgs e)
{
log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress;
}
RollingFileAppender
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%p{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
Log look like this
DEBUG 2018-11-20 06:22:50,328 [40] DEBUG Conference - loging successfully
log4net ip-address
log4net ip-address
asked Nov 20 '18 at 10:25
Shahid MajeedShahid Majeed
215
215
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Lowercase %p is a shortcut for %level.
To output a custom property, you should use uppercase %P
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%P{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
or the full keyword %property
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%property{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
More info at the Log4net reference.
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the%Pmarker, but to the value that gets assigned to theaddrentry viaRequest.UserHostAddress. Stuff for an other question.
– pfx
Nov 29 '18 at 21:08
Try to assign toLogicalThreadContextviaLogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.
– pfx
Nov 29 '18 at 21:18
|
show 6 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390922%2flog4net-2-0-8-pattern-for-client-ip-address%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Lowercase %p is a shortcut for %level.
To output a custom property, you should use uppercase %P
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%P{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
or the full keyword %property
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%property{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
More info at the Log4net reference.
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the%Pmarker, but to the value that gets assigned to theaddrentry viaRequest.UserHostAddress. Stuff for an other question.
– pfx
Nov 29 '18 at 21:08
Try to assign toLogicalThreadContextviaLogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.
– pfx
Nov 29 '18 at 21:18
|
show 6 more comments
Lowercase %p is a shortcut for %level.
To output a custom property, you should use uppercase %P
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%P{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
or the full keyword %property
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%property{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
More info at the Log4net reference.
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the%Pmarker, but to the value that gets assigned to theaddrentry viaRequest.UserHostAddress. Stuff for an other question.
– pfx
Nov 29 '18 at 21:08
Try to assign toLogicalThreadContextviaLogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.
– pfx
Nov 29 '18 at 21:18
|
show 6 more comments
Lowercase %p is a shortcut for %level.
To output a custom property, you should use uppercase %P
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%P{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
or the full keyword %property
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%property{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
More info at the Log4net reference.
Lowercase %p is a shortcut for %level.
To output a custom property, you should use uppercase %P
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%P{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
or the full keyword %property
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%property{addr} %date [%thread] %-5level %logger - %message%newline"/>
</layout>
More info at the Log4net reference.
edited Nov 21 '18 at 5:18
answered Nov 20 '18 at 18:27
pfxpfx
5,270121934
5,270121934
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the%Pmarker, but to the value that gets assigned to theaddrentry viaRequest.UserHostAddress. Stuff for an other question.
– pfx
Nov 29 '18 at 21:08
Try to assign toLogicalThreadContextviaLogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.
– pfx
Nov 29 '18 at 21:18
|
show 6 more comments
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the%Pmarker, but to the value that gets assigned to theaddrentry viaRequest.UserHostAddress. Stuff for an other question.
– pfx
Nov 29 '18 at 21:08
Try to assign toLogicalThreadContextviaLogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.
– pfx
Nov 29 '18 at 21:18
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Thank its work after change to %P
– Shahid Majeed
Nov 20 '18 at 22:15
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
Hi, As i am using BeginRequest method in global asax file to log the ip address of the incoming request. However its seems not working perfectly, because when multiple users interact with application and then different ip addresses logged in the file for same users. void Application_BeginRequest(object sender, EventArgs e) { log4net.ThreadContext.Properties["addr"] = Request.UserHostAddress; }
– Shahid Majeed
Nov 29 '18 at 21:01
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
85.24.130.107 2018-11-29 09:55:44,061 [44] DEBUG Conference - Gustav: Debit Token: 1688478159 ddReservations_SelectedIndexChanged end 213.136.59.97 2018-11-29 09:55:47,343 [9] DEBUG Conference - Gustav: Debit Token: 1688478159 btnSave_Click start
– Shahid Majeed
Nov 29 '18 at 21:02
Can't explain, but is not related to the
%P marker, but to the value that gets assigned to the addr entry via Request.UserHostAddress. Stuff for an other question.– pfx
Nov 29 '18 at 21:08
Can't explain, but is not related to the
%P marker, but to the value that gets assigned to the addr entry via Request.UserHostAddress. Stuff for an other question.– pfx
Nov 29 '18 at 21:08
Try to assign to
LogicalThreadContext via LogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.– pfx
Nov 29 '18 at 21:18
Try to assign to
LogicalThreadContext via LogicalThreadContext.Properties["addr"] = Request.UserHostAddress. Might be a thead reuse side effect.– pfx
Nov 29 '18 at 21:18
|
show 6 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390922%2flog4net-2-0-8-pattern-for-client-ip-address%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown