Influxdb - 配置文件的 [graphite] 和 [http] 中的绑定地址之间的区别
Influxdb - Difference between bind adress in [graphite] and [http] of config file
我需要了解 Graphite 绑定地址 2003 和 http 服务绑定地址 8086 之间的区别。
我正在实时实施 jmeter--influxdb --grafana result.In Graphite im 启用绑定地址 2003 并且在 jmeter 后端侦听器中 im 使用 8086 作为端口。
我无法使用 influx CLI。
我能够post将结果发送到 influxdb。
当我执行上述过程时——启用 [http] 并启用绑定地址 8086.Im 能够访问 Influx CLI 并且我也能够 post 使用端口[将结果发送到 influxdb =27=] 在 jmeter 中我提到了 2003,我在 [graphite] 启用了它。
即使在 grfana 中,我也使用 http://localhost:8086 而不是 2003。
我想知道实际的绑定地址是什么意思?
这两个绑定地址有什么区别?
虽然在第一种情况下我没有启用 http 服务,但我在 jmeter 后端使用 8086 作为端口 listener.How 它有效吗?
8086
是 HTTP endpoint
2023
是 Graphite endpoint
Graphite 是一种 special protocol,它提供了发送和绘制数据的简单方法。
在 JMeter 中,您可以选择:
- InfluxdbBackendListenerClient 使用 HTTP 协议和
8086
端点
- GraphiteBackendListenerClient which uses Graphite protocol and
2023
endpoint. Theoretically you can use the GraphiteBackendListenerClient
with any other application which uses Graphite protocol,不一定 InfluxDB
实际选择由您决定。
我需要了解 Graphite 绑定地址 2003 和 http 服务绑定地址 8086 之间的区别。
我正在实时实施 jmeter--influxdb --grafana result.In Graphite im 启用绑定地址 2003 并且在 jmeter 后端侦听器中 im 使用 8086 作为端口。
我无法使用 influx CLI。
我能够post将结果发送到 influxdb。
当我执行上述过程时——启用 [http] 并启用绑定地址 8086.Im 能够访问 Influx CLI 并且我也能够 post 使用端口[将结果发送到 influxdb =27=] 在 jmeter 中我提到了 2003,我在 [graphite] 启用了它。
即使在 grfana 中,我也使用 http://localhost:8086 而不是 2003。
我想知道实际的绑定地址是什么意思? 这两个绑定地址有什么区别? 虽然在第一种情况下我没有启用 http 服务,但我在 jmeter 后端使用 8086 作为端口 listener.How 它有效吗?
8086
是 HTTP endpoint2023
是 Graphite endpoint
Graphite 是一种 special protocol,它提供了发送和绘制数据的简单方法。
在 JMeter 中,您可以选择:
- InfluxdbBackendListenerClient 使用 HTTP 协议和
8086
端点 - GraphiteBackendListenerClient which uses Graphite protocol and
2023
endpoint. Theoretically you can use theGraphiteBackendListenerClient
with any other application which uses Graphite protocol,不一定 InfluxDB
实际选择由您决定。