From 808e696d1b9ff9a9857ad24a5be34521c23bb7d4 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 6 Sep 2025 15:01:58 +0100 Subject: [PATCH] Fix Prometheus incorrect metric name --- trustgraph-flow/trustgraph/extract/kg/agent/extract.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trustgraph-flow/trustgraph/extract/kg/agent/extract.py b/trustgraph-flow/trustgraph/extract/kg/agent/extract.py index b7ef9259..041264a4 100644 --- a/trustgraph-flow/trustgraph/extract/kg/agent/extract.py +++ b/trustgraph-flow/trustgraph/extract/kg/agent/extract.py @@ -322,6 +322,7 @@ class Processor(FlowProcessor): parser.add_argument( "--template-id", + dest="template_id", type=str, default=default_template_id, help="Template ID to use for agent extraction" @@ -329,6 +330,7 @@ class Processor(FlowProcessor): parser.add_argument( '--config-type', + dest="config_type", default="prompt", help=f'Configuration key for prompts (default: prompt)', )