我使用了flink 1.11,但任务管理器找不到org.apache.flink.metrics.influxdb.InfluxdbReporterFactory WARN org.apache.flink.runtime.metrics.ReporterSetup [] - The reporter factory (org.apache.flink.metrics.influxdb.InfluxdbReporterFactory) could not be found for reporter influxdb. Available factories: [
在Docker上使用InfluxDB v1.8配置SSL时,我遇到了一些问题。
我遵循来启用具有自签名证书的HTTPS,但是容器崩溃时出现了以下错误:
run: open server: open service: open "/etc/ssl/influxdb-selfsigned.crt": no such file or directory
如果我使用docker run命令运行此配置,它就能工作:
docker run -p 8086:8086 -v $PWD/ssl:/etc/ssl \
-e INFLUXDB_DB=db0 \
-e INFLUXDB_ADM
我正在尝试使用docker-compose --build命令构建一个应用程序。但是,我得到以下错误: nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name
'influxDB' defined in class path resource [com/order/app/config/InfluxDatabaseConfig.class]: Bean instantiation via factory method
我不知道如何处理我的问题,因为我找不到类似的例子。
我想设置两个桶流入,以保存telegraf数据,但只有设置与init桶。
这些是我的文件中的两个进水数据库服务:
influxdb:
image: influxdb:latest
volumes:
- ./influxdbv2:/root/.influxdbv2
environment:
# Use these same configurations parameters in your telegraf configuration, mytelegraf.conf.
- DOCKER_INFLUXDB_INIT_MODE=s
我试图在Kubernetes集群上设置Heapster/InfluxDB/Grafana。看起来Heapster正在生成数据,但没有将其发送到InfluxDB。当我查看Heapster吊舱中的eventer容器的容器日志时,日志看起来如下所示:
E1020 18:43:20.006608 52 influxdb.go:147] Failed to create infuxdb: failed to ping InfluxDB server at "monitoring-influxdb:8086" - Get http://monitoring-influxdb:80
这是我第一次使用MQTT,我希望从进水数据库获得数据到雪花,但在这样做之前,我必须:
获取从进水数据库到MQTT的数据,我在网上找不到任何例子。
我尝试的是使用以下脚本将数据从mqtt保存到InfluxDB:
"""A MQTT to InfluxDB Bridge
This script receives MQTT data and saves those to InfluxDB.
"""
import re
from typing import NamedTuple
import paho.mqtt.client as mqt
我试图使用python脚本将JSON文件插入到influxDB数据库中。
我所有的剧本都是通过码头装起来的。
每次我试图打开连接以插入json日志时,都告诉我'InfluxDBClient' object has no attribute 'api_client'
我尝试了很多不同的配置,下面是实际的配置:
from influxdb_client import InfluxDBClient, Point, WriteOptions
from dotenv import load_dotenv
import json
import os
class DB():