繁体   English   中英

如何在 helm 托管环境中安装 prometheus exporter 插件到 openSearch

[英]How to install prometheus exporter plugin to openSearch in helm managed environment

我想从我的 opensearch 收集指标

我找到了这个插件https://github.com/aiven/prometheus-exporter-plugin-for-opensearch

但我不知道如何将它连接到我的 opensearch:

我当前的定义如下所示:

图表.yaml:

  - name: opensearch
    version: 1.8.0
    repository: https://opensearch-project.github.io/helm-charts/

值.yaml:

opensearch:
  plugins:
    enabled: true
    installList:
      - what should I write here ?

  addIndexedAt: true
  clusterName: ...
  masterService:...
  resources:
    requests:
      cpu: 500m
      memory: 1000Mi
    limits:
      cpu: 3000m
      memory: 2000Mi
  config:
    opensearch.yml: ...

您能帮我如何将插件连接到 opensearch 吗?

- what should I write here ?

尝试指定插件下载 URL:

...
installList:
- "https://github.com/aiven/prometheus-exporter-plugin-for-opensearch/releases/download/2.1.0.0/prometheus-exporter-2.1.0.0.zip"
...

您传递的 url 到这里进行安装。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM