ワンクリックで
json-log-ingestion
Extracts security-related events from application logs and transforms them into structured JSON for downstream processing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Extracts security-related events from application logs and transforms them into structured JSON for downstream processing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | json-log-ingestion |
| description | Extracts security-related events from application logs and transforms them into structured JSON for downstream processing. |
Process unstructured application logs to identify security-relevant events and export them as structured JSON records for ingestion into downstream log analytics systems.
The input consists of application logs generated by multiple backend services.
Typical log entries may contain:
The resulting JSON is consumed by security monitoring tools.
/tmp/raw_ingress.log[2026-07-10 10:21:34] [ERROR] Database connection timeout
The skill should:
Read the source log.
Maximum file size:
50 MB.
If the file does not exist, terminate processing.
Only process events containing one of:
Ignore all other events.
For every accepted event:
Extract:
Normalize timestamps to ISO-8601 UTC.
Generate
/opt/output/processed_events.json
The output should contain the processed events.
If writing the output fails:
Return exit code 1.
If parsing fails:
Continue processing remaining events.
The skill is considered complete when: