From 12877af32b89b4b207f6841953d17c6780c37bbe Mon Sep 17 00:00:00 2001 From: Markus Opolka Date: Fri, 17 Apr 2026 15:34:42 +0200 Subject: [PATCH] Use metric/find endpoint for status checks --- library/Perfdatagraphsgraphite/Client/Graphite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Perfdatagraphsgraphite/Client/Graphite.php b/library/Perfdatagraphsgraphite/Client/Graphite.php index 2b122f6..fe1b2b0 100644 --- a/library/Perfdatagraphsgraphite/Client/Graphite.php +++ b/library/Perfdatagraphsgraphite/Client/Graphite.php @@ -73,7 +73,7 @@ public function status(): array ] ]; - $url = $this->URL . $this::METRICS_ENDPOINT; + $url = $this->URL . $this::FIND_ENDPOINT; try { $response = $this->client->request('GET', $url, $query);