Menu
Choose a product
Viewing: v1.15 (latest)
Find another version
Scroll for more
General availability (GA)
Open source
import.string
The import.string block imports custom components from a string and exposes them to the importer.
import.string blocks must be given a label that determines the namespace where custom components are exposed.
Usage
Alloy
import.string "<NAMESPACE>" {
content = <CONTENT>
}Arguments
You can use the following argument with import.string:
| Name | Type | Description | Default | Required |
|---|---|---|---|---|
content | secret or string | The contents of the module to import as a secret or string. | yes |
content is a string that contains the configuration of the module to import.
content is typically loaded by using the exports of another component. For example,
local.file.<LABEL>.contentremote.http.<LABEL>.contentremote.s3.<LABEL>.content
Example
This example imports a module from the content of a file stored in an S3 bucket and instantiates a custom component from the import that adds two numbers:
Alloy
remote.s3 "module" {
path = "s3://test-bucket/module.alloy"
}
import.string "math" {
content = remote.s3.module.content
}
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.