From 9239cb33edaa8eeddda2613bfa2802f909cd43d0 Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Mon, 30 Mar 2026 14:40:49 +0200 Subject: [PATCH 1/4] Update roq/quarkus --- pom.xml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 4ef11e7..b14ffba 100644 --- a/pom.xml +++ b/pom.xml @@ -13,8 +13,8 @@ UTF-8 quarkus-bom io.quarkus.platform - 3.22.1 - 1.5.2 + 3.23.0 + 1.10.3 true 3.5.2 @@ -74,12 +74,7 @@ io.quarkiverse.web-bundler quarkus-web-bundler - 1.8.1 - - - io.quarkiverse.qute.web - quarkus-qute-web-markdown-autolink - 3.3.0 + 1.9.1 org.mvnpm From b7dbf85ee7783980b725f2f3c6e3e33f7b83f605 Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Mon, 30 Mar 2026 14:50:40 +0200 Subject: [PATCH 2/4] test promql --- content/posts/2026-03-02-subnet-labels/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2026-03-02-subnet-labels/index.md b/content/posts/2026-03-02-subnet-labels/index.md index 8a44ed7..f3d287e 100644 --- a/content/posts/2026-03-02-subnet-labels/index.md +++ b/content/posts/2026-03-02-subnet-labels/index.md @@ -106,7 +106,7 @@ In FlowMetrics, when there are several filters for the same key, those filters a In Prometheus, you can query them with the following `promQL`: ``` -topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{ SrcK8S_Namespace!="" }[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) +topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{SrcK8S_Namespace!="" }[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) ``` ![Prometheus/promql for external egress traffic](./external-promql.png) From e010522416332e053c3bc0e2812a276ba92f249d Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Mon, 30 Mar 2026 15:08:06 +0200 Subject: [PATCH 3/4] Bump roq 2.0.x --- .gitignore | 1 + content/posts/2026-03-02-subnet-labels/index.md | 2 +- pom.xml | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 8eb4566..121d5f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ data/*.json .quarkus target/ +node_modules/ diff --git a/content/posts/2026-03-02-subnet-labels/index.md b/content/posts/2026-03-02-subnet-labels/index.md index f3d287e..5b708a5 100644 --- a/content/posts/2026-03-02-subnet-labels/index.md +++ b/content/posts/2026-03-02-subnet-labels/index.md @@ -106,7 +106,7 @@ In FlowMetrics, when there are several filters for the same key, those filters a In Prometheus, you can query them with the following `promQL`: ``` -topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{SrcK8S_Namespace!="" }[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) +topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{SrcK8S_Namespace!=""}[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) ``` ![Prometheus/promql for external egress traffic](./external-promql.png) diff --git a/pom.xml b/pom.xml index b14ffba..6e639d6 100644 --- a/pom.xml +++ b/pom.xml @@ -13,8 +13,8 @@ UTF-8 quarkus-bom io.quarkus.platform - 3.23.0 - 1.10.3 + 3.29.4 + 2.0.4 true 3.5.2 @@ -74,7 +74,7 @@ io.quarkiverse.web-bundler quarkus-web-bundler - 1.9.1 + 2.2.0 org.mvnpm From c94aab3647802f7162001c6905181a7429b802df Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Mon, 30 Mar 2026 15:10:56 +0200 Subject: [PATCH 4/4] restore promql fix --- content/posts/2026-03-02-subnet-labels/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2026-03-02-subnet-labels/index.md b/content/posts/2026-03-02-subnet-labels/index.md index 5b708a5..8a44ed7 100644 --- a/content/posts/2026-03-02-subnet-labels/index.md +++ b/content/posts/2026-03-02-subnet-labels/index.md @@ -106,7 +106,7 @@ In FlowMetrics, when there are several filters for the same key, those filters a In Prometheus, you can query them with the following `promQL`: ``` -topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{SrcK8S_Namespace!=""}[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) +topk(10, sum(rate(netobserv_cluster_external_egress_bytes_total{ SrcK8S_Namespace!="" }[2m])) by (SrcK8S_Namespace, SrcK8S_OwnerName)) ``` ![Prometheus/promql for external egress traffic](./external-promql.png)