一键导入
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: