From 323072c9827c41c5d74433504b5efceb846cfe09 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 21 Jul 2020 09:02:44 -0700 Subject: [PATCH] add source_ip to schema doc --- docs/parsers/ping.md | 1 + jc/parsers/ping.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/parsers/ping.md b/docs/parsers/ping.md index 27a1b3fe..64ad3c9f 100644 --- a/docs/parsers/ping.md +++ b/docs/parsers/ping.md @@ -117,6 +117,7 @@ Returns: Dictionary. Structured data with the following schema: { + "source_ip": string, "destination_ip": string, "data_bytes": integer, "pattern": string, (null if not set) diff --git a/jc/parsers/ping.py b/jc/parsers/ping.py index cf50f217..c15dc80e 100644 --- a/jc/parsers/ping.py +++ b/jc/parsers/ping.py @@ -127,6 +127,7 @@ def process(proc_data): Dictionary. Structured data with the following schema: { + "source_ip": string, "destination_ip": string, "data_bytes": integer, "pattern": string, (null if not set)