From 41bee9abe8977b4ebcdd73b77dae797a0223b017 Mon Sep 17 00:00:00 2001 From: Malte Hansen Date: Tue, 3 Dec 2024 13:34:08 +0100 Subject: [PATCH] Add kubernetes attributes to cassandra span table --- src/main/resources/init_script.cql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/init_script.cql b/src/main/resources/init_script.cql index 56c8e1f..10f0bf5 100644 --- a/src/main/resources/init_script.cql +++ b/src/main/resources/init_script.cql @@ -85,5 +85,9 @@ CREATE TABLE IF NOT EXISTS explorviz.span_structure application_instance int, method_fqn text, time_seen bigint, + k8s_pod_name text, + k8s_node_name text, + k8s_namespace text, + k8s_deployment_name text, PRIMARY KEY ((landscape_token), method_hash) );