Falcosidekick-ui
Description
A simple WebUI for displaying latest events from Falco. It works as output for Falcosidekick.
Usage
Options
-a string
Listen Address (default "0.0.0.0")
-p int
Listen Port (default 2802)
-r int
Number of events to keep in retention (default 200)
-d bool
Enable dark mode as default
Run with docker
docker run -d -p 2802:2802 falcosecurity/falcosidekick-ui
Run
git clone https://github.com/falcosecurity/falcosidekick-ui.git
cd ./falcosidekick-ui
go run main.go
#or
make falcosidekick-ui && ./falcosidekick-ui
Endpoint
The UI is reachable by default at http://localhost:2802/ui
.
Dark Mode
By default Falcosidekick UI uses the default light theme, you can change this behavior by using the -d
flag. The default is also based on the settings of your browser, if it uses dark mod, Falcosidekick UI does too. Regardless of the default settings, the theme can be changed at any time in the UI itself.
Development
Build
make falcosidekick-ui
Lint
make lint
Full lint:
make lint-full
Authors