NXLOG how to merge multilines regex
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have a log like this:
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 245] csometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
I use nxlog to send this to kafka, what I want is to merge all lines with "WebContainer : 149" into one, and next line when this changes and so on.
regex multiline nxlog
add a comment |
I have a log like this:
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 245] csometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
I use nxlog to send this to kafka, what I want is to merge all lines with "WebContainer : 149" into one, and next line when this changes and so on.
regex multiline nxlog
add a comment |
I have a log like this:
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 245] csometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
I use nxlog to send this to kafka, what I want is to merge all lines with "WebContainer : 149" into one, and next line when this changes and so on.
regex multiline nxlog
I have a log like this:
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 149] sometihng sometihng
14:40:33.476 [WebContainer : 245] csometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
14:40:33.476 [WebContainer : 245] sometihng sometihng
I use nxlog to send this to kafka, what I want is to merge all lines with "WebContainer : 149" into one, and next line when this changes and so on.
regex multiline nxlog
regex multiline nxlog
asked Nov 22 '18 at 14:05
madimadi
7010
7010
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use the following regex to capture all the lines with a certain value:
/(.*[WebContainer : (d+)]s*(.*))+s+.*[WebContainer : 2]s(.*)+s+.*[WebContainer : 2]s(.*)+/g
The regex matches any number of any char up to '[WebContainer : ', then matches any number and a right Square bracket before matcing White Spaces.
Then it starts all over Again (a new line), only here it uses capturing Group 2 to specify the number. This is repeated on the third line.
Then replace the matches with :
$1$3$4
Now you will get one line per number, combining the 'sometihng' from each line.
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
add a comment |
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%2f53432723%2fnxlog-how-to-merge-multilines-regex%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
You can use the following regex to capture all the lines with a certain value:
/(.*[WebContainer : (d+)]s*(.*))+s+.*[WebContainer : 2]s(.*)+s+.*[WebContainer : 2]s(.*)+/g
The regex matches any number of any char up to '[WebContainer : ', then matches any number and a right Square bracket before matcing White Spaces.
Then it starts all over Again (a new line), only here it uses capturing Group 2 to specify the number. This is repeated on the third line.
Then replace the matches with :
$1$3$4
Now you will get one line per number, combining the 'sometihng' from each line.
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
add a comment |
You can use the following regex to capture all the lines with a certain value:
/(.*[WebContainer : (d+)]s*(.*))+s+.*[WebContainer : 2]s(.*)+s+.*[WebContainer : 2]s(.*)+/g
The regex matches any number of any char up to '[WebContainer : ', then matches any number and a right Square bracket before matcing White Spaces.
Then it starts all over Again (a new line), only here it uses capturing Group 2 to specify the number. This is repeated on the third line.
Then replace the matches with :
$1$3$4
Now you will get one line per number, combining the 'sometihng' from each line.
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
add a comment |
You can use the following regex to capture all the lines with a certain value:
/(.*[WebContainer : (d+)]s*(.*))+s+.*[WebContainer : 2]s(.*)+s+.*[WebContainer : 2]s(.*)+/g
The regex matches any number of any char up to '[WebContainer : ', then matches any number and a right Square bracket before matcing White Spaces.
Then it starts all over Again (a new line), only here it uses capturing Group 2 to specify the number. This is repeated on the third line.
Then replace the matches with :
$1$3$4
Now you will get one line per number, combining the 'sometihng' from each line.
You can use the following regex to capture all the lines with a certain value:
/(.*[WebContainer : (d+)]s*(.*))+s+.*[WebContainer : 2]s(.*)+s+.*[WebContainer : 2]s(.*)+/g
The regex matches any number of any char up to '[WebContainer : ', then matches any number and a right Square bracket before matcing White Spaces.
Then it starts all over Again (a new line), only here it uses capturing Group 2 to specify the number. This is repeated on the third line.
Then replace the matches with :
$1$3$4
Now you will get one line per number, combining the 'sometihng' from each line.
answered Nov 22 '18 at 14:27
Poul BakPoul Bak
5,49331233
5,49331233
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
add a comment |
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
This works for this particular case, but what if we don't know how many lines will the webcontainer: 123 will have (but a finite number). And forget about this something:)
– madi
Nov 22 '18 at 14:46
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
You can't add an unknown number of lines. Then it becomes multiple matches and can't be replaced with back references.
– Poul Bak
Nov 22 '18 at 14:50
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
If you want to add one line, you can add 's+.*[WebContainer : 2]s(.*)+' to the regex and '$5' to the replacement.
– Poul Bak
Nov 22 '18 at 14:51
add a comment |
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%2f53432723%2fnxlog-how-to-merge-multilines-regex%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