From 4086745d2bf5bd5c16860429ec0ef0643c2e0c42 Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Tue, 11 Jun 2024 13:34:11 -0500 Subject: [PATCH] =?UTF-8?q?Ensure=20that=20we=20dont=20look=20at=20nodes?= =?UTF-8?q?=20that=20might=20be=20stuck=20by=20filtering=20fo=E2=80=A6=20(?= =?UTF-8?q?#93)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboards/blockchain/mempool-transactions-fees.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards/blockchain/mempool-transactions-fees.json b/dashboards/blockchain/mempool-transactions-fees.json index ca4ece8..8f7dee8 100644 --- a/dashboards/blockchain/mempool-transactions-fees.json +++ b/dashboards/blockchain/mempool-transactions-fees.json @@ -404,7 +404,7 @@ }, "editorMode": "code", "exemplar": true, - "expr": "sum without(cluster, application, component, pod, service, instance, namespace, job, instance_name, ref, container, group, endpoint, region, exported_network) (\n topk(1, chia_full_node_block_cost{network=\"$network\"}) / 5000000\n) * \nsum without(cluster, application, component, pod, service, instance, namespace, job, instance_name, ref, container, group, endpoint, region, exported_network) (\n bottomk(1, \n rate(chia_full_node_node_height{network=\"$network\"}[5m]) and on (instance) (chia_full_node_node_synced{network=\"$network\"} == 1)\n )\n) / 3", + "expr": "sum without(cluster, application, component, pod, service, instance, namespace, job, instance_name, ref, container, group, endpoint, region, exported_network) (\n topk(1, chia_full_node_block_cost{network=\"$network\"}) / 5000000\n) * \nsum without(cluster, application, component, pod, service, instance, namespace, job, instance_name, ref, container, group, endpoint, region, exported_network) (\n bottomk(1, \n rate(chia_full_node_node_height{network=\"$network\"}[5m]) > 0 and on (instance) (chia_full_node_node_synced{network=\"$network\"} == 1)\n )\n) / 3", "interval": "", "legendFormat": "5,000,000 Cost TX", "range": true,