-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v16] Add debug logging configuration and env option for eventhandler (…
…#43408) * Add debug logging configuration and env option for eventhandler * moved debug logger setting to highest level * fix helm test * remove unused variable setting * lint fix for eventhandler * drop EnableDebugLogging and use Debug only * line changes Co-authored-by: Edoardo Spadolini <[email protected]> --------- Co-authored-by: Steven Martin <[email protected]> Co-authored-by: Tiago Silva <[email protected]> Co-authored-by: Edoardo Spadolini <[email protected]>
- Loading branch information
1 parent
2be8ebe
commit e5e08f2
Showing
8 changed files
with
154 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
storage = "./storage" # Plugin will save its state here | ||
timeout = "10s" | ||
batch = 20 | ||
debug = true | ||
|
||
[forward.fluentd] | ||
cert = "testdata/fake-file" | ||
key = "testdata/fake-file" | ||
ca = "testdata/fake-file" | ||
url = "https://localhost:8888/test.log" | ||
session-url = "https://localhost:8888/session" | ||
|
||
[teleport] | ||
addr = "localhost:3025" | ||
identity = "testdata/fake-file" | ||
refresh.enabled = true | ||
refresh.interval = "2m" |