16
CHANGELOG.md
|
@ -1,5 +1,13 @@
|
|||
## v1.2.0 [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
### Features
|
||||
|
||||
### UI Improvements
|
||||
|
||||
## v1.2.0-beta4 [2017-02-24]
|
||||
|
||||
### Bug Fixes
|
||||
1. [#882](https://github.com/influxdata/chronograf/pull/882): Fix y-axis graph padding
|
||||
2. [#907](https://github.com/influxdata/chronograf/pull/907): Fix react-router warning
|
||||
|
@ -7,7 +15,7 @@
|
|||
|
||||
### Features
|
||||
1. [#873](https://github.com/influxdata/chronograf/pull/873): Add [TLS](https://github.com/influxdata/chronograf/blob/master/docs/tls.md) support
|
||||
2. [#885](https://github.com/influxdata/chronograf/issues/885): Add presentation mode to dashboard page
|
||||
2. [#885](https://github.com/influxdata/chronograf/issues/885): Add presentation mode to the dashboard page
|
||||
3. [#891](https://github.com/influxdata/chronograf/issues/891): Make dashboard visualizations draggable
|
||||
4. [#892](https://github.com/influxdata/chronograf/issues/891): Make dashboard visualizations resizable
|
||||
5. [#893](https://github.com/influxdata/chronograf/issues/893): Persist dashboard visualization position
|
||||
|
@ -15,9 +23,9 @@
|
|||
|
||||
### UI Improvements
|
||||
1. [#905](https://github.com/influxdata/chronograf/pull/905): Make scroll bar thumb element bigger
|
||||
2. [#917](https://github.com/influxdata/chronograf/pull/917): Simplify side navigation
|
||||
3. [#920](https://github.com/influxdata/chronograf/pull/920): Display stacked and step plot graphs
|
||||
4. [#851](https://github.com/influxdata/chronograf/pull/851): Add configuration for Influx Enterprise Meta nodes
|
||||
2. [#917](https://github.com/influxdata/chronograf/pull/917): Simplify the sidebar
|
||||
3. [#920](https://github.com/influxdata/chronograf/pull/920): Display stacked and step plot graph types
|
||||
4. [#851](https://github.com/influxdata/chronograf/pull/851): Add configuration for [InfluxEnterprise](https://portal.influxdata.com/) meta nodes
|
||||
5. [#916](https://github.com/influxdata/chronograf/pull/916): Dynamically scale font size based on resolution
|
||||
|
||||
## v1.2.0-beta3 [2017-02-15]
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
Chronograf is an open-source web application written in Go and React.js that provides the tools to visualize your monitoring data and easily create alerting and automation rules.
|
||||
|
||||
![Chronograf](https://github.com/influxdata/chronograf/blob/master/docs/images/overview-readme.png)
|
||||
<p align="left">
|
||||
<img src="https://github.com/influxdata/chronograf/blob/master/docs/images/overview-readme.png"/>
|
||||
</p>
|
||||
|
||||
## Features
|
||||
|
||||
|
@ -118,7 +120,7 @@ Change the default root path of the Chronograf server with the `--basepath` opti
|
|||
|
||||
## Versions
|
||||
|
||||
Chronograf v1.2.0-beta3 is a beta release.
|
||||
Chronograf v1.2.0-beta4 is a beta release.
|
||||
We will be iterating quickly based on user feedback and recommend using the [nightly builds](https://www.influxdata.com/downloads/) for the time being.
|
||||
|
||||
Spotted a bug or have a feature request?
|
||||
|
|
|
@ -12,13 +12,13 @@ It lists every host that is sending [Telegraf](https://github.com/influxdata/tel
|
|||
|
||||
![Host List](https://github.com/influxdata/chronograf/blob/master/docs/images/host-list-gs.png)
|
||||
|
||||
The Chronograf instance shown above is connected to two hosts (`telegraf-neverland` and `telegraf-narnia`).
|
||||
The first host is using 0.23% of its total CPU and has a load of 0.00.
|
||||
The Chronograf instance shown above is connected to two hosts (`telegraf-narnia` and `telegraf-neverland`).
|
||||
The first host is using 0.43% of its total CPU and has a load of 0.00.
|
||||
It has one configured app: `system`.
|
||||
Apps are Telegraf [input plugins](https://github.com/influxdata/telegraf#input-plugins) that have dashboard templates in Chronograf.
|
||||
|
||||
Click on the app on the `HOST LIST` page to access its dashboard template.
|
||||
The dashboard offers [pre-canned](https://github.com/influxdata/chronograf/tree/master/canned) graphs of the input's data that are currently in InfluxDB.
|
||||
The dashboard offers [pre-created](https://github.com/influxdata/chronograf/tree/master/canned) graphs of the input's data that are currently in InfluxDB.
|
||||
Here's the dashboard template for Telegraf's [system stats](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/system) input plugin:
|
||||
|
||||
![System Graph Layout](https://github.com/influxdata/chronograf/blob/master/docs/images/system-layout-gs.gif)
|
||||
|
@ -71,7 +71,7 @@ It supports three rule types:
|
|||
* Relative Rule - alert if the data change relative to the data in a different time range
|
||||
* Deadman Rule - alert if no data are received for the specified time range
|
||||
|
||||
The example above creates a simple threshold rule that sends an alert when `usage_idle` values are less than 86% within the past minute.
|
||||
The example above creates a simple threshold rule that sends an alert when `usage_idle` values are less than 96%.
|
||||
Notice that the graph provides a preview of the target data and the configured rule boundary.
|
||||
|
||||
Lastly, the `Alert Message` section allows you to personalize the alert message and select an alert endpoint.
|
||||
|
@ -108,3 +108,4 @@ Chronograf-friendly alert rule.
|
|||
>
|
||||
* Currently, the Alerta TICKscript parser requires users to **paste** their existing TICKscript in the text input. The parser does not support manually entering or editing a TICKscript.
|
||||
* The parser requires users to whitespace delimit any services listed in the TICKscript's [`.services()` attribute](https://docs.influxdata.com/kapacitor/latest/nodes/alert_node/#alerta-services).
|
||||
master
|
|
@ -242,7 +242,7 @@ There's no need to enter any information for the `Username` and `Password` input
|
|||
Finally, click `Connect Kapacitor`.
|
||||
|
||||
If Kapacitor successfully connects you'll see an
|
||||
[Alert Endpoints](https://docs.influxdata.com/kapacitor/v1.0/nodes/alert_node/)
|
||||
Configure [Alert Endpoints](https://docs.influxdata.com/kapacitor/v1.0/nodes/alert_node/)
|
||||
section below the `Connection Details` section:
|
||||
|
||||
![Alert Endpoints](https://github.com/influxdata/chronograf/blob/master/docs/images/alert-endpoints.png)
|
||||
|
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 163 KiB After Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 111 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 81 KiB |