-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: NDJSON Support for Hawk Log Output #267
Comments
It's a super useful feature. We were planning to use hawk to ingest into our ELK stack, but we have to make some foo to convert to ndjson. It would be cool to have it natively. |
@Guzzy711 thank you for your feedback! In terms of implementation options, would you prefer option 1, 2, or 3? Based upon four feedback and a discussion with some of the Hawk contributors, we will look to implement this in our next minor release. |
@Guzzy711, we would also be interested in hearing any pain points, suggestions, and any feedback in general as you begin ingesting the Hawk data into ELK. Thanks again for your feedback on this ticket! |
I think option 2 would be preferable for the wider community; however, it probably also requires a bit more work. :-) |
For sure! Will definitely let you know. 👍🏽 |
Maybe you can get inspired by the following to do the conversion: https://www.blackhillsinfosec.com/wrangling-the-m365-ual-part-3-of-3/ |
@Guzzy711 , we are rolling with option 2. Starting some work on it this weekend! |
What problem would this feature solve?
Currently, Hawk outputs JSON logs in standard JSON format, which is human-readable but not optimized for SIEM ingestion. NDJSON (Newline Delimited JSON) offers performance and efficiency benefits, including:
The primary decision point is whether NDJSON formatting should be handled within Hawk or delegated to HawkEye, which is responsible for SIEM ingestion. This ticket tracks the discussion and potential implementation within Hawk.
Proposed Solution
Introduce NDJSON support in Hawk's logging mechanism as an optional feature. This allows users to choose between traditional JSON and NDJSON without forcing a format change.
Options for Implementation:
Hawk generates NDJSON by default
Hawk provides an option for output type, which can be one or multiple output types (JSON, NDJSON, CSV) output
-OutputType
) forStart-HawkUserInvestigation
&Start-HawkTenantInvestigation
and all public Tenant / User functions.Hawk produces both JSON and NDJSON
Keep NDJSON conversion in HawkEye
The team should discuss which approach aligns best with Hawk’s long-term vision.
⚙️ Developer Section (For Hawk Team Members Only)
Technical Requirements
Out-MultipleFileType.ps1
to support NDJSON output..ndjson
or.jsonl
).Implementation Approach
-ndjson
) to toggle NDJSON output.ConvertTo-Json -Compress
and write each object as a separate line.Acceptance Criteria
This ticket will remain open for discussion until the team reaches consensus on whether NDJSON should be implemented in Hawk or left to HawkEye.
The text was updated successfully, but these errors were encountered: