Chronograf is the user interface of the InfluxDB platform. It offers dashboards to visualize time series data, administrative tools, and is also the user interface for Kapacitor.
Questions tagged [chronograf]
53 questions
3
votes
1 answer
chronograf: Not able to add default influxDB connection when using OAuth 2.0
I configured Chronograph to use generic OAuth 2.0 (using cloud foundry UAA). Users authentication works fine but the problem is that the default influxdb connection is not taken into consideration. In fact this configuration works:
chronograf …

Yassine Fadhlaoui
- 327
- 2
- 12
2
votes
3 answers
`missing tag key` when inserting to InfluxDB with inserting with multiple tags
I created a new db mydb on Influxdb.
Next I did use mydb
When I run insert on my db, I run into error -
ERR: {"error":"unable to parse 'angle, userid=1, product=pname value=5.1': missing tag key"}
Here's the insert that I am running -
INSERT…

nkirit
- 379
- 2
- 4
- 13
2
votes
0 answers
Query InfluxDB with CASE or IF statement?
I am gathering metrics from my philips hue bridge and putting them into an InfluxDB. I'd like to be able to display some of these metrics on a dashboard.
A basic query looks like this:
SELECT mean("state.bri") AS "mean_state.bri" FROM…

InfluxNoob
- 21
- 1
- 3
2
votes
1 answer
What language do Kapacitor's alert message templates use?
When I send an alert through Kapacitor, either by defining one directly in TICKscript or by configuring one in Chronograf, I get to specify a Message using a template syntax. However, this syntax isn't documented in any great detail at…

Mark Amery
- 143,130
- 81
- 406
- 459
2
votes
2 answers
Can we set the timezone for influxdb.Chronograf?
I'm currently using chronograf to view my point data in influxdb.
At first the queried results in chronograf seem abnormal to me but I have later worked out the issue to be at timezone differences.
So influxdb could only store data in UTC timezone…

Samuel Toh
- 18,006
- 3
- 24
- 39
1
vote
2 answers
How to transform Numbers to strings in InfluxDB 1.x Dashboards?
The visualization templates I have for creating a dashboard in Chronograf always expect numbers (except table). How can I make it so that I get text instead of a number in certain cases?
For instance:
The logic I want implement is:
if result eq 0…

Gill-Bates
- 559
- 8
- 22
1
vote
0 answers
Unable to use syslogs to process logs in Fluentd and visualize them in InfluxDB
I am following this and this guide to collect logs from syslog and process it in Fluentd and store/visualize in InfluxDB. I have some questions regarding this:
I have td-agent running, influxd, chronograf running. I have set up the syslog.conf file…

SSV
- 149
- 2
- 12
1
vote
0 answers
parse config: toml: type mismatch for teams.Config: expected table but found []map[string]interface {}
I'm trying to add multiple teams configuration on kapacitor to send alerts to different teams channles. I have the following structure for a kapacitor.conf TOML file:
[[serverset]]
enabled = false
id = "myserverset"
timeout =…

Thalendra sahu
- 11
- 1
1
vote
1 answer
How to get a query variable on InfluxDB 2.0 dashboard?
I read the documentation https://docs.influxdata.com/influxdb/v2.0/visualize-data/variables/
I thought great that will be a piece of cake.
I take a look at an existing query variable named bucket:
buckets()
|> filter(fn: (r) => r.name !~ /^_/)
…

Flyer
- 327
- 2
- 14
1
vote
0 answers
Chronograf UI to display all the points for the same time interval
I am trying to show a tabular format for all the data I have in my influxdb on chronograf.
As I have multiple points (data) at the same timestamp it displays only one data for a single timestamp.
I want to show all the data on the chronograf…

Sagufta Parween
- 11
- 1
1
vote
1 answer
How do I configure chronograf to run in a specific port?
I am a newbie in InfluxDB.
I have installed InfluxDB and Chronograf in C:/InfluxDB/ and created this structure:
C:/InfluxDB/influx-data
C:/InfluxDB/influxdb
C:/InfluxDB/chronograf-1.8.4-1
I execute influxd.exe. Everything OK
I execute chronograf.…

Borja Fernández Antelo
- 183
- 3
- 11
1
vote
1 answer
How to send task name instead of alert id in kapacitor?
when an alert triggered in kapacitor, it sends alert id (name of the alert that's defined in chronograf UI), but I need its task name that's generated automatically.
I'm trying to find out which CLEAR event belongs to which CRITICAL event.
In this…

N'bia
- 69
- 7
1
vote
2 answers
chronograf deployment dashboards
I want to deployment dahsboards in chronograf.
curl -i -X GET http://192.168.85.79:8888/chronograf/v1/dashboards/ > mydashboard.json
curl -X POST -H "Content-Type: application/json" \
http://192.168.85.168:8888/chronograf/v1/dashboards \
-d…

Miguel Soares
- 65
- 1
- 2
- 7
1
vote
1 answer
What is the equivalent of a UNION statement
I need to chart physical measurements using Influx. All measurements are stored as series inside a single Influx "measurement".
Some are "current" values like temperatures, other are things like energy meter readings.
The problem is that these need…

andig
- 13,378
- 13
- 61
- 98
1
vote
0 answers
syslog measurement not appearing in influxdb
TL;DR Not able to see syslog logs in influxdb
Environment:
OS: mac os mojave
telegraf version: 1.8
influxdb version: 1.6.4
So I wanted to view logs in chronograf and figured out from the set of input plugins offered in telegraf to use the syslog…

Adarsh
- 3,273
- 3
- 20
- 44