kql-panopticon 0.3.0

KQL tooling for Azure Log Analytics - concurrent multi-workspace queries, chained investigations, HTTP enrichment, and automated reports
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Investigation module for running investigation packs
//!
//! This module provides the types and runner for executing investigation packs
//! against Azure Log Analytics workspaces.

pub mod condition;
pub mod http;
mod report;
mod runner;
mod types;

// Re-export public types
pub use runner::InvestigationRunner;
pub use types::{InvestigationResult, ProgressUpdate, Status};