commit
f6b0cc903a
|
@ -10,6 +10,7 @@
|
||||||
1. [#1378](https://github.com/influxdata/chronograf/pull/1378): Save query time range for dashboards
|
1. [#1378](https://github.com/influxdata/chronograf/pull/1378): Save query time range for dashboards
|
||||||
1. [#1365](https://github.com/influxdata/chronograf/pull/1365): Show red indicator on Hosts Page for an offline host
|
1. [#1365](https://github.com/influxdata/chronograf/pull/1365): Show red indicator on Hosts Page for an offline host
|
||||||
1. [#1373](https://github.com/influxdata/chronograf/pull/1373): Re-address dashboard cell stacking contexts
|
1. [#1373](https://github.com/influxdata/chronograf/pull/1373): Re-address dashboard cell stacking contexts
|
||||||
|
1. [#602](https://github.com/influxdata/chronograf/pull/602): Normalize terminology in app
|
||||||
|
|
||||||
## v1.2.0-beta10 [2017-04-28]
|
## v1.2.0-beta10 [2017-04-28]
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ const HostsTable = React.createClass({
|
||||||
onClick={() => this.updateSort('name')}
|
onClick={() => this.updateSort('name')}
|
||||||
className={this.sortableClasses('name')}
|
className={this.sortableClasses('name')}
|
||||||
>
|
>
|
||||||
Hostname
|
Host
|
||||||
</th>
|
</th>
|
||||||
<th
|
<th
|
||||||
onClick={() => this.updateSort('deltaUptime')}
|
onClick={() => this.updateSort('deltaUptime')}
|
||||||
|
@ -262,7 +262,7 @@ const SearchBar = React.createClass({
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
className="form-control"
|
className="form-control"
|
||||||
placeholder="Filter by Hostname..."
|
placeholder="Filter by Host..."
|
||||||
ref="searchInput"
|
ref="searchInput"
|
||||||
onChange={this.handleChange}
|
onChange={this.handleChange}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -152,7 +152,7 @@ export const KapacitorRule = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.thresholdValueEmpty() || this.relativeValueEmpty()) {
|
if (this.thresholdValueEmpty() || this.relativeValueEmpty()) {
|
||||||
return 'Please enter a value in the Values section'
|
return 'Please enter a value in the Rule Conditions section'
|
||||||
}
|
}
|
||||||
|
|
||||||
return ''
|
return ''
|
||||||
|
|
|
@ -28,11 +28,11 @@ const KapacitorRules = ({
|
||||||
</PageContents>
|
</PageContents>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
const tableHeader = rules.length === 1 ? '1 Alert Rule' : `${rules.length} Alert Rules`
|
||||||
return (
|
return (
|
||||||
<PageContents source={source}>
|
<PageContents source={source}>
|
||||||
<div className="panel-heading u-flex u-ai-center u-jc-space-between">
|
<div className="panel-heading u-flex u-ai-center u-jc-space-between">
|
||||||
<h2 className="panel-title">Alert Rules</h2>
|
<h2 className="panel-title">{tableHeader}</h2>
|
||||||
<Link
|
<Link
|
||||||
to={`/sources/${source.id}/alert-rules/new`}
|
to={`/sources/${source.id}/alert-rules/new`}
|
||||||
className="btn btn-sm btn-primary"
|
className="btn btn-sm btn-primary"
|
||||||
|
@ -55,7 +55,7 @@ const PageContents = ({children, source}) => (
|
||||||
<div className="page-header">
|
<div className="page-header">
|
||||||
<div className="page-header__container">
|
<div className="page-header__container">
|
||||||
<div className="page-header__left">
|
<div className="page-header__left">
|
||||||
<h1 className="page-header__title">Kapacitor Rules</h1>
|
<h1 className="page-header__title">Alert Rules</h1>
|
||||||
</div>
|
</div>
|
||||||
<div className="page-header__right">
|
<div className="page-header__right">
|
||||||
<SourceIndicator sourceName={source && source.name} />
|
<SourceIndicator sourceName={source && source.name} />
|
||||||
|
|
|
@ -8,7 +8,7 @@ const KapacitorRulesTable = ({source, rules, onDelete, onChangeRuleStatus}) => {
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Trigger</th>
|
<th>Rule Type</th>
|
||||||
<th>Message</th>
|
<th>Message</th>
|
||||||
<th>Alerts</th>
|
<th>Alerts</th>
|
||||||
<th className="text-center">Enabled</th>
|
<th className="text-center">Enabled</th>
|
||||||
|
|
|
@ -23,7 +23,7 @@ export const ValuesSection = React.createClass({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="kapacitor-rule-section">
|
<div className="kapacitor-rule-section">
|
||||||
<h3 className="rule-section-heading">Values</h3>
|
<h3 className="rule-section-heading">Rule Conditions</h3>
|
||||||
<div className="rule-section-body">
|
<div className="rule-section-body">
|
||||||
<Tabs initialIndex={initialIndex} onSelect={this.handleChooseTrigger}>
|
<Tabs initialIndex={initialIndex} onSelect={this.handleChooseTrigger}>
|
||||||
<TabList isKapacitorTabs="true">
|
<TabList isKapacitorTabs="true">
|
||||||
|
|
|
@ -65,7 +65,7 @@ const SideNav = React.createClass({
|
||||||
Alert History
|
Alert History
|
||||||
</NavListItem>
|
</NavListItem>
|
||||||
<NavListItem link={`${sourcePrefix}/alert-rules`}>
|
<NavListItem link={`${sourcePrefix}/alert-rules`}>
|
||||||
Kapacitor Rules
|
Alert Rules
|
||||||
</NavListItem>
|
</NavListItem>
|
||||||
</NavBlock>
|
</NavBlock>
|
||||||
<NavBlock icon="crown2" link={`${sourcePrefix}/admin`}>
|
<NavBlock icon="crown2" link={`${sourcePrefix}/admin`}>
|
||||||
|
|
Loading…
Reference in New Issue