logana 0.6.0

Turn any log source — files, compressed archives, Docker, or OTel streams — into structured data. Filter by pattern, field, or date range; annotate lines; bookmark findings; and export to Markdown, Jira, or AI assistants via the built-in MCP server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod auto_complete;
pub mod export;
pub mod info;
pub mod parser;

pub use export::{
    ExportData, ExportTemplate, complete_template, extract_user_fields, list_templates,
    load_template, parse_template, render_export,
};
pub use info::{COMMANDS, CommandInfo, FILE_PATH_COMMANDS, command_names, find_matching_command};
pub use parser::{CommandLine, Commands};