Add new scraper page and update other content
parent
cf57236ffb
commit
80e2e888f2
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: Configure Telegraf to collect data into InfluxDB 2.0 OSS
|
||||
seotitle: Configure Telegraf to collect data into InfluxDB 2.0 OSS
|
||||
description: >
|
||||
Configure a Telegraf plugin to start collecting data from InfluxDB 2.0 OSS
|
||||
menu:
|
||||
v2_0:
|
||||
name: Configure Telegraf to collect data
|
||||
parent: Collect data
|
||||
weight: 2
|
||||
---
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Quick start to collecting system metrics from InfluxDB 2.0 OSS
|
||||
seotitle: Quick start to collecting data from InfluxDB 2.0 OSS
|
||||
title: Quick start to collecting system metrics from InfluxDB 2.0
|
||||
seotitle: Quick start to collecting data from InfluxDB 2.0
|
||||
description: >
|
||||
Use the InfluxDB 2.0 user interface to quickly configure Telegraf plugins and start monitoring system statistics.
|
||||
menu:
|
||||
|
@ -10,8 +10,7 @@ menu:
|
|||
weight: 1
|
||||
---
|
||||
|
||||
Follow the steps described here to quickly configure Telegraf plugins and to
|
||||
start collecting system metrics from your InfluxDB 2.0 OSS instance.
|
||||
Follow the steps described here to quickly configure Telegraf plugins and to start collecting system metrics from your InfluxDB 2.0 OSS instance.
|
||||
|
||||
|
||||
## Configure a connection for available Telegraf plugins
|
||||
|
@ -66,3 +65,5 @@ You have now created a dashboard with one cell displaying a system measurement b
|
|||
data collected using the Telegraf plugins and connection that you configured. You can
|
||||
continue to explore the new time series data being collected in your bucket by creating
|
||||
new cells and trying out different visualizations and cell displays.
|
||||
|
||||
For more information on creating InfluxDB 2.0 dashboards, see [Visualize data with InfluxDB](http://v2.dpcs.influxdata.com/v2.0/visualize-data/).
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
title: Scrape Prometheus Node Exporter data
|
||||
seotitle: Scrape Prometheus Node Exporter data
|
||||
description: >
|
||||
Use InfluxDB 2.0 with the Prometheus Node Exporter to scrape, store, and display data.
|
||||
menu:
|
||||
v2_0:
|
||||
name: Scrape data using Prometheus node exporter
|
||||
parent: Collect data
|
||||
weight: 3
|
||||
---
|
||||
|
||||
The [Prometheus Node Exporter](https://github.com/prometheus/node_exporter#node-exporter) and supported collectors capture hardware and OS metrics from third-party systems and translate the data into the popular Prometheus format, which is supported by InfluxDB. You can easily configure Node Exporter-generated output to be scraped into an InfluxDB 2.0 bucket for monitoring in dashboards.
|
||||
|
||||
After you have installed the Prometheus Node Exporter, follow the steps below to configure an InfluxDB 2.0 scraper to collect Node Exporter-generated data into an InfluxDB 2.0 bucket.
|
||||
|
||||
## Configure an InfluxDB scraper for capturing Prometheus Node Explorer data
|
||||
|
||||
Follow the steps here to capture Prometheus format data into an InfluxDB 2.0 bucket.
|
||||
|
||||
1. Open a web browser to your InfluxDB 2.0 instance
|
||||
[localhost:9999](http://localhost:9999). The login screen for the UI (user interface) appears.
|
||||
2. Log in using your username and password. The **Getting started with InfluxDB 2.0** screen appears.
|
||||
3. In the navigation bar on the left, click **Organizations** and then click the name of your organization. The Organization page appears for your organization.
|
||||
4. Click the **Scrapers** tab. A listing of existing scrapers appears, listing the **URL** and the **BUCKET** name.
|
||||
5. Click **Create Scraper**. The **Data Loading** page appears with a for to **Add Scraper Target**.
|
||||
6. In the **Bucket** listing, select the bucket to be used for collecting data from the Prometheus Node Exporter.
|
||||
7. Enter the **Target URL** for the Prometheus `/metrics` HTTP endpoint for the Node Explorer. The default URL value for Node Explorer is `http://localhost:9100/metrics`.
|
||||
8. Click **Finish**. The new scraper for Node Explorer appears as a new row in the listing of scrapers and displays the values for the **URL** and the **BUCKET**.
|
||||
|
||||
The new scraper for the Prometheus Node Exporter is now collecting data into the InfluxDB bucket you specified.
|
||||
|
||||
For information on creating InfluxDB 2.0 dashboards that use the Node Exporter data, see [Visualize data with InfluxDB](http://v2.dpcs.influxdata.com/v2.0/visualize-data/).
|
Loading…
Reference in New Issue