-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1503 from criblio/fix-1502-env
Implement `fullGetEnv` function
- Loading branch information
Showing
16 changed files
with
180 additions
and
31 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
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,80 @@ | ||
metric: | ||
enable: true | ||
format: | ||
type: statsd | ||
statsdprefix: | ||
statsdmaxlen: 512 | ||
verbosity : 4 | ||
watch: | ||
- type: statsd | ||
- type: fs | ||
- type: net | ||
- type: http | ||
- type: dns | ||
- type: process | ||
transport: | ||
type: file | ||
path: "/tmp/metrics_bash.log" | ||
event: | ||
enable: true | ||
format: | ||
type: ndjson | ||
maxeventpersec: 10000 | ||
enhancefs: true | ||
watch: | ||
- type: file | ||
name: (\/logs?\/)|(\.log$)|(\.log[.\d]) # matches the filename | ||
value: .* # matches data read or written | ||
- type: console | ||
name: (stdout)|(stderr) # matches the output stream | ||
value: .* # matches data written | ||
allowbinary: true | ||
- type: net | ||
name: .* | ||
field: .* | ||
value: .* | ||
- type: fs | ||
name: .* | ||
field: .* | ||
value: .* | ||
- type: dns | ||
name: .* | ||
field: .* | ||
value: .* | ||
- type: http | ||
name: .* # event name; http.req or http.resp | ||
field: .* # matches field names; duration, http_status, etc | ||
value: .* # matches field values | ||
headers: # list of filters matched against header names | ||
transport: | ||
type: file | ||
path: "/tmp/event_bash.log" | ||
payload: | ||
enable: false | ||
dir: '/tmp' | ||
libscope: | ||
configevent: true | ||
summaryperiod : 10 | ||
commanddir : '/tmp' | ||
log: | ||
level: warning | ||
transport: | ||
type: file | ||
path: "/tmp/log_bash.log" | ||
buffer: line | ||
snapshot: | ||
coredump: false | ||
backtrace: false | ||
cribl: | ||
enable: false | ||
transport: | ||
type: edge | ||
host: 127.0.0.1 | ||
port: 10090 | ||
tls: | ||
enable: false | ||
validateserver: true | ||
cacertpath: '' | ||
tags: | ||
protocol: | ||
custom: |
Oops, something went wrong.