InfluxDB Jenkins 管道插件:目标为空

InfluxDB Jenkins Pipeline Plugin: Target was null

我正在使用 InfluxDB 插件将指标从我的 Jenkins 构建发送到 influx。我只想使用 Jenkins 管道。

插件版本为1.10.2.

我将以下代码添加到我的 Jenkinsfile 中,如 documentation 中所示:

step([$class: 'InfluxDbPublisher',
        customData: null,
        customDataMap: null,
        customPrefix: null,
        target: 'http://ip:port,jenkins-db'])

当我执行构建时收到此错误:

java.lang.RuntimeException: Target was null!
    at jenkinsci.plugins.influxdb.InfluxDbPublisher.perform(InfluxDbPublisher.java:186)
    at org.jenkinsci.plugins.workflow.steps.CoreStep$Execution.run(CoreStep.java:69)
    at org.jenkinsci.plugins.workflow.steps.CoreStep$Execution.run(CoreStep.java:59)

我看到目标的配置无效,但我不明白为什么。有人可以帮助我吗?

尝试使用另一种语法

step([$class: 'InfluxDbPublisher',
        customData: null,
        customDataMap: null,
        customPrefix: null,
        target: 'local influxDB'])