docs-v2/content/v2.0/write-data/scrape-data/scrapable-endpoints.md

46 lines
2.0 KiB
Markdown
Raw Normal View History

---
title: Create scrapable endpoints
seotitle: Create scrapable endpoints for InfluxDB
description: >
2019-03-07 00:20:41 +00:00
InfluxDB scrapers can collect data from any HTTP(S)-accessible endpoint that
returns data in the Prometheus data format.
This article provides links to information about the Prometheus data format
and tools that generate Prometheus-formatted metrics.
2019-05-03 19:43:28 +00:00
aliases:
- /v2.0/collect-data/scrape-data/scrapable-endpoints
menu:
v2_0:
parent: Scrape data
weight: 202
v2.0/tags: [scraper]
---
2019-03-07 00:20:41 +00:00
InfluxDB scrapers can collect data from any HTTP(S)-accessible endpoint that returns data
in the [Prometheus data format](https://prometheus.io/docs/instrumenting/exposition_formats/).
The links below provide information about the Prometheus data format and tools
and clients that generate Prometheus-formatted metrics.
## Prometheus Node Exporter
The [Prometheus Node Exporter](https://github.com/prometheus/node_exporter) exposes
a wide variety of hardware- and kernel-related metrics for **\*nix** systems.
##### Helpful links
[Monitoring linux host metrics with the Node Exporter](https://prometheus.io/docs/guides/node-exporter/)
## Prometheus exporters and integrations
[Prometheus exporters and integrations](https://prometheus.io/docs/instrumenting/exporters/)
export Prometheus metrics from third-party systems or services.
##### Helpful links
[List of third-party exporters](https://prometheus.io/docs/instrumenting/exporters/#third-party-exporters)
[Write a custom Prometheus exporter](https://prometheus.io/docs/instrumenting/writing_exporters/)
## Prometheus client libraries
[Prometheus client libraries](https://prometheus.io/docs/instrumenting/clientlibs/)
instrument applications for each of their respective languages.
2019-03-07 00:20:41 +00:00
Application metrics are output to an HTTP(S) endpoint where they can be scraped.
##### Helpful links
[Instrumenting a Go application for Prometheus](https://prometheus.io/docs/guides/go-application/)
2019-02-26 23:38:03 +00:00
[Writing Prometheus client libraries](https://prometheus.io/docs/instrumenting/writing_clientlibs/)