From cc5d1c39bb720e0a271b4568c24d540d752b9f64 Mon Sep 17 00:00:00 2001 From: "Zhao, Dirk" Date: Thu, 11 Jul 2024 14:49:48 +0800 Subject: [PATCH] fix type ebfp to ebpf Signed-off-by: Zhao, Dirk --- dev/devbox/source/k8s/modify.sh | 2 +- docs/dns-and-http.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/devbox/source/k8s/modify.sh b/dev/devbox/source/k8s/modify.sh index 0f0e5d64..2b86291e 100755 --- a/dev/devbox/source/k8s/modify.sh +++ b/dev/devbox/source/k8s/modify.sh @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 function print_help { - echo "usage: $0 [--ebfp-net|--otel-demo] " + echo "usage: $0 [--ebpf-net|--otel-demo] " echo " --ebpf-net: modify previously deployed OpenTelementry eBPF component(s)" echo " --ebpf-net-local-helm-chart | -C: use local helm chart to modify OpenTelementry eBPF component(s)" echo " (default is to use public splunk-otel-collector-chart/splunk-otel-collector)" diff --git a/docs/dns-and-http.md b/docs/dns-and-http.md index 4a544c4d..2a68783c 100644 --- a/docs/dns-and-http.md +++ b/docs/dns-and-http.md @@ -10,7 +10,7 @@ This document describes how DNS collection and enrichment works. #### Kernel space -Collector's eBFP code gathers DNS data by hooking into kernel UDP send functions \(for reference, see where `perf_check_and_submit_dns` function is called from\). Captured UDP send buffer data \(`skb->data`\) are relayed to the user space through perf ring messages. The maximum captured UDP data size is limited to 512 bytes \(maximum DNS UDP packet message size specified in the RFC\). We currently do not support DNS over HTTP. +Collector's eBPF code gathers DNS data by hooking into kernel UDP send functions \(for reference, see where `perf_check_and_submit_dns` function is called from\). Captured UDP send buffer data \(`skb->data`\) are relayed to the user space through perf ring messages. The maximum captured UDP data size is limited to 512 bytes \(maximum DNS UDP packet message size specified in the RFC\). We currently do not support DNS over HTTP. #### User space