mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Merge branch 'topic/christian/telemetry-make-bifs-primary'
* topic/christian/telemetry-make-bifs-primary: Telemetry framework: move BIFs to the primary-bif stage Minor comment tweaks for init-frameworks-and-bifs.zeek
This commit is contained in:
commit
66173633f4
23 changed files with 108 additions and 67 deletions
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
||||||
|
7.1.0-dev.423 | 2024-10-24 07:08:45 -0700
|
||||||
|
|
||||||
|
* Telemetry framework: move BIFs to the primary-bif stage (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
|
* Minor comment tweaks for init-frameworks-and-bifs.zeek (Christian Kreibich, Corelight)
|
||||||
|
|
||||||
7.1.0-dev.420 | 2024-10-23 05:49:31 -0700
|
7.1.0-dev.420 | 2024-10-23 05:49:31 -0700
|
||||||
|
|
||||||
* Update broker submodule (Christian Kreibich, Corelight)
|
* Update broker submodule (Christian Kreibich, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
7.1.0-dev.420
|
7.1.0-dev.423
|
||||||
|
|
|
@ -5,28 +5,10 @@
|
||||||
##! enabled by setting :zeek:see:`Telemetry::metrics_port`.
|
##! enabled by setting :zeek:see:`Telemetry::metrics_port`.
|
||||||
|
|
||||||
@load base/misc/version
|
@load base/misc/version
|
||||||
@load base/frameworks/cluster
|
@load base/bif/telemetry_functions.bif
|
||||||
|
|
||||||
@load base/frameworks/telemetry/options
|
|
||||||
|
|
||||||
module Telemetry;
|
module Telemetry;
|
||||||
|
|
||||||
# In a cluster configuration, open the port number for metrics
|
|
||||||
# from the cluster node configuration for exporting data to
|
|
||||||
# Prometheus.
|
|
||||||
#
|
|
||||||
# The manager node will also provide a ``/services.json`` endpoint
|
|
||||||
# for the HTTP Service Discovery system in Prometheus to use for
|
|
||||||
# configuration. This endpoint will include information for all of
|
|
||||||
# the other nodes in the cluster.
|
|
||||||
@if ( Cluster::is_enabled() )
|
|
||||||
redef Telemetry::metrics_endpoint_name = Cluster::node;
|
|
||||||
|
|
||||||
@if ( Cluster::local_node_metrics_port() != 0/unknown )
|
|
||||||
redef Telemetry::metrics_port = Cluster::local_node_metrics_port();
|
|
||||||
@endif
|
|
||||||
@endif
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
## Alias for a vector of label values.
|
## Alias for a vector of label values.
|
||||||
type labels_vector: vector of string;
|
type labels_vector: vector of string;
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
module Telemetry;
|
##! Configurable settings for the Telemetry framework.
|
||||||
|
##!
|
||||||
|
##! These reside separately from the main framework so that they can be loaded
|
||||||
|
##! in bare mode without all of the framework. This allows things like the
|
||||||
|
##! plugins.hooks test to see the options without needing the rest.
|
||||||
|
|
||||||
# This file contains the options for the Telemetry framework. These are kept
|
module Telemetry;
|
||||||
# separately so that they can be loaded in bare mode without loading all of
|
|
||||||
# the rest of the framework. This allows things like the plugins.hooks test
|
|
||||||
# to see the options without needing the rest.
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
## Address used to make metric data available to Prometheus scrapers via
|
## Address used to make metric data available to Prometheus scrapers via
|
||||||
|
@ -19,3 +20,23 @@ export {
|
||||||
## defaults to the name of the node in the cluster configuration.
|
## defaults to the name of the node in the cluster configuration.
|
||||||
const metrics_endpoint_name = "" &redef;
|
const metrics_endpoint_name = "" &redef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# When running a cluster, use the metrics port from the cluster node
|
||||||
|
# configuration for exporting data to Prometheus.
|
||||||
|
#
|
||||||
|
# The manager node will also provide a ``/services.json`` endpoint
|
||||||
|
# for the HTTP Service Discovery system in Prometheus to use for
|
||||||
|
# configuration. This endpoint will include information for all of
|
||||||
|
# the other nodes in the cluster.
|
||||||
|
|
||||||
|
# We do this here, and not in main.zeek, to avoid ordering issues when loading
|
||||||
|
# the telemetry and cluster frameworks. This applies even in bare mode, per
|
||||||
|
# init-frameworks-and-bifs.zeek: the cluster's metrics ports need to be available
|
||||||
|
# for the redefs to assign the correct values.
|
||||||
|
@if ( Cluster::is_enabled() )
|
||||||
|
redef Telemetry::metrics_endpoint_name = Cluster::node;
|
||||||
|
|
||||||
|
@if ( Cluster::local_node_metrics_port() != 0/unknown )
|
||||||
|
redef Telemetry::metrics_port = Cluster::local_node_metrics_port();
|
||||||
|
@endif
|
||||||
|
@endif
|
||||||
|
|
|
@ -5823,15 +5823,11 @@ export {
|
||||||
const flowbuffer_contract_threshold = 2 * 1024 * 1024 &redef;
|
const flowbuffer_contract_threshold = 2 * 1024 * 1024 &redef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@load base/bif/telemetry_functions.bif
|
||||||
|
@load base/bif/telemetry_types.bif
|
||||||
|
|
||||||
module Telemetry;
|
module Telemetry;
|
||||||
export {
|
export {
|
||||||
|
|
||||||
type MetricType: enum {
|
|
||||||
COUNTER,
|
|
||||||
GAUGE,
|
|
||||||
HISTOGRAM,
|
|
||||||
};
|
|
||||||
|
|
||||||
## Type that captures options used to create metrics.
|
## Type that captures options used to create metrics.
|
||||||
type MetricOpts: record {
|
type MetricOpts: record {
|
||||||
## The prefix (namespace) of the metric. Zeek uses the ``zeek``
|
## The prefix (namespace) of the metric. Zeek uses the ``zeek``
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
# Load these frameworks here because they use fairly deep integration with
|
# Load these frameworks here because they use fairly deep integration with
|
||||||
# BiFs and script-land defined types. They are also more likely to
|
# BiFs and script-land defined types. They are also more likely to
|
||||||
# make use of calling BIFs for variable initializations, and that
|
# call BIFs for variable initializations, and that can't be done
|
||||||
# can't be done until init-bare.zeek has been loaded completely (hence
|
# until init-bare.zeek has been loaded completely (hence this separate file).
|
||||||
# the separate file).
|
|
||||||
@load base/frameworks/logging
|
@load base/frameworks/logging
|
||||||
@load base/frameworks/broker
|
@load base/frameworks/broker
|
||||||
@load base/frameworks/supervisor
|
@load base/frameworks/supervisor
|
||||||
|
@ -13,6 +12,7 @@
|
||||||
@load base/frameworks/files
|
@load base/frameworks/files
|
||||||
@load base/frameworks/telemetry/options
|
@load base/frameworks/telemetry/options
|
||||||
|
|
||||||
|
# Load BiFs defined by built-in Zeek components.
|
||||||
@load base/bif
|
@load base/bif
|
||||||
|
|
||||||
# Load BiFs defined by plugins.
|
# Load BiFs defined by plugins.
|
||||||
|
|
|
@ -123,6 +123,11 @@ set(BIF_SRCS
|
||||||
strings.bif
|
strings.bif
|
||||||
types.bif
|
types.bif
|
||||||
zeek.bif
|
zeek.bif
|
||||||
|
# The script-layer telemetry API needs to be available to our own frameworks
|
||||||
|
# to allow them to add metrics, so we source it in early.
|
||||||
|
telemetry/telemetry_types.bif
|
||||||
|
telemetry/telemetry_consts.bif
|
||||||
|
telemetry/telemetry_functions.bif
|
||||||
# The packet analysis BIF is treated like other top-level BIFs because it's
|
# The packet analysis BIF is treated like other top-level BIFs because it's
|
||||||
# needed before parsing the packet protocol scripts, which happen very near
|
# needed before parsing the packet protocol scripts, which happen very near
|
||||||
# to the start of parsing.
|
# to the start of parsing.
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
#include "packet_analysis.bif.func_h"
|
#include "packet_analysis.bif.func_h"
|
||||||
#include "CPP-load.bif.func_h"
|
#include "CPP-load.bif.func_h"
|
||||||
#include "mmdb.bif.func_h"
|
#include "mmdb.bif.func_h"
|
||||||
|
#include "telemetry_functions.bif.func_h"
|
||||||
|
|
||||||
#include "zeek.bif.func_def"
|
#include "zeek.bif.func_def"
|
||||||
#include "communityid.bif.func_def"
|
#include "communityid.bif.func_def"
|
||||||
|
@ -64,6 +65,7 @@
|
||||||
#include "packet_analysis.bif.func_def"
|
#include "packet_analysis.bif.func_def"
|
||||||
#include "CPP-load.bif.func_def"
|
#include "CPP-load.bif.func_def"
|
||||||
#include "mmdb.bif.func_def"
|
#include "mmdb.bif.func_def"
|
||||||
|
#include "telemetry_functions.bif.func_def"
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
extern RETSIGTYPE sig_handler(int signo);
|
extern RETSIGTYPE sig_handler(int signo);
|
||||||
|
@ -1067,6 +1069,7 @@ void init_primary_bifs() {
|
||||||
#include "stats.bif.func_init"
|
#include "stats.bif.func_init"
|
||||||
#include "strings.bif.func_init"
|
#include "strings.bif.func_init"
|
||||||
#include "supervisor.bif.func_init"
|
#include "supervisor.bif.func_init"
|
||||||
|
#include "telemetry_functions.bif.func_init"
|
||||||
#include "zeek.bif.func_init"
|
#include "zeek.bif.func_init"
|
||||||
|
|
||||||
init_builtin_types();
|
init_builtin_types();
|
||||||
|
|
|
@ -203,9 +203,11 @@ static void bif_init_net_var() {
|
||||||
#include "packet_analysis.bif.netvar_init"
|
#include "packet_analysis.bif.netvar_init"
|
||||||
#include "reporter.bif.netvar_init"
|
#include "reporter.bif.netvar_init"
|
||||||
#include "supervisor.bif.netvar_init"
|
#include "supervisor.bif.netvar_init"
|
||||||
|
#include "telemetry_consts.bif.netvar_init"
|
||||||
}
|
}
|
||||||
|
|
||||||
static void init_bif_types() {
|
static void init_bif_types() {
|
||||||
|
#include "telemetry_types.bif.netvar_init"
|
||||||
#include "types.bif.netvar_init"
|
#include "types.bif.netvar_init"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,6 +216,8 @@ static void init_bif_types() {
|
||||||
#include "packet_analysis.bif.netvar_def"
|
#include "packet_analysis.bif.netvar_def"
|
||||||
#include "reporter.bif.netvar_def"
|
#include "reporter.bif.netvar_def"
|
||||||
#include "supervisor.bif.netvar_def"
|
#include "supervisor.bif.netvar_def"
|
||||||
|
#include "telemetry_consts.bif.netvar_def"
|
||||||
|
#include "telemetry_types.bif.netvar_def"
|
||||||
#include "types.bif.netvar_def"
|
#include "types.bif.netvar_def"
|
||||||
|
|
||||||
// Re-open the namespace now that the bif headers are all included.
|
// Re-open the namespace now that the bif headers are all included.
|
||||||
|
|
|
@ -105,4 +105,6 @@ extern void init_builtin_types();
|
||||||
#include "packet_analysis.bif.netvar_h"
|
#include "packet_analysis.bif.netvar_h"
|
||||||
#include "reporter.bif.netvar_h"
|
#include "reporter.bif.netvar_h"
|
||||||
#include "supervisor.bif.netvar_h"
|
#include "supervisor.bif.netvar_h"
|
||||||
|
#include "telemetry_consts.bif.netvar_h"
|
||||||
|
#include "telemetry_types.bif.netvar_h"
|
||||||
#include "types.bif.netvar_h"
|
#include "types.bif.netvar_h"
|
||||||
|
|
|
@ -2,10 +2,12 @@
|
||||||
|
|
||||||
#include "zeek/script_opt/ZAM/ZBody.h"
|
#include "zeek/script_opt/ZAM/ZBody.h"
|
||||||
|
|
||||||
|
#include "zeek/Conn.h"
|
||||||
#include "zeek/Desc.h"
|
#include "zeek/Desc.h"
|
||||||
#include "zeek/EventHandler.h"
|
#include "zeek/EventHandler.h"
|
||||||
#include "zeek/File.h"
|
#include "zeek/File.h"
|
||||||
#include "zeek/Frame.h"
|
#include "zeek/Frame.h"
|
||||||
|
#include "zeek/IPAddr.h"
|
||||||
#include "zeek/OpaqueVal.h"
|
#include "zeek/OpaqueVal.h"
|
||||||
#include "zeek/Overflow.h"
|
#include "zeek/Overflow.h"
|
||||||
#include "zeek/RE.h"
|
#include "zeek/RE.h"
|
||||||
|
|
|
@ -7,10 +7,10 @@ zeek_add_subdir_library(
|
||||||
Manager.cc
|
Manager.cc
|
||||||
Opaques.cc
|
Opaques.cc
|
||||||
ProcessStats.cc
|
ProcessStats.cc
|
||||||
Utils.cc
|
Utils.cc)
|
||||||
BIFS
|
|
||||||
consts.bif
|
# BIFs are loaded in src/CMakeLists.txt so they are available early on, to allow
|
||||||
telemetry.bif)
|
# our own frameworks to establish metrics in the script layer.
|
||||||
|
|
||||||
# We don't need to include the civetweb headers across the whole project, only
|
# We don't need to include the civetweb headers across the whole project, only
|
||||||
# here in the telemetry framework.
|
# here in the telemetry framework.
|
||||||
|
|
|
@ -7,10 +7,10 @@
|
||||||
#include <initializer_list>
|
#include <initializer_list>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
#include "zeek/NetVar.h"
|
||||||
#include "zeek/Span.h"
|
#include "zeek/Span.h"
|
||||||
#include "zeek/telemetry/MetricFamily.h"
|
#include "zeek/telemetry/MetricFamily.h"
|
||||||
#include "zeek/telemetry/Utils.h"
|
#include "zeek/telemetry/Utils.h"
|
||||||
#include "zeek/telemetry/telemetry.bif.h"
|
|
||||||
|
|
||||||
namespace zeek::telemetry {
|
namespace zeek::telemetry {
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
#include <initializer_list>
|
#include <initializer_list>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
#include "zeek/NetVar.h"
|
||||||
#include "zeek/Span.h"
|
#include "zeek/Span.h"
|
||||||
#include "zeek/telemetry/MetricFamily.h"
|
#include "zeek/telemetry/MetricFamily.h"
|
||||||
#include "zeek/telemetry/Utils.h"
|
#include "zeek/telemetry/Utils.h"
|
||||||
#include "zeek/telemetry/telemetry.bif.h"
|
|
||||||
|
|
||||||
namespace zeek::telemetry {
|
namespace zeek::telemetry {
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
#include <initializer_list>
|
#include <initializer_list>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
#include "zeek/NetVar.h"
|
||||||
#include "zeek/Span.h"
|
#include "zeek/Span.h"
|
||||||
#include "zeek/telemetry/MetricFamily.h"
|
#include "zeek/telemetry/MetricFamily.h"
|
||||||
#include "zeek/telemetry/Utils.h"
|
#include "zeek/telemetry/Utils.h"
|
||||||
#include "zeek/telemetry/telemetry.bif.h"
|
|
||||||
|
|
||||||
namespace zeek::telemetry {
|
namespace zeek::telemetry {
|
||||||
|
|
||||||
|
|
|
@ -17,14 +17,13 @@
|
||||||
#include "zeek/3rdparty/doctest.h"
|
#include "zeek/3rdparty/doctest.h"
|
||||||
#include "zeek/Func.h"
|
#include "zeek/Func.h"
|
||||||
#include "zeek/ID.h"
|
#include "zeek/ID.h"
|
||||||
|
#include "zeek/IPAddr.h"
|
||||||
#include "zeek/RunState.h"
|
#include "zeek/RunState.h"
|
||||||
#include "zeek/ZeekString.h"
|
#include "zeek/ZeekString.h"
|
||||||
#include "zeek/broker/Manager.h"
|
#include "zeek/broker/Manager.h"
|
||||||
#include "zeek/iosource/Manager.h"
|
#include "zeek/iosource/Manager.h"
|
||||||
#include "zeek/telemetry/ProcessStats.h"
|
#include "zeek/telemetry/ProcessStats.h"
|
||||||
#include "zeek/telemetry/Timer.h"
|
#include "zeek/telemetry/Timer.h"
|
||||||
#include "zeek/telemetry/consts.bif.h"
|
|
||||||
#include "zeek/telemetry/telemetry.bif.h"
|
|
||||||
#include "zeek/threading/formatters/detail/json.h"
|
#include "zeek/threading/formatters/detail/json.h"
|
||||||
|
|
||||||
namespace zeek::telemetry {
|
namespace zeek::telemetry {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include "zeek/ID.h"
|
#include "zeek/ID.h"
|
||||||
#include "zeek/Reporter.h"
|
#include "zeek/Reporter.h"
|
||||||
#include "zeek/Val.h"
|
#include "zeek/Val.h"
|
||||||
#include "zeek/telemetry/telemetry.bif.h"
|
|
||||||
#include "zeek/util.h"
|
#include "zeek/util.h"
|
||||||
|
|
||||||
using namespace zeek;
|
using namespace zeek;
|
||||||
|
|
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
module Telemetry;
|
module Telemetry;
|
||||||
|
|
||||||
enum MetricType %{
|
|
||||||
COUNTER,
|
|
||||||
GAUGE,
|
|
||||||
HISTOGRAM,
|
|
||||||
%}
|
|
||||||
|
|
||||||
%%{
|
%%{
|
||||||
|
|
||||||
#include "zeek/telemetry/Counter.h"
|
#include "zeek/telemetry/Counter.h"
|
8
src/telemetry/telemetry_types.bif
Normal file
8
src/telemetry/telemetry_types.bif
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
module Telemetry;
|
||||||
|
|
||||||
|
## An enum that specifies which type of metric you're operating on.
|
||||||
|
enum MetricType %{
|
||||||
|
COUNTER, ##< Counters track entities that increment over time.
|
||||||
|
GAUGE, ##< Gauges track entities that fluctuate over time.
|
||||||
|
HISTOGRAM, ##< Histograms group observations into predefined bins.
|
||||||
|
%}
|
|
@ -24,6 +24,8 @@ scripts/base/init-bare.zeek
|
||||||
build/scripts/base/bif/plugins/Zeek_SNMP.types.bif.zeek
|
build/scripts/base/bif/plugins/Zeek_SNMP.types.bif.zeek
|
||||||
build/scripts/base/bif/plugins/Zeek_KRB.types.bif.zeek
|
build/scripts/base/bif/plugins/Zeek_KRB.types.bif.zeek
|
||||||
build/scripts/base/bif/event.bif.zeek
|
build/scripts/base/bif/event.bif.zeek
|
||||||
|
build/scripts/base/bif/telemetry_functions.bif.zeek
|
||||||
|
build/scripts/base/bif/telemetry_types.bif.zeek
|
||||||
scripts/base/packet-protocols/__load__.zeek
|
scripts/base/packet-protocols/__load__.zeek
|
||||||
scripts/base/packet-protocols/main.zeek
|
scripts/base/packet-protocols/main.zeek
|
||||||
scripts/base/frameworks/analyzer/main.zeek
|
scripts/base/frameworks/analyzer/main.zeek
|
||||||
|
@ -149,8 +151,7 @@ scripts/base/init-frameworks-and-bifs.zeek
|
||||||
scripts/base/frameworks/files/magic/__load__.zeek
|
scripts/base/frameworks/files/magic/__load__.zeek
|
||||||
scripts/base/frameworks/telemetry/options.zeek
|
scripts/base/frameworks/telemetry/options.zeek
|
||||||
build/scripts/base/bif/__load__.zeek
|
build/scripts/base/bif/__load__.zeek
|
||||||
build/scripts/base/bif/consts.bif.zeek
|
build/scripts/base/bif/telemetry_consts.bif.zeek
|
||||||
build/scripts/base/bif/telemetry.bif.zeek
|
|
||||||
build/scripts/base/bif/zeekygen.bif.zeek
|
build/scripts/base/bif/zeekygen.bif.zeek
|
||||||
build/scripts/base/bif/pcap.bif.zeek
|
build/scripts/base/bif/pcap.bif.zeek
|
||||||
build/scripts/base/bif/bloom-filter.bif.zeek
|
build/scripts/base/bif/bloom-filter.bif.zeek
|
||||||
|
|
|
@ -24,6 +24,8 @@ scripts/base/init-bare.zeek
|
||||||
build/scripts/base/bif/plugins/Zeek_SNMP.types.bif.zeek
|
build/scripts/base/bif/plugins/Zeek_SNMP.types.bif.zeek
|
||||||
build/scripts/base/bif/plugins/Zeek_KRB.types.bif.zeek
|
build/scripts/base/bif/plugins/Zeek_KRB.types.bif.zeek
|
||||||
build/scripts/base/bif/event.bif.zeek
|
build/scripts/base/bif/event.bif.zeek
|
||||||
|
build/scripts/base/bif/telemetry_functions.bif.zeek
|
||||||
|
build/scripts/base/bif/telemetry_types.bif.zeek
|
||||||
scripts/base/packet-protocols/__load__.zeek
|
scripts/base/packet-protocols/__load__.zeek
|
||||||
scripts/base/packet-protocols/main.zeek
|
scripts/base/packet-protocols/main.zeek
|
||||||
scripts/base/frameworks/analyzer/main.zeek
|
scripts/base/frameworks/analyzer/main.zeek
|
||||||
|
@ -149,8 +151,7 @@ scripts/base/init-frameworks-and-bifs.zeek
|
||||||
scripts/base/frameworks/files/magic/__load__.zeek
|
scripts/base/frameworks/files/magic/__load__.zeek
|
||||||
scripts/base/frameworks/telemetry/options.zeek
|
scripts/base/frameworks/telemetry/options.zeek
|
||||||
build/scripts/base/bif/__load__.zeek
|
build/scripts/base/bif/__load__.zeek
|
||||||
build/scripts/base/bif/consts.bif.zeek
|
build/scripts/base/bif/telemetry_consts.bif.zeek
|
||||||
build/scripts/base/bif/telemetry.bif.zeek
|
|
||||||
build/scripts/base/bif/zeekygen.bif.zeek
|
build/scripts/base/bif/zeekygen.bif.zeek
|
||||||
build/scripts/base/bif/pcap.bif.zeek
|
build/scripts/base/bif/pcap.bif.zeek
|
||||||
build/scripts/base/bif/bloom-filter.bif.zeek
|
build/scripts/base/bif/bloom-filter.bif.zeek
|
||||||
|
|
|
@ -465,7 +465,6 @@
|
||||||
0.000000 MetaHookPost LoadFile(0, ./comm.bif.zeek, <...>/comm.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./comm.bif.zeek, <...>/comm.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./const.bif.zeek, <...>/const.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./const.bif.zeek, <...>/const.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./consts.bif.zeek, <...>/consts.bif.zeek) -> -1
|
|
||||||
0.000000 MetaHookPost LoadFile(0, ./contents, <...>/contents.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./contents, <...>/contents.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./control, <...>/control.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./control, <...>/control.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./data.bif.zeek, <...>/data.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./data.bif.zeek, <...>/data.bif.zeek) -> -1
|
||||||
|
@ -503,7 +502,9 @@
|
||||||
0.000000 MetaHookPost LoadFile(0, ./store.bif.zeek, <...>/store.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./store.bif.zeek, <...>/store.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./strings.bif.zeek, <...>/strings.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./strings.bif.zeek, <...>/strings.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./telemetry.bif.zeek, <...>/telemetry.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./telemetry_consts.bif.zeek, <...>/telemetry_consts.bif.zeek) -> -1
|
||||||
|
0.000000 MetaHookPost LoadFile(0, ./telemetry_functions.bif.zeek, <...>/telemetry_functions.bif.zeek) -> -1
|
||||||
|
0.000000 MetaHookPost LoadFile(0, ./telemetry_types.bif.zeek, <...>/telemetry_types.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./thresholds, <...>/thresholds.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./thresholds, <...>/thresholds.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, ./types, <...>/types.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, ./types, <...>/types.zeek) -> -1
|
||||||
|
@ -602,6 +603,8 @@
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/supervisor, <...>/supervisor) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/supervisor, <...>/supervisor) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/tcp, <...>/tcp) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/tcp, <...>/tcp) -> -1
|
||||||
|
0.000000 MetaHookPost LoadFile(0, base<...>/telemetry_functions.bif, <...>/telemetry_functions.bif.zeek) -> -1
|
||||||
|
0.000000 MetaHookPost LoadFile(0, base<...>/telemetry_types.bif, <...>/telemetry_types.bif.zeek) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/teredo, <...>/teredo) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/teredo, <...>/teredo) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/tunnels, <...>/tunnels) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/tunnels, <...>/tunnels) -> -1
|
||||||
0.000000 MetaHookPost LoadFile(0, base<...>/types.bif, <...>/types.bif.zeek) -> -1
|
0.000000 MetaHookPost LoadFile(0, base<...>/types.bif, <...>/types.bif.zeek) -> -1
|
||||||
|
@ -763,7 +766,6 @@
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./comm.bif.zeek, <...>/comm.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./comm.bif.zeek, <...>/comm.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./const.bif.zeek, <...>/const.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./const.bif.zeek, <...>/const.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./consts.bif.zeek, <...>/consts.bif.zeek) -> (-1, <no content>)
|
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./contents, <...>/contents.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./contents, <...>/contents.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./control, <...>/control.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./control, <...>/control.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./data.bif.zeek, <...>/data.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./data.bif.zeek, <...>/data.bif.zeek) -> (-1, <no content>)
|
||||||
|
@ -801,7 +803,9 @@
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./store.bif.zeek, <...>/store.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./store.bif.zeek, <...>/store.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./strings.bif.zeek, <...>/strings.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./strings.bif.zeek, <...>/strings.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./telemetry.bif.zeek, <...>/telemetry.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./telemetry_consts.bif.zeek, <...>/telemetry_consts.bif.zeek) -> (-1, <no content>)
|
||||||
|
0.000000 MetaHookPost LoadFileExtended(0, ./telemetry_functions.bif.zeek, <...>/telemetry_functions.bif.zeek) -> (-1, <no content>)
|
||||||
|
0.000000 MetaHookPost LoadFileExtended(0, ./telemetry_types.bif.zeek, <...>/telemetry_types.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./thresholds, <...>/thresholds.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./thresholds, <...>/thresholds.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, ./types, <...>/types.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, ./types, <...>/types.zeek) -> (-1, <no content>)
|
||||||
|
@ -900,6 +904,8 @@
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/supervisor, <...>/supervisor) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/supervisor, <...>/supervisor) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/tcp, <...>/tcp) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/tcp, <...>/tcp) -> (-1, <no content>)
|
||||||
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/telemetry_functions.bif, <...>/telemetry_functions.bif.zeek) -> (-1, <no content>)
|
||||||
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/telemetry_types.bif, <...>/telemetry_types.bif.zeek) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/teredo, <...>/teredo) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/teredo, <...>/teredo) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/tunnels, <...>/tunnels) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/tunnels, <...>/tunnels) -> (-1, <no content>)
|
||||||
0.000000 MetaHookPost LoadFileExtended(0, base<...>/types.bif, <...>/types.bif.zeek) -> (-1, <no content>)
|
0.000000 MetaHookPost LoadFileExtended(0, base<...>/types.bif, <...>/types.bif.zeek) -> (-1, <no content>)
|
||||||
|
@ -1393,7 +1399,6 @@
|
||||||
0.000000 MetaHookPre LoadFile(0, ./comm.bif.zeek, <...>/comm.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./comm.bif.zeek, <...>/comm.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./const.bif.zeek, <...>/const.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./const.bif.zeek, <...>/const.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./consts.bif.zeek, <...>/consts.bif.zeek)
|
|
||||||
0.000000 MetaHookPre LoadFile(0, ./contents, <...>/contents.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./contents, <...>/contents.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./control, <...>/control.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./control, <...>/control.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./data.bif.zeek, <...>/data.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./data.bif.zeek, <...>/data.bif.zeek)
|
||||||
|
@ -1431,7 +1436,9 @@
|
||||||
0.000000 MetaHookPre LoadFile(0, ./store.bif.zeek, <...>/store.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./store.bif.zeek, <...>/store.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./strings.bif.zeek, <...>/strings.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./strings.bif.zeek, <...>/strings.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./telemetry.bif.zeek, <...>/telemetry.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./telemetry_consts.bif.zeek, <...>/telemetry_consts.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFile(0, ./telemetry_functions.bif.zeek, <...>/telemetry_functions.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFile(0, ./telemetry_types.bif.zeek, <...>/telemetry_types.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./thresholds, <...>/thresholds.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./thresholds, <...>/thresholds.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, ./types, <...>/types.zeek)
|
0.000000 MetaHookPre LoadFile(0, ./types, <...>/types.zeek)
|
||||||
|
@ -1530,6 +1537,8 @@
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/supervisor, <...>/supervisor)
|
0.000000 MetaHookPre LoadFile(0, base<...>/supervisor, <...>/supervisor)
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/tcp, <...>/tcp)
|
0.000000 MetaHookPre LoadFile(0, base<...>/tcp, <...>/tcp)
|
||||||
|
0.000000 MetaHookPre LoadFile(0, base<...>/telemetry_functions.bif, <...>/telemetry_functions.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFile(0, base<...>/telemetry_types.bif, <...>/telemetry_types.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/teredo, <...>/teredo)
|
0.000000 MetaHookPre LoadFile(0, base<...>/teredo, <...>/teredo)
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/tunnels, <...>/tunnels)
|
0.000000 MetaHookPre LoadFile(0, base<...>/tunnels, <...>/tunnels)
|
||||||
0.000000 MetaHookPre LoadFile(0, base<...>/types.bif, <...>/types.bif.zeek)
|
0.000000 MetaHookPre LoadFile(0, base<...>/types.bif, <...>/types.bif.zeek)
|
||||||
|
@ -1691,7 +1700,6 @@
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./comm.bif.zeek, <...>/comm.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./comm.bif.zeek, <...>/comm.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./communityid.bif.zeek, <...>/communityid.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./const.bif.zeek, <...>/const.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./const.bif.zeek, <...>/const.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./consts.bif.zeek, <...>/consts.bif.zeek)
|
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./contents, <...>/contents.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./contents, <...>/contents.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./control, <...>/control.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./control, <...>/control.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./data.bif.zeek, <...>/data.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./data.bif.zeek, <...>/data.bif.zeek)
|
||||||
|
@ -1729,7 +1737,9 @@
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./store.bif.zeek, <...>/store.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./store.bif.zeek, <...>/store.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./strings.bif.zeek, <...>/strings.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./strings.bif.zeek, <...>/strings.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./supervisor.bif.zeek, <...>/supervisor.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./telemetry.bif.zeek, <...>/telemetry.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./telemetry_consts.bif.zeek, <...>/telemetry_consts.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFileExtended(0, ./telemetry_functions.bif.zeek, <...>/telemetry_functions.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFileExtended(0, ./telemetry_types.bif.zeek, <...>/telemetry_types.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./thresholds, <...>/thresholds.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./thresholds, <...>/thresholds.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./top-k.bif.zeek, <...>/top-k.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, ./types, <...>/types.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, ./types, <...>/types.zeek)
|
||||||
|
@ -1828,6 +1838,8 @@
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/supervisor, <...>/supervisor)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/supervisor, <...>/supervisor)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/supervisor.bif, <...>/supervisor.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/tcp, <...>/tcp)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/tcp, <...>/tcp)
|
||||||
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/telemetry_functions.bif, <...>/telemetry_functions.bif.zeek)
|
||||||
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/telemetry_types.bif, <...>/telemetry_types.bif.zeek)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/teredo, <...>/teredo)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/teredo, <...>/teredo)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/tunnels, <...>/tunnels)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/tunnels, <...>/tunnels)
|
||||||
0.000000 MetaHookPre LoadFileExtended(0, base<...>/types.bif, <...>/types.bif.zeek)
|
0.000000 MetaHookPre LoadFileExtended(0, base<...>/types.bif, <...>/types.bif.zeek)
|
||||||
|
@ -2322,7 +2334,6 @@
|
||||||
0.000000 | HookLoadFile ./comm.bif.zeek <...>/comm.bif.zeek
|
0.000000 | HookLoadFile ./comm.bif.zeek <...>/comm.bif.zeek
|
||||||
0.000000 | HookLoadFile ./communityid.bif.zeek <...>/communityid.bif.zeek
|
0.000000 | HookLoadFile ./communityid.bif.zeek <...>/communityid.bif.zeek
|
||||||
0.000000 | HookLoadFile ./const.bif.zeek <...>/const.bif.zeek
|
0.000000 | HookLoadFile ./const.bif.zeek <...>/const.bif.zeek
|
||||||
0.000000 | HookLoadFile ./consts.bif.zeek <...>/consts.bif.zeek
|
|
||||||
0.000000 | HookLoadFile ./contents <...>/contents.zeek
|
0.000000 | HookLoadFile ./contents <...>/contents.zeek
|
||||||
0.000000 | HookLoadFile ./control <...>/control.zeek
|
0.000000 | HookLoadFile ./control <...>/control.zeek
|
||||||
0.000000 | HookLoadFile ./data.bif.zeek <...>/data.bif.zeek
|
0.000000 | HookLoadFile ./data.bif.zeek <...>/data.bif.zeek
|
||||||
|
@ -2369,7 +2380,9 @@
|
||||||
0.000000 | HookLoadFile ./store.bif.zeek <...>/store.bif.zeek
|
0.000000 | HookLoadFile ./store.bif.zeek <...>/store.bif.zeek
|
||||||
0.000000 | HookLoadFile ./strings.bif.zeek <...>/strings.bif.zeek
|
0.000000 | HookLoadFile ./strings.bif.zeek <...>/strings.bif.zeek
|
||||||
0.000000 | HookLoadFile ./supervisor.bif.zeek <...>/supervisor.bif.zeek
|
0.000000 | HookLoadFile ./supervisor.bif.zeek <...>/supervisor.bif.zeek
|
||||||
0.000000 | HookLoadFile ./telemetry.bif.zeek <...>/telemetry.bif.zeek
|
0.000000 | HookLoadFile ./telemetry_consts.bif.zeek <...>/telemetry_consts.bif.zeek
|
||||||
|
0.000000 | HookLoadFile ./telemetry_functions.bif.zeek <...>/telemetry_functions.bif.zeek
|
||||||
|
0.000000 | HookLoadFile ./telemetry_types.bif.zeek <...>/telemetry_types.bif.zeek
|
||||||
0.000000 | HookLoadFile ./thresholds <...>/thresholds.zeek
|
0.000000 | HookLoadFile ./thresholds <...>/thresholds.zeek
|
||||||
0.000000 | HookLoadFile ./top-k.bif.zeek <...>/top-k.bif.zeek
|
0.000000 | HookLoadFile ./top-k.bif.zeek <...>/top-k.bif.zeek
|
||||||
0.000000 | HookLoadFile ./types <...>/types.zeek
|
0.000000 | HookLoadFile ./types <...>/types.zeek
|
||||||
|
@ -2469,6 +2482,8 @@
|
||||||
0.000000 | HookLoadFile base<...>/supervisor <...>/supervisor
|
0.000000 | HookLoadFile base<...>/supervisor <...>/supervisor
|
||||||
0.000000 | HookLoadFile base<...>/supervisor.bif <...>/supervisor.bif.zeek
|
0.000000 | HookLoadFile base<...>/supervisor.bif <...>/supervisor.bif.zeek
|
||||||
0.000000 | HookLoadFile base<...>/tcp <...>/tcp
|
0.000000 | HookLoadFile base<...>/tcp <...>/tcp
|
||||||
|
0.000000 | HookLoadFile base<...>/telemetry_functions.bif <...>/telemetry_functions.bif.zeek
|
||||||
|
0.000000 | HookLoadFile base<...>/telemetry_types.bif <...>/telemetry_types.bif.zeek
|
||||||
0.000000 | HookLoadFile base<...>/teredo <...>/teredo
|
0.000000 | HookLoadFile base<...>/teredo <...>/teredo
|
||||||
0.000000 | HookLoadFile base<...>/tunnels <...>/tunnels
|
0.000000 | HookLoadFile base<...>/tunnels <...>/tunnels
|
||||||
0.000000 | HookLoadFile base<...>/types.bif <...>/types.bif.zeek
|
0.000000 | HookLoadFile base<...>/types.bif <...>/types.bif.zeek
|
||||||
|
@ -2620,7 +2635,6 @@
|
||||||
0.000000 | HookLoadFileExtended ./comm.bif.zeek <...>/comm.bif.zeek
|
0.000000 | HookLoadFileExtended ./comm.bif.zeek <...>/comm.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./communityid.bif.zeek <...>/communityid.bif.zeek
|
0.000000 | HookLoadFileExtended ./communityid.bif.zeek <...>/communityid.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./const.bif.zeek <...>/const.bif.zeek
|
0.000000 | HookLoadFileExtended ./const.bif.zeek <...>/const.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./consts.bif.zeek <...>/consts.bif.zeek
|
|
||||||
0.000000 | HookLoadFileExtended ./contents <...>/contents.zeek
|
0.000000 | HookLoadFileExtended ./contents <...>/contents.zeek
|
||||||
0.000000 | HookLoadFileExtended ./control <...>/control.zeek
|
0.000000 | HookLoadFileExtended ./control <...>/control.zeek
|
||||||
0.000000 | HookLoadFileExtended ./data.bif.zeek <...>/data.bif.zeek
|
0.000000 | HookLoadFileExtended ./data.bif.zeek <...>/data.bif.zeek
|
||||||
|
@ -2667,7 +2681,9 @@
|
||||||
0.000000 | HookLoadFileExtended ./store.bif.zeek <...>/store.bif.zeek
|
0.000000 | HookLoadFileExtended ./store.bif.zeek <...>/store.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./strings.bif.zeek <...>/strings.bif.zeek
|
0.000000 | HookLoadFileExtended ./strings.bif.zeek <...>/strings.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./supervisor.bif.zeek <...>/supervisor.bif.zeek
|
0.000000 | HookLoadFileExtended ./supervisor.bif.zeek <...>/supervisor.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./telemetry.bif.zeek <...>/telemetry.bif.zeek
|
0.000000 | HookLoadFileExtended ./telemetry_consts.bif.zeek <...>/telemetry_consts.bif.zeek
|
||||||
|
0.000000 | HookLoadFileExtended ./telemetry_functions.bif.zeek <...>/telemetry_functions.bif.zeek
|
||||||
|
0.000000 | HookLoadFileExtended ./telemetry_types.bif.zeek <...>/telemetry_types.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./thresholds <...>/thresholds.zeek
|
0.000000 | HookLoadFileExtended ./thresholds <...>/thresholds.zeek
|
||||||
0.000000 | HookLoadFileExtended ./top-k.bif.zeek <...>/top-k.bif.zeek
|
0.000000 | HookLoadFileExtended ./top-k.bif.zeek <...>/top-k.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended ./types <...>/types.zeek
|
0.000000 | HookLoadFileExtended ./types <...>/types.zeek
|
||||||
|
@ -2767,6 +2783,8 @@
|
||||||
0.000000 | HookLoadFileExtended base<...>/supervisor <...>/supervisor
|
0.000000 | HookLoadFileExtended base<...>/supervisor <...>/supervisor
|
||||||
0.000000 | HookLoadFileExtended base<...>/supervisor.bif <...>/supervisor.bif.zeek
|
0.000000 | HookLoadFileExtended base<...>/supervisor.bif <...>/supervisor.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended base<...>/tcp <...>/tcp
|
0.000000 | HookLoadFileExtended base<...>/tcp <...>/tcp
|
||||||
|
0.000000 | HookLoadFileExtended base<...>/telemetry_functions.bif <...>/telemetry_functions.bif.zeek
|
||||||
|
0.000000 | HookLoadFileExtended base<...>/telemetry_types.bif <...>/telemetry_types.bif.zeek
|
||||||
0.000000 | HookLoadFileExtended base<...>/teredo <...>/teredo
|
0.000000 | HookLoadFileExtended base<...>/teredo <...>/teredo
|
||||||
0.000000 | HookLoadFileExtended base<...>/tunnels <...>/tunnels
|
0.000000 | HookLoadFileExtended base<...>/tunnels <...>/tunnels
|
||||||
0.000000 | HookLoadFileExtended base<...>/types.bif <...>/types.bif.zeek
|
0.000000 | HookLoadFileExtended base<...>/types.bif <...>/types.bif.zeek
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue