You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ge...@apache.org on 2022/05/11 15:52:49 UTC

[solr] branch main updated: SOLR-15746: Remove unused metrics.history apispec (#853)

This is an automated email from the ASF dual-hosted git repository.

gerlowskija pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new a2bdab3b180 SOLR-15746: Remove unused metrics.history apispec (#853)
a2bdab3b180 is described below

commit a2bdab3b1806222b8d9fd5a87d02fa73ed4305ae
Author: Jason Gerlowski <ge...@apache.org>
AuthorDate: Wed May 11 11:52:43 2022 -0400

    SOLR-15746: Remove unused metrics.history apispec (#853)
    
    The "metrics history" feature was removed as a part of SOLR-15416, but
    the apispec file was missed during that effort.  This commit removes it.
---
 .../src/resources/apispec/metrics.history.json     | 23 ----------------------
 1 file changed, 23 deletions(-)

diff --git a/solr/solrj/src/resources/apispec/metrics.history.json b/solr/solrj/src/resources/apispec/metrics.history.json
deleted file mode 100644
index 1d1a376a9c6..00000000000
--- a/solr/solrj/src/resources/apispec/metrics.history.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-  "documentation": "https://solr.apache.org/guide/metrics-reporting.html",
-  "description": "Metrics history handler allows retrieving samples of past metrics recorded in the .system collection.",
-  "methods": [
-    "GET"
-  ],
-  "url": {
-    "paths": [
-      "/cluster/metrics/history"
-    ],
-    "params": {
-      "action": {
-        "type": "string",
-        "description": "one of supported actions",
-        "default": "list"
-      },
-      "name": {
-        "type": "string",
-        "description": "registry name"
-      }
-    }
-  }
-}