I'd like to use the Jolokia Telegraf plugin to collect JMX metrics and push them to QuestDB. However, the Jolokia plugin creates tags with dots and QuestDB does not support dots in column names. Is there any solution to this?
Column names with dots in QuestDB?
115 Views Asked by Jaromir Hamala At
1
There are 1 best solutions below
Related Questions in TELEGRAF
- Telegraf input.exec not working with json
- telegraf service not able to retrieve data using the journalctl commands
- database "telegraf" creation failed: 401 Unauthorized
- How to test a text handler in telegraf.js
- Observing Error in plugin: metric parse error: while executing the telegraf
- Influxdb data source in grafana shows "datasource is working. 0 measurements found"
- How can I send data from influxdb to MQTT?
- TOML loading config error with my pattern
- Cannot read properties of undefined (reading 'enter')
- I have the following error in Telegraf when sending data from influxdb to mqt
- Getting ETIMEDOUT while running Telegraf bot in docker container with network mode host
- Sending logs from local to aws s3 using telegraf
- Error Listening for Data message while connecting telegraf with influx database
- Implementing gRPC DialOut streaming of metrics
- Telegraf input plugin for SNMP stopped polling
Related Questions in QUESTDB
- Error "cannot delete file, will retry" in log
- How can I tell that a query runs multi-threaded in QuestDB?
- What transports should I use for QuestDB ingestion over the ILP protocol?
- Slow SELECT statement, possibly due to WHERE?
- Sum column depending on values from another column on a single row (Pivot columns)
- How to add Basic Auth to a Caddy config with TLS and auto renewal to Serve QuestDB via Docker
- How to import nanosecond timestamps into QuestDB via http csv import?
- How to use server-side SQL cursors with Python and QuestDB?
- In QuestDB how to efficiently query all the data for time range between 14:30 and 21:00 any day?
- Is it possible to rewrite SAMPLE BY query as GROUP BY in QuestDB?
- Is there LAG window function or equivalent in QuestDB?
- How to calculate hourly electricity consumption in QuestDB?
- Powershell command to upload CSV to QuestDB
- Why is `last` Aggregation Slower than `ORDER BY` and `LIMIT`?
- Reducing ILP Ingestion Delay in QuestDB
Related Questions in JOLOKIA
- How to run Jolokia on Intelliji
- Can someone give me a reference to enable /actuator/jolokia on a Spring Boot application version 3.1.5
- ActiveMQ Artemis management console fails to load due to Jolokia endpoint timeout. No error logs. Where to start debugging?
- Column names with dots in QuestDB?
- Report ActiveMQ Artemis metrics using Telegraf jolokia2_agent plugin
- Getting MBean values for JDBC pools by means of Jolokia
- How to configure jolokia to get metrics from a hadoop node/cluster
- how to track which users are making what JMX calls via logs for hawtio in tomcat
- Jolokia returns "HTTP ERROR 401 Unauthorized" in Opendaylight when trying to set up clustering
- ActiveMQ Artemis Jolokia returns Status "404"
- Jolokia-agent cannot find path
- how to send metrics to influx oss2 using jolokia in telegraf config?
- Hawtio-online - No containers are showing
- Attaching Jolokia to kafka brokers deployed using Strimzi operator
- ActiveMQ Artemis how to filter message by part of the "text" field
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You could use the Telegraf rename plugin to replace the dot with e.g. underscore:
_From the rename plugin documentation: