modules/timestamp: add $(format-date) template function#4202
Merged
Conversation
Contributor
|
No news file has been detected. Please write one, if applicable. |
20e4eef to
7791a6d
Compare
Collaborator
Author
|
Note to self, this should probably be $(format-date) to match date-parser() |
Contributor
|
Build FAILURE |
bb8a5da to
00f3ca0
Compare
$(format-date [options] format-string [timestamp]) $(format-date) takes a timestamp in the DATETIME representation and formats it according to an strftime() format string. The DATETIME representation in syslog-ng is a UNIX timestamp formatted as a decimal number, with an optional fractional part, where the seconds and the fraction of seconds are separated by a dot. If the timestamp argument is missing, the timestamp of the message is used. Options: --time-zone <TZstring> -- override timezone of the original timestamp Signed-off-by: Balazs Scheidler <bazsi77@gmail.com>
Signed-off-by: Balazs Scheidler <bazsi77@gmail.com>
00f3ca0 to
631e0b3
Compare
MrAnno
approved these changes
Jan 2, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
$(format-date [options] format-string [timestamp])
$(format-date) takes a timestamp in the DATETIME representation and formats it according to an strftime() format string. The DATETIME representation in syslog-ng is a UNIX timestamp formatted as a decimal number, with an optional fractional part, where the seconds and the fraction of seconds are separated by a dot.
If the timestamp argument is missing, the timestamp of the message is used.
Options:
--time-zone -- override timezone of the original timestamp
Signed-off-by: Balazs Scheidler bazsi77@gmail.com