如何将 '--web.enable-admin-api' 标志传递给 victoriametrics
How to pass '--web.enable-admin-api' flag to in victoriametrics
要启用删除操作,我们可能需要启用 --web.enable-admin-api'
标志,以便了解如何启用它。我目前正在使用非 docker 单节点集群版本并尝试 运行 下面的 curl 命令
curl -X DELETE -g 'http://localhost:8481/api/v1/0/tsdb/delete_series?match[]={foo.bar.baz="bar"}'
delete API in VictoriaMetrics 开箱即用。不需要启用它。
您的命令似乎在单节点 VictoriaMetrics 中包含指向 delete API
的无效端口和路径。根据docs尝试以下命令:
curl -g 'http://localhost:8428/api/v1/admin/tsdb/delete_series?match[]={foo.bar.baz="bar"}'
请注意 match[]
arg 必须使用 url encoding 正确编码。否则可能会被不当传输到 VictoriaMetrics。
要启用删除操作,我们可能需要启用 --web.enable-admin-api'
标志,以便了解如何启用它。我目前正在使用非 docker 单节点集群版本并尝试 运行 下面的 curl 命令
curl -X DELETE -g 'http://localhost:8481/api/v1/0/tsdb/delete_series?match[]={foo.bar.baz="bar"}'
delete API in VictoriaMetrics 开箱即用。不需要启用它。
您的命令似乎在单节点 VictoriaMetrics 中包含指向 delete API
的无效端口和路径。根据docs尝试以下命令:
curl -g 'http://localhost:8428/api/v1/admin/tsdb/delete_series?match[]={foo.bar.baz="bar"}'
请注意 match[]
arg 必须使用 url encoding 正确编码。否则可能会被不当传输到 VictoriaMetrics。