Will Piers
afd636d174
Fix bug that stopped apps from displaying
2016-12-05 16:54:11 -08:00
Chris Goller
ae5faecba1
Merge pull request #636 from influxdata/jackzampolin-patch-1
...
Add note to auth.md
2016-12-05 18:19:38 -06:00
Andrew Watkins
cea85aed7c
Update CHANGELOG.md
2016-12-02 12:41:14 -08:00
Andrew Watkins
2304b11722
Merge pull request #635 from influxdata/feature/tr-search-by-tag
...
Add ability to filter by tags on hosts
2016-12-02 12:37:37 -08:00
Tim Raymond
7b0f2d93e6
Merge 'master' into feature/tr-search-by-tag
...
Conflicts:
- ui/src/hosts/components/HostsTable.js
Concurrent design changes happened alongside some performance
improvements.
2016-12-02 15:14:42 -05:00
Jack Zampolin
046bd16857
Add note to auth.md
2016-12-02 10:48:04 -08:00
Will Piers
a989828591
Refactor HostsTable for fun and SPEED
2016-12-01 16:46:19 -08:00
Andrew Watkins
312e4f6da2
Merge pull request #632 from influxdata/layout-y-ranges-labels
...
Layout y ranges labels
2016-12-01 11:42:15 -08:00
Nathan Haugo
fa6d987d4a
Merge pull request #634 from influxdata/all-dark-ui
...
All Dark UI
2016-12-01 14:35:38 -05:00
Tim Raymond
19eff0044f
Update changelog
2016-12-01 11:35:00 -05:00
Tim Raymond
2ad07760a2
Add ability to filter by tags on hosts
...
If users have hosts with tags specifying things like fstype=ext3, they
want to be able to filter by that. To facilitate this, we have to
perform additional parsing of the series that we get back from the
initial `SHOW SERIES` that we issue to figure out the apps for hosts.
This is parsed out into an object with a shape like:
```
{
"measurement" : "foo",
"tags" : {
"host" : "skeletor",
"cpu" : "cpu",
"fstype" : "overlay"
}
}
```
The host is extracted and used for looking up apps as before, however
now all tags are also assigned to that host as well. These are then
filtered against in SearchBar.
Performance is less than ideal with large numbers of hosts, causing page
lockup for about 1s each type a character is typed. The `render`
function of HostTable.js is approximately 300ms in some profiles that
I've taken, which seems very high. Upon further investigation, it seems
like `filterHosts` only takes approx 20ms in profiles taken, so the
issue appears to be the render path and not related to this patch.
2016-12-01 11:28:30 -05:00
Alex P
6cc430d4ed
Minor cosmetic change on actions in the sessions dropdown
2016-11-30 18:49:00 -08:00
Alex P
edf43be484
Dark create first source page
2016-11-30 17:26:36 -08:00
Alex P
08ae33bac5
UI microcopy tweak
...
Letting users know filtering only works on the Name column in the table
2016-11-30 17:16:41 -08:00
Alex P
a67d92aa06
User Search Widget polish
...
Had some UI bugs, looks better now
2016-11-30 17:15:08 -08:00
Alex P
9d20adda8a
Hosts Table UI Polish
...
- 1 Host has no S on the end
- No hosts shows loading state
2016-11-30 17:03:28 -08:00
Alex P
40c3771223
Source Mgmt. Layout Polish
2016-11-30 16:42:45 -08:00
Alex P
2a14d37f16
Custom Default Source Label
2016-11-30 16:30:34 -08:00
Alex P
92fc68195b
Moving dark panel styles into dark theme sheet
2016-11-30 16:30:22 -08:00
Alex P
c4bfda14bb
Replace Edit & Delete w/ Icons
...
more compact, don’t need text label to understand
2016-11-30 16:29:53 -08:00
Alex P
78c131c6cf
Dark Modal Styles
2016-11-30 16:29:30 -08:00
Alex P
574f8c2d8d
Fixing dropdown item hover state UI bug
2016-11-30 15:30:32 -08:00
Alex P
fbe272eb14
Dropdown menu polish
...
dropdown actions are included
2016-11-30 15:26:14 -08:00
Alex P
5809476360
Forgot to remove this reference
2016-11-30 15:06:44 -08:00
Andrew Watkins
5470726ca1
Refactor more for more fun and more profit
...
Signed-off-by: Will Piers <willpiers@influxdb.com>
2016-11-30 15:05:51 -08:00
Alex P
abb5409adb
Refactor DE Sessions Dropdown
...
Making the “actions” option generic and a part of generic dropdown
styles. No longer located in the DE header file
2016-11-30 15:00:03 -08:00
Alex P
90c9905afc
Removing commented out UI
...
No plans to build this stuff any time soon
2016-11-30 14:59:00 -08:00
Alex P
0fb483d40e
Removing unused file
2016-11-30 14:56:31 -08:00
Alex P
7459341f65
Merge branch 'master' into all-dark-ui
2016-11-30 14:22:27 -08:00
Will Piers
a7f3d394da
Update range and labels for new layout shape
2016-11-30 14:13:15 -08:00
Chris Goller
5afad83d8b
Allow upper and lower bound to be zero
2016-11-30 14:13:15 -08:00
Andrew Watkins
cdf5bfb1e0
Fix broken test
...
Signed-off-by: Will Piers <willpiers@influxdb.com>
2016-11-30 14:13:15 -08:00
Andrew Watkins
478be6e6ae
Handle multiple ranges supplied by layout
2016-11-30 14:13:15 -08:00
Andrew Watkins
ec61046d8c
Add dygraphSeries prop
2016-11-30 14:13:15 -08:00
Andrew Watkins
33eb58e383
Remove prop requirement'
2016-11-30 14:13:15 -08:00
Andrew Watkins
8536f9d264
Rename fields to labels
...
What we where calling fields in timeSeriesToDygraph is really
a dygraph concept called labels. Simply put, labels are the strings
used in a legend to identify a series. Naming them fields was a bit
confusing as they are really an amalgomation of measurements, fields,
and tags.
2016-11-30 14:13:15 -08:00
Andrew Watkins
3644ab7fd9
Remove requirement from rp prop
2016-11-30 14:13:15 -08:00
Andrew Watkins
db0a4cc5fd
Handle multiple y-axes legend labels
2016-11-30 14:13:15 -08:00
Chris Goller
a9d194ea82
Update documentation for layout labels and ranges
2016-11-30 14:13:15 -08:00
Chris Goller
38394152d6
Update layout ylabel and yrange to be properties of the query.
2016-11-30 14:13:15 -08:00
Will Piers
289c7e00f5
Refactor for fun and profit
2016-11-30 14:12:56 -08:00
Chris Goller
a26844fa51
Merge pull request #633 from influxdata/go-docker-latest
...
Update circle to push latest tag for master builds
2016-11-30 16:09:00 -06:00
Will Piers
bf4efeefc9
Add Y-labels to graphs
2016-11-30 14:04:32 -08:00
Chris Goller
761ec9d66d
Add ylabels and yranges to layouts
2016-11-30 14:04:32 -08:00
Chris Goller
bca14d801b
Update circle to push latest tag for master builds
...
Fix for #631
2016-11-30 16:00:55 -06:00
Alex P
89d3b3ea7e
Merge branch 'master' into all-dark-ui
2016-11-30 12:32:05 -08:00
Alex P
db177fbcbc
Proper cursor on editable rule name
2016-11-30 12:31:43 -08:00
Alex P
d54f986eb3
Pencil icon next to editable name on Rule Builder
2016-11-30 12:29:11 -08:00
Alex P
25801a5f16
Removing previous overrides for Kapacitor themed forms
...
Using modifier classes defined in theme-dark instead
2016-11-30 12:28:56 -08:00
Alex P
5fb23272c0
Kapacitor Theme Inputs
2016-11-30 12:10:20 -08:00