Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: falcosecurity/falco
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bafd11b924f9ad8e4789c9ee77efc7bf3f2cf147
Choose a base ref
..
head repository: falcosecurity/falco
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4c82a13070c1dafb13f8189380baf9ae82c9cf84
Choose a head ref
Showing with 5 additions and 5 deletions.
  1. +2 −2 cmake/modules/driver.cmake
  2. +2 −2 cmake/modules/falcosecurity-libs.cmake
  3. +1 −1 falco.yaml
4 changes: 2 additions & 2 deletions cmake/modules/driver.cmake
Original file line number Diff line number Diff line change
@@ -35,9 +35,9 @@ else()
# FALCOSECURITY_LIBS_VERSION. In case you want to test against another driver version (or
# branch, or commit) just pass the variable - ie., `cmake -DDRIVER_VERSION=dev ..`
if(NOT DRIVER_VERSION)
set(DRIVER_VERSION "2e1c5b68380eb00ab79e61f369a8bf95faab4968")
set(DRIVER_VERSION "1c4698b6b4bf59ac0a4adbc98f6ec1ca2fcead41")
set(DRIVER_CHECKSUM
"SHA256=2b7540e29f23b6719e1ecd434af434c965cc1a4cf07354b7d3e6fc4573af38c6"
"SHA256=ba79077bd21eacfc2b928489c6572bcf7b9065b82b8c933321cfd467d6350a1e"
)
endif()

4 changes: 2 additions & 2 deletions cmake/modules/falcosecurity-libs.cmake
Original file line number Diff line number Diff line change
@@ -42,9 +42,9 @@ else()
# version (or branch, or commit) just pass the variable - ie., `cmake
# -DFALCOSECURITY_LIBS_VERSION=dev ..`
if(NOT FALCOSECURITY_LIBS_VERSION)
set(FALCOSECURITY_LIBS_VERSION "2e1c5b68380eb00ab79e61f369a8bf95faab4968")
set(FALCOSECURITY_LIBS_VERSION "1c4698b6b4bf59ac0a4adbc98f6ec1ca2fcead41")
set(FALCOSECURITY_LIBS_CHECKSUM
"SHA256=2b7540e29f23b6719e1ecd434af434c965cc1a4cf07354b7d3e6fc4573af38c6"
"SHA256=ba79077bd21eacfc2b928489c6572bcf7b9065b82b8c933321cfd467d6350a1e"
)
endif()

2 changes: 1 addition & 1 deletion falco.yaml
Original file line number Diff line number Diff line change
@@ -575,7 +575,7 @@ rule_matching: first
#
# Falco utilizes tbb::concurrent_bounded_queue for handling outputs, and this parameter
# allows you to customize the queue capacity. Please refer to the official documentation:
# https://oneapi-src.github.io/oneTBB/main/tbb_userguide/Concurrent_Queue_Classes.html.
# https://uxlfoundation.github.io/oneTBB/main/tbb_userguide/Concurrent_Queue_Classes.html.
# On a healthy system with optimized Falco rules, the queue should not fill up.
# If it does, it is most likely happening due to the entire event flow being too slow,
# indicating that the server is under heavy load.