Menu
Choose a product
Viewing: v0.44 (latest)
Find another version
Scroll for more
Caution
Grafana Agent has reached End-of-Life (EOL) on November 1, 2025. Agent is no longer receiving vendor support and will no longer receive security or bug fixes. Current users of Agent Static mode, Agent Flow mode, and Agent Operator should proceed with migrating to Grafana Alloy. If you have already migrated to Alloy, no further action is required. Read more about why we recommend migrating to Grafana Alloy.
Open source
import.http
import.http retrieves a module from an HTTP server.
Usage
Alloy
import.http "LABEL" {
url = URL
}Arguments
The following arguments are supported:
| Name | Type | Description | Default | Required |
|---|---|---|---|---|
url | string | URL to poll. | yes | |
method | string | Define the HTTP method for the request. | "GET" | no |
headers | map(string) | Custom headers for the request. | {} | no |
poll_frequency | duration | Frequency to poll the URL. | "1m" | no |
poll_timeout | duration | Timeout when polling the URL. | "10s" | no |
Example
This example imports custom components from an HTTP response and instantiates a custom component for adding two numbers:
Alloy
declare "add" {
argument "a" {}
argument "b" {}
export "sum" {
value = argument.a.value + argument.b.value
}
}Alloy
import.http "math" {
url = SERVER_URL
}
math.add "default" {
a = 15
b = 45
}Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Getting started with Grafana dashboard design
In this webinar, you'll learn how to design stylish and easily accessible Grafana dashboards that tell a story.
Video

Building advanced Grafana dashboards
In this webinar, we’ll demo how to build and format Grafana dashboards.
Video

How to get started with OpenTelemetry and Grafana
This webinar covers the essentials of instrumentation and demonstrates how to visualize OpenTelemetry data seamlessly within Grafana and Grafana Cloud.