Kevin Fitzpatrick
89725fcaca
Warn when we can't ping the kapacitor
2016-11-04 18:31:24 -07:00
Nathan Haugo
ccd98b2b21
Merge pull request #376 from influxdata/feature/rules-index-#307
...
Refactor KapacitorRulePage
2016-11-04 17:30:48 -07:00
Will Piers
20b5c96e29
Refactor KapacitorRulePage to work for new and existing rules, and add new rule button
2016-11-04 16:39:19 -07:00
Kevin Fitzpatrick
39fac80ae7
Fix filtering
...
Also, fixes displaying mutliple alerts with the same name
2016-11-04 16:24:58 -07:00
Chris Goller
8076c5b2cf
Merge pull request #372 from influxdata/fix-kapa-deadman-camels
...
Fix tickscript deadman output and use camelCase
2016-11-04 18:12:41 -05:00
Chris Goller
c67e3cdb36
Fix tickscript deadman output and use camelCase
2016-11-04 18:07:56 -05:00
Kevin Fitzpatrick
617e08adb6
Fix filtering
...
Also, fixes displaying mutliple alerts with the same name
2016-11-04 15:55:19 -07:00
Chris Goller
0ab8d66e41
Merge pull request #368 from influxdata/add-kapa-relative-abs
...
Add relative comparison with absolutes change
2016-11-04 17:29:18 -05:00
Chris Goller
48d658fa23
Add relative comparison with absolutes change
2016-11-04 17:25:57 -05:00
Chris Goller
7fefd96e5e
Merge pull request #365 from influxdata/feature/fix-kapa-percentage
...
Update tickscript to evaluate between [0-100] instead of [0-1]
2016-11-04 17:10:36 -05:00
Kevin Fitzpatrick
f3bc379507
Change Alert -> Name in the alerts table
2016-11-04 15:07:14 -07:00
Kevin Fitzpatrick
96698f8db7
Change Alerts to Alerting
2016-11-04 15:06:12 -07:00
Chris Goller
d7d36c7a90
Update tickscript to evaluate between [0-100] instead of [0-1]
2016-11-04 17:05:18 -05:00
Kevin Fitzpatrick
7afe4b17f6
Display time in iso string
2016-11-04 14:58:28 -07:00
Chris Goller
ea1a474f8d
Merge pull request #364 from influxdata/feature/fix-kapa-lambda
...
Fix tickscript generation of lambda funcs with var fields.
2016-11-04 16:42:59 -05:00
Chris Goller
ff2edfb768
Fix lambda field strings to be double quoted
2016-11-04 16:35:12 -05:00
Chris Goller
640eafb0d8
Fix tickscript generation of lambda funcs with var fields.
2016-11-04 16:28:28 -05:00
Kevin Fitzpatrick
fc690e16a2
Remove link from alert name on AlertsTable
2016-11-04 14:27:13 -07:00
Andrew Watkins
033fe066b2
Merge pull request #363 from influxdata/feature/rules-index-#307
...
Make index page for Kapacitor Rules
2016-11-04 13:57:59 -07:00
Will Piers
a98a533f93
Make index page for Kapacitor Rules
2016-11-04 13:51:09 -07:00
Jade McGough
c51650a2ea
swap position of sources and alerts in side nav
2016-11-04 13:30:43 -07:00
Jade McGough
c2c3ce0dbb
#304 - hide links in sources
2016-11-04 13:29:36 -07:00
Jade McGough
3ea16b488d
#335 - reorder alerts table
2016-11-04 12:47:33 -07:00
nathan haugo
69586e92a0
Add load, change h and w
2016-11-04 12:29:40 -07:00
Will Piers
bf1ffcda74
Updated usage of API in HostPage
2016-11-04 12:19:20 -07:00
Will Piers
2414e11ecd
Make series regex more strict
2016-11-04 12:08:51 -07:00
Nathan Haugo
1059cb8b64
Merge pull request #360 from influxdata/feature/apps
...
Feature/apps
2016-11-04 12:04:56 -07:00
nathan haugo
ad3f03270c
Add cpu and memory, remove disk
2016-11-04 11:58:54 -07:00
Will Piers
6e541dfdb2
Mini refactor
2016-11-04 11:54:59 -07:00
nathan haugo
32723555d6
Add cpu and memory, remove disk
2016-11-04 11:53:28 -07:00
Will Piers
5a5b6c0052
Merge pull request #328 from influxdata/manage-sources-polish
...
Manage Sources Polish
2016-11-04 11:52:50 -07:00
Will Piers
5e6c52ef26
Use measurement, show app name on hosts page
2016-11-04 11:52:16 -07:00
Chris Goller
d4c44c0596
Merge pull request #359 from influxdata/bugfix/tr-mappings-names
...
Make /mappings use App Name instead of ID
2016-11-04 13:27:24 -05:00
Alex P
3dde39fa26
Fixing listing errors
2016-11-04 11:19:31 -07:00
Alex P
8dfd73d8c2
Copy Changes, configure Kapacitor page is cleaner
2016-11-04 11:19:31 -07:00
Alex P
1c652c6765
Adding a little padding to the too of these 3 pages
2016-11-04 11:19:31 -07:00
Alex P
11a34f2989
Updating manage influxdb sources
...
- Adjusted layout slightly
- Fancier checkbox
- Updated copy on create/edit/manage pages
2016-11-04 11:19:31 -07:00
Tim Raymond
ccd3bfe350
Make /mappings use App Name instead of ID
...
Due to developer confusion over nomenclature, the ID was used in lieu of
the Application property of `Layout`. `layout.Application` holds the
user-facing name for a particular layout, and is what should be paired
with a measurement name in the `/mappings` endpoint.
Before
------
```
% curl http://localhost:8888/chronograf/v1/mappings
{
"mappings" : [
{
"name" : "18aed9a7-dc83-406e-a4dc-40d53049541a",
"measurement" : "disk"
}
]
}
```
After
-----
```
% curl http://localhost:8888/chronograf/v1/mappings
{
"mappings" : [
{
"measurement" : "disk",
"name" : "User Facing Application Name"
}
]
}
```
Connect #326
2016-11-04 14:04:50 -04:00
Kevin Fitzpatrick
9aeb26a24b
Merge pull request #339 from influxdata/feature/223-configure-kapacitor-prompt
...
Kapacitor Prompt if missing
2016-11-04 10:52:51 -07:00
Andrew Watkins
90b93ba7a1
Change tasks to rules
2016-11-04 09:36:08 -07:00
Andrew Watkins
4aaf35b2ce
Merge branch 'develop' of github.com:influxdata/chronograf into develop
2016-11-04 08:43:59 -07:00
Ross McDonald
d13bb97ea8
Merge pull request #323 from influxdata/feature/packaging
...
Add packaging scripts
2016-11-04 10:37:51 -05:00
Chris Goller
d48fa554d2
Merge pull request #349 from influxdata/feature/tasks-becomes-rules
...
Update tasks to be called rules
2016-11-04 10:30:23 -05:00
Will Piers
accdc63dc5
Fix syntax
2016-11-04 08:27:26 -07:00
Will Piers
2c4e3c900f
Fix enabledAlerts bug and actually save a rule
2016-11-04 08:25:59 -07:00
Chris Goller
a4474f877f
Update tasks to be called rules
2016-11-04 01:54:39 -05:00
Chris Goller
2c6a71230a
Merge pull request #347 from influxdata/feature/fix-tickscripts
...
Fix bolt scoping and minor kapacitor tickscript updates
2016-11-03 22:37:53 -05:00
Chris Goller
d0bedd78b5
Merge pull request #340 from influxdata/filter-alerts-from-sections
...
Filter out alerts from sections
2016-11-03 22:37:18 -05:00
Chris Goller
73cbc4abc6
Fix bolt scoping and minor kapacitor tickscript updates
2016-11-03 22:25:41 -05:00
Andrew Watkins
34441f419e
Merge branch 'develop' of github.com:influxdata/chronograf into develop
2016-11-03 20:12:34 -07:00