This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration to run against local mock
Signed-off-by: Aleksander Mistewicz <[email protected]>
- Loading branch information
1 parent
3dc9e3e
commit 34b5ba9
Showing
2 changed files
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
receivers: | ||
hubble: | ||
endpoint: http://localhost:4245 # unix:///var/run/cilium/hubble.sock | ||
buffer_size: 10 | ||
include_flow_types: | ||
traces: ["trace"] | ||
tls: | ||
insecure: true | ||
|
||
processors: | ||
batch: | ||
timeout: 30s | ||
send_batch_size: 20 | ||
|
||
exporters: | ||
logging: | ||
loglevel: debug | ||
|
||
service: | ||
pipelines: | ||
traces: | ||
receivers: [hubble] | ||
processors: [batch] | ||
exporters: [logging] |