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
1
vote
1 answer
How to debug batch query in Kapacitor
As I understand in log we can see only discrete values and can not see table of values in series
with any aggregation functions
batch
|query('''SELECT sum("gauge") *** ''')
***
|mean('sum_gauge')
|log()
log() return Kapacitor point…

AZ-
- 113
- 1
- 10
1
vote
1 answer
Influx: doing math the same fields in different groups
I have InfluxDB measurement currently set up with following "schema":
+----+-------------+-----------+
| ts | cost(field) | type(tag) |
+----+-------------+-----------+
| 1 | 10 | 'a' |
| 1 | 20 | 'b' |
| 2 | 12 …

ymoiseev
- 416
- 5
- 18
0
votes
0 answers
Alert handle based on multiple fields in kapacitor
I want to create alert in Kapacitor. I used http input plugin in telegraf to fetch data from endpoint after each 10 seconds. So telegraf fetched following data for each request:
{[{"id": "id1", "threshold": 100}, {"id": "id2", "threshold": 190},…

Rupesh Shinde
- 91
- 8
0
votes
0 answers
The influxdb and chronograph showing no result
I am maintaining a MVP web based app in windows.
The previous developer has been using the influxdb and chronograph to record most used controllers in 10 minutes, 1 hour, and 1 day interval.
Following his documentation, these are steps I did :
Go…

eko
- 33
- 4
0
votes
1 answer
Chronograf chart is failing with Startup probe failed
I have installed this chart on brand new GKE private cluster but it is failing with
Type Reason Age From Message
---- ------ …

Dims
- 47,675
- 117
- 331
- 600
0
votes
0 answers
Can't connect chronograf to influxdb2
I installed influxdata/influxdb2 and influxdata/chronograf with default-values.
I can successfully log in to InfluxDB-UI after port-forwarding to localhost and reading the admin-password from the kubernetes-secret. However, if I try to set up…

Tim Hilt
- 605
- 5
- 23
0
votes
0 answers
Chronograf kapacitor tick script count tags
The influxdb have measurements and tags. In the Chronograf shows like
Measurements xxx
tag1
value1
value2
tag2
thats shows tag1 have 2 values. any ideal to write it at TickScript?
does it's only works on query? I tried as "select columns…

D999_X
- 3
- 5
0
votes
0 answers
Kapacitor TICKscript name is undefined
I try to use tags "tolalTime" / tags "totalCount":
var avgSeconds = lambda: "totalTime" / "totalCount"
and use avgSeconds in |alert() message
.message('avgSeconds='+avgSeconds+'s')
. And get "invalid TICKscript: name "totalTime" is undefined. Names…

D999_X
- 3
- 5
0
votes
0 answers
Is it possible to define routing in chronograph dashboards?
I have a panel with a table view of all cryptocurrency pairs (it can be a list of all currency pair with so aggregated data related to each of them).
When I click on any row of this table, I want to see some panels (Dashboard) showing data related…

Mohammad Reza Esmaeilzadeh
- 1,313
- 18
- 31
0
votes
1 answer
Docker for chronograf does not start (bin adress already in use)
I have installed influxdb and chronograf without success, so I have decided to install them using docker containers. The thing is that when I start chronograf's container, I receive this error message:
sudo docker start chronograf
Error response…
0
votes
0 answers
Unable to access chronograf UI running on EC2 instance port 8888 in a docker container
I started Chronograf on an EC2 instance on port 8888. My EC2 instance is running Ubuntu. When I ssh into the instance and do
curl :8888
I get a valid response.
Now when I try to go the URL http://:8888 from a…

user2464953
- 131
- 3
- 12
0
votes
1 answer
dynamic template variables values based on other template variables in influxdb - chronograf
I have two template variables and I want that after selecting first template variable from dropdown, second template variable should be dynamic based on first variable value.
let me clear this scenario with an example:
assume I have this…

siddharth pal
- 78
- 6
0
votes
1 answer
InfluxDB in docker-compose not able to allow connections
I am trying to set up TICK-Stack together with RabbitMQ in docker-compose, but I fail on connecting anything to InfluxDB. Whatever I try I always get a connection refused error. Can someone explain to me how to set this stack up so it works?
What I…

nino
- 841
- 1
- 14
- 30
0
votes
0 answers
Measuring duration of series - InfluxDB 1.8
I can't for the life of it figure out how to get the length or duration of a series within a given time frame in InfluxDB 1.8.
I need this to calculate kWh from a kW reading, but I would have thought lots of people would need this to e.g. calculate…

maqs
- 3
- 2
0
votes
2 answers
Docker inter-container communication
I'm facing a relatively simple problem here but I'm starting to wonder why it doesn't work.
I want to start two Docker Containers with Docker Compose: InfluxDB and Chronograph.
Unfortunately, the chronograph does not reach InfluxDB under the given…

A. Fendt
- 77
- 9