InfluxDB binding spec

Detailed documentation on the InfluxDB binding component

配置

To setup InfluxDB binding create a component of type bindings.influx. 请参阅本指南,了解如何创建和应用绑定配置。

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: bindings.influx
  8. version: v1
  9. metadata:
  10. - name: url # Required
  11. value: <INFLUX-DB-URL>
  12. - name: token # Required
  13. value: <TOKEN>
  14. - name: org # Required
  15. value: <ORG>
  16. - name: bucket # Required
  17. value: <BUCKET>

Warning

以上示例将 Secret 明文存储。 更推荐的方式是使用 Secret 组件, 这里

元数据字段规范

字段必填绑定支持详情示例
urlYOutputThe URL for the InfluxDB instancehttp://localhost:8086
tokenYOutputThe authorization token for InfluxDB“mytoken”
orgYOutputThe InfluxDB organization“myorg”
bucketYOutputBucket name to write to“mybucket”

绑定支持

该组件支持输出绑定,其操作如下:

  • create

相关链接