MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / audit_query_execution

Method audit_query_execution

graphlite/src/exec/executor.rs:377–391  ·  view source on GitHub ↗

Audit query execution (simplified version)

(
        &self,
        query_text: &str,
        session_id: &str,
        result: &QueryResult,
        execution_time_ms: u64,
    )

Source from the content-addressed store, hash-verified

375
376 /// Audit query execution (simplified version)
377 fn audit_query_execution(
378 &self,
379 query_text: &str,
380 session_id: &str,
381 result: &QueryResult,
382 execution_time_ms: u64,
383 ) {
384 log::debug!(
385 "Query executed by session {}: {} ({}ms, {} rows)",
386 session_id,
387 query_text,
388 execution_time_ms,
389 result.rows.len()
390 );
391 }
392
393 /// Resolve a graph expression to an actual graph (helper for internal use)
394 fn resolve_graph_expression(

Callers 1

execute_queryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected