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

BUGFIX: Graylog cannot parse log_timestamp #430

Merged
merged 20 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e1e4822
Return removed staging CA for letsenrypt
YuryHrytsuk Oct 17, 2023
9cf3b35
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 18, 2023
75f265d
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 18, 2023
36844af
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 19, 2023
df29509
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 19, 2023
6f287f8
Fix missing $
YuryHrytsuk Oct 19, 2023
a4bce3e
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 20, 2023
2cc4a0f
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 20, 2023
8e76378
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 25, 2023
8a0909c
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 27, 2023
fe11b06
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 30, 2023
574d5b2
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 31, 2023
9cc8368
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Oct 31, 2023
04f2ba0
Remove PAYMENTS_AUTORECHARGE_DEFAULT_MIN_BALANCE
YuryHrytsuk Oct 31, 2023
08a9c51
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Nov 3, 2023
0c3d6aa
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Nov 9, 2023
f6eda96
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Nov 10, 2023
42ea788
Merge remote-tracking branch 'upstream/main'
YuryHrytsuk Nov 13, 2023
612121e
Document Graylog overview
YuryHrytsuk Nov 13, 2023
5319a6d
Stop capturing traefik log_timestamp
YuryHrytsuk Nov 13, 2023
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
Binary file added services/graylog/GraylogWorkflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions services/graylog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ make up
make down
```

## Graylog workflow overview
![Graylog workflow overview](./GraylogWorkflow.png)

## Configuration for graylog - The Principles

1. Create a GELF UDP INPUT
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"v": "1",
"id": "dfaeea11-bde6-4203-9cfe-6ca2a23ca22e",
"rev": 41,
"rev": 42,
"name": "osparc-custom-content-pack-v2",
"summary": "osparc-custom-content-pack-v2",
"description": "",
Expand Down Expand Up @@ -668,7 +668,7 @@
"configuration": {
"grok_pattern": {
"@type": "string",
"@value": "time=\"%{TIMESTAMP_ISO8601:log_timestamp}\" level=%{WORD:log_level} msg=\"%{GREEDYDATA:log_msg}\""
"@value": "level=%{WORD:log_level} msg=\"%{GREEDYDATA:log_msg}\""
},
"named_captures_only": {
"@type": "boolean",
Expand Down