Skip to content

Commit

Permalink
update(integrations/logdna): update grpc output socket name
Browse files Browse the repository at this point in the history
Signed-off-by: John Gornowich <john.gornowich@progeny.net>
  • Loading branch information
John Gornowich committed Jan 22, 2024
1 parent 6f749e1 commit 0576b60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integrations/falco-phoenix-sidecar/sidecar.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def add_annotation_to_pod(pod_name, namespace, event_name):
max_num_of_events = os.environ.get('MAXIMUM_NUMBER_OF_EVENTS', "5")
annotation_key = os.environ.get('ANNOTATION_KEY', "phoenix.r6security.com/falcoevent")
logging.basicConfig(level=logging.INFO)
falco_client = falco.Client(endpoint="unix:///var/run/falco/falco.sock",
falco_client = falco.Client(endpoint="unix:///run/falco/falco.sock",
client_crt="/tmp/client.crt",
client_key="/tmp/client.key",
ca_root="/tmp/ca.crt")
Expand Down
2 changes: 1 addition & 1 deletion integrations/logdna/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Install falco. Configure it to output events over grpc unix socket.

```
# # (as root)
# chmod 777 /var/run/falco.sock
# chmod 777 /run/falco/falco.sock
```

Get a LogDNA injestion api key.
Expand Down
2 changes: 1 addition & 1 deletion integrations/logdna/falco-logdna.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
log.addHandler(test)

c = falco.Client(
endpoint="unix:///var/run/falco.sock",
endpoint="unix:///run/falco/falco.sock",
output_format=args.output_format,
)

Expand Down

0 comments on commit 0576b60

Please sign in to comment.