Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CLEF-Layout and ECS-Layout #251

Merged
merged 1 commit into from
Oct 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions config/layouts.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
{
"name": "Simple (plain text)",
"page": "TextLayout",
"page": "SimpleLayout",
"description": "Write events as plain text. The default layout when no Layout type is specified."
},
{
Expand Down Expand Up @@ -64,11 +64,27 @@
]
},
{
"name": "Gelf",
"name": "GELF JSON",
"page": "https://github.com/farzadpanahi/NLog.GelfLayout",
"description": "Write events to GELF JSON-format for GrayLog server.",
"description": "Write events to GELF JSON-format for GrayLog-server.",
"package": [
"NLog.GelfLayout"
]
},
{
"name": "CLEF JSON",
"page": "https://github.com/paulem/nlog-layouts-clef",
"description": "Write events in JSON using the Compact Log Event Format (CLEF) for Seq-server.",
"package": [
"NLog.Layouts.ClefJsonLayout"
]
},
{
"name": "Elastic JSON",
"page": "https://github.com/elastic/ecs-dotnet/tree/main/src/Elastic.CommonSchema.NLog",
"description": "Write events in JSON using Elastic Common Schema (ECS) for ElasticSearch-server.",
"package": [
"Elastic.CommonSchema.NLog"
]
}
]
Loading