mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-07 04:22:32 +00:00
Co-authored-by: Lorenzo Fontana <lo@linux.com> Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
15 lines
187 B
Plaintext
15 lines
187 B
Plaintext
namespace profiler;
|
|
|
|
file_identifier "FPRO";
|
|
file_extension "fpro";
|
|
|
|
table Node {
|
|
func:string;
|
|
file:string;
|
|
line:int;
|
|
cycles:uint64;
|
|
childs:[Node];
|
|
}
|
|
|
|
root_type Node;
|