feat(ui): let the user know about more telegraf plugins (#16047)

pull/16066/head
Alex Boatwright 2019-11-26 13:28:01 -08:00 committed by GitHub
parent a90899ebf2
commit ca60ea4868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -1,7 +1,6 @@
// Libraries
import React, {PureComponent} from 'react'
import {connect} from 'react-redux'
import _ from 'lodash'
// Components
import {Form} from '@influxdata/clockface'
@ -71,6 +70,22 @@ export class SelectCollectorsStep extends PureComponent<Props> {
onSelectBucket={this.handleSelectBucket}
/>
)}
<h5 className="wizard-step--sub-title">
Looking for other things to monitor? Check out our 200+ other &nbsp;
<a
href="https://v2.docs.influxdata.com/v2.0/reference/telegraf-plugins/#input-plugins"
target="_blank"
>
Telegraf Plugins
</a>
&nbsp; and how to &nbsp;
<a
href="https://v2.docs.influxdata.com/v2.0/write-data/use-telegraf/manual-config/"
target="_blank"
>
Configure these Plugins
</a>
</h5>
</FancyScrollbar>
<OnboardingButtons
autoFocusNext={true}