diff --git a/docs/docs_updated_test.go b/docs/docs_updated_test.go index 162fc11d5115..f041334d1e47 100644 --- a/docs/docs_updated_test.go +++ b/docs/docs_updated_test.go @@ -17,7 +17,7 @@ import ( var fixTestsFlag = flag.Bool("fix-tests", false, "update the test files with the current generated content") -func TestCompatibleComponentsSectionsUpdated(t *testing.T) { +func TestLinksToTypesSectionsUpdated(t *testing.T) { for _, name := range component.AllNames() { t.Run(name, func(t *testing.T) { runForGenerator(t, generator.NewLinksToTypesGenerator(name)) @@ -40,6 +40,13 @@ func TestCompatibleComponentsPageUpdated(t *testing.T) { } func runForGenerator(t *testing.T, g generator.DocsGenerator) { + if *fixTestsFlag { + err := g.Write() + require.NoError(t, err, "failed to write generated content for: %q", g.Name()) + t.Log("updated the docs with generated content", g.Name()) + return + } + generated, err := g.Generate() require.NoError(t, err, "failed to generate: %q", g.Name()) @@ -51,12 +58,6 @@ func runForGenerator(t *testing.T, g generator.DocsGenerator) { return } - if *fixTestsFlag && generated != "" { - err = g.Write() - require.NoError(t, err, "failed to write generated content for: %q", g.Name()) - t.Log("updated the docs with generated content", g.Name()) - } - actual, err := g.Read() require.NoError(t, err, "failed to read existing generated docs for %q, try running 'go generate ./docs'", g.Name()) require.Contains( diff --git a/docs/generator/compatible_components_page.go b/docs/generator/compatible_components_page.go index 011f2060cf41..9b20fe8d5d6d 100644 --- a/docs/generator/compatible_components_page.go +++ b/docs/generator/compatible_components_page.go @@ -74,9 +74,22 @@ func listOfComponentsExporting(dataType metadata.Type) string { } func listOfLinksToComponents(components []string) string { + groups := make(map[string][]string) + str := "" - for _, comp := range components { - str += fmt.Sprintf(" - [`%[1]s`]({{< relref \"../components/%[1]s.md\" >}})\n", comp) + + for _, component := range components { + parts := strings.SplitN(component, ".", 2) + namespace := parts[0] + groups[namespace] = append(groups[namespace], component) + } + + for namespace, components := range groups { + str += fmt.Sprintf("\n{{< collapse title=%q >}}\n", namespace) + for _, component := range components { + str += fmt.Sprintf("- [`%[1]s`]({{< relref \"../components/%[1]s.md\" >}})\n", component) + } + str += fmt.Sprintf("{{< /collapse >}}\n") } return str } diff --git a/docs/generator/component_links.go b/docs/generator/links_to_types.go similarity index 100% rename from docs/generator/component_links.go rename to docs/generator/links_to_types.go diff --git a/docs/sources/flow/reference/compatibility/_index.md b/docs/sources/flow/reference/compatibility/_index.md index 48ad57ad1104..91a80b00558e 100644 --- a/docs/sources/flow/reference/compatibility/_index.md +++ b/docs/sources/flow/reference/compatibility/_index.md @@ -34,11 +34,17 @@ Below are components that _export_ Loki `LogsReceiver` grouped by namespace. Cli on the namespace to expand and see more detail. - - [`loki.echo`]({{< relref "../components/loki.echo.md" >}}) - - [`loki.process`]({{< relref "../components/loki.process.md" >}}) - - [`loki.relabel`]({{< relref "../components/loki.relabel.md" >}}) - - [`loki.write`]({{< relref "../components/loki.write.md" >}}) - - [`otelcol.receiver.loki`]({{< relref "../components/otelcol.receiver.loki.md" >}}) + +{{< collapse title="loki" >}} +- [`loki.echo`]({{< relref "../components/loki.echo.md" >}}) +- [`loki.process`]({{< relref "../components/loki.process.md" >}}) +- [`loki.relabel`]({{< relref "../components/loki.relabel.md" >}}) +- [`loki.write`]({{< relref "../components/loki.write.md" >}}) +{{< /collapse >}} + +{{< collapse title="otelcol" >}} +- [`otelcol.receiver.loki`]({{< relref "../components/otelcol.receiver.loki.md" >}}) +{{< /collapse >}} @@ -47,110 +53,153 @@ Below are components that _consume_ Loki `LogsReceiver` grouped by namespace. Cl on the namespace to expand and see more detail. - - [`faro.receiver`]({{< relref "../components/faro.receiver.md" >}}) - - [`loki.process`]({{< relref "../components/loki.process.md" >}}) - - [`loki.relabel`]({{< relref "../components/loki.relabel.md" >}}) - - [`loki.source.api`]({{< relref "../components/loki.source.api.md" >}}) - - [`loki.source.awsfirehose`]({{< relref "../components/loki.source.awsfirehose.md" >}}) - - [`loki.source.azure_event_hubs`]({{< relref "../components/loki.source.azure_event_hubs.md" >}}) - - [`loki.source.cloudflare`]({{< relref "../components/loki.source.cloudflare.md" >}}) - - [`loki.source.docker`]({{< relref "../components/loki.source.docker.md" >}}) - - [`loki.source.file`]({{< relref "../components/loki.source.file.md" >}}) - - [`loki.source.gcplog`]({{< relref "../components/loki.source.gcplog.md" >}}) - - [`loki.source.gelf`]({{< relref "../components/loki.source.gelf.md" >}}) - - [`loki.source.heroku`]({{< relref "../components/loki.source.heroku.md" >}}) - - [`loki.source.journal`]({{< relref "../components/loki.source.journal.md" >}}) - - [`loki.source.kafka`]({{< relref "../components/loki.source.kafka.md" >}}) - - [`loki.source.kubernetes`]({{< relref "../components/loki.source.kubernetes.md" >}}) - - [`loki.source.kubernetes_events`]({{< relref "../components/loki.source.kubernetes_events.md" >}}) - - [`loki.source.podlogs`]({{< relref "../components/loki.source.podlogs.md" >}}) - - [`loki.source.syslog`]({{< relref "../components/loki.source.syslog.md" >}}) - - [`loki.source.windowsevent`]({{< relref "../components/loki.source.windowsevent.md" >}}) - - [`otelcol.exporter.loki`]({{< relref "../components/otelcol.exporter.loki.md" >}}) - - +{{< collapse title="faro" >}} +- [`faro.receiver`]({{< relref "../components/faro.receiver.md" >}}) +{{< /collapse >}} {{< collapse title="loki" >}} -- [`loki.echo`]({{< relref "../components/loki.echo.md" >}}) - [`loki.process`]({{< relref "../components/loki.process.md" >}}) - [`loki.relabel`]({{< relref "../components/loki.relabel.md" >}}) -- [`loki.write`]({{< relref "../components/loki.write.md" >}}) +- [`loki.source.api`]({{< relref "../components/loki.source.api.md" >}}) +- [`loki.source.awsfirehose`]({{< relref "../components/loki.source.awsfirehose.md" >}}) +- [`loki.source.azure_event_hubs`]({{< relref "../components/loki.source.azure_event_hubs.md" >}}) +- [`loki.source.cloudflare`]({{< relref "../components/loki.source.cloudflare.md" >}}) +- [`loki.source.docker`]({{< relref "../components/loki.source.docker.md" >}}) +- [`loki.source.file`]({{< relref "../components/loki.source.file.md" >}}) +- [`loki.source.gcplog`]({{< relref "../components/loki.source.gcplog.md" >}}) +- [`loki.source.gelf`]({{< relref "../components/loki.source.gelf.md" >}}) +- [`loki.source.heroku`]({{< relref "../components/loki.source.heroku.md" >}}) +- [`loki.source.journal`]({{< relref "../components/loki.source.journal.md" >}}) +- [`loki.source.kafka`]({{< relref "../components/loki.source.kafka.md" >}}) +- [`loki.source.kubernetes`]({{< relref "../components/loki.source.kubernetes.md" >}}) +- [`loki.source.kubernetes_events`]({{< relref "../components/loki.source.kubernetes_events.md" >}}) +- [`loki.source.podlogs`]({{< relref "../components/loki.source.podlogs.md" >}}) +- [`loki.source.syslog`]({{< relref "../components/loki.source.syslog.md" >}}) +- [`loki.source.windowsevent`]({{< relref "../components/loki.source.windowsevent.md" >}}) {{< /collapse >}} {{< collapse title="otelcol" >}} -- [`otelcol.receiver.loki`]({{< relref "../components/otelcol.receiver.loki.md" >}}) +- [`otelcol.exporter.loki`]({{< relref "../components/otelcol.exporter.loki.md" >}}) {{< /collapse >}} + + +## Targets + +Targets are a `list(map(string))` - a [list]({{< relref "../../config-language/expressions/types_and_values/#naming-convention" >}}) of [maps]({{< relref "../../config-language/expressions/types_and_values/#naming-convention" >}}) with [string]({{< relref "../../config-language/expressions/types_and_values/#strings" >}}) values. As such, +they can contain different key-value pairs and can be used with a wide range of +components. Some components export Targets with key-value pairs specified in +the reference documentation, while other components accept Targets as arguments. +Some components require Targets to contain specific key-value pairs in order +to work correctly. It is recommended to always check component reference for +details when working with Targets. + +### Exporters +Below are components that _export_ Targets grouped by namespace. Click +on the namespace to expand and see more detail. + - - [`discovery.azure`]({{< relref "../components/discovery.azure.md" >}}) - - [`discovery.consul`]({{< relref "../components/discovery.consul.md" >}}) - - [`discovery.consulagent`]({{< relref "../components/discovery.consulagent.md" >}}) - - [`discovery.digitalocean`]({{< relref "../components/discovery.digitalocean.md" >}}) - - [`discovery.dns`]({{< relref "../components/discovery.dns.md" >}}) - - [`discovery.docker`]({{< relref "../components/discovery.docker.md" >}}) - - [`discovery.dockerswarm`]({{< relref "../components/discovery.dockerswarm.md" >}}) - - [`discovery.ec2`]({{< relref "../components/discovery.ec2.md" >}}) - - [`discovery.eureka`]({{< relref "../components/discovery.eureka.md" >}}) - - [`discovery.file`]({{< relref "../components/discovery.file.md" >}}) - - [`discovery.gce`]({{< relref "../components/discovery.gce.md" >}}) - - [`discovery.hetzner`]({{< relref "../components/discovery.hetzner.md" >}}) - - [`discovery.http`]({{< relref "../components/discovery.http.md" >}}) - - [`discovery.ionos`]({{< relref "../components/discovery.ionos.md" >}}) - - [`discovery.kubelet`]({{< relref "../components/discovery.kubelet.md" >}}) - - [`discovery.kubernetes`]({{< relref "../components/discovery.kubernetes.md" >}}) - - [`discovery.kuma`]({{< relref "../components/discovery.kuma.md" >}}) - - [`discovery.lightsail`]({{< relref "../components/discovery.lightsail.md" >}}) - - [`discovery.linode`]({{< relref "../components/discovery.linode.md" >}}) - - [`discovery.marathon`]({{< relref "../components/discovery.marathon.md" >}}) - - [`discovery.nerve`]({{< relref "../components/discovery.nerve.md" >}}) - - [`discovery.nomad`]({{< relref "../components/discovery.nomad.md" >}}) - - [`discovery.openstack`]({{< relref "../components/discovery.openstack.md" >}}) - - [`discovery.puppetdb`]({{< relref "../components/discovery.puppetdb.md" >}}) - - [`discovery.relabel`]({{< relref "../components/discovery.relabel.md" >}}) - - [`discovery.scaleway`]({{< relref "../components/discovery.scaleway.md" >}}) - - [`discovery.serverset`]({{< relref "../components/discovery.serverset.md" >}}) - - [`discovery.triton`]({{< relref "../components/discovery.triton.md" >}}) - - [`discovery.uyuni`]({{< relref "../components/discovery.uyuni.md" >}}) - - [`local.file_match`]({{< relref "../components/local.file_match.md" >}}) - - [`prometheus.exporter.agent`]({{< relref "../components/prometheus.exporter.agent.md" >}}) - - [`prometheus.exporter.apache`]({{< relref "../components/prometheus.exporter.apache.md" >}}) - - [`prometheus.exporter.azure`]({{< relref "../components/prometheus.exporter.azure.md" >}}) - - [`prometheus.exporter.blackbox`]({{< relref "../components/prometheus.exporter.blackbox.md" >}}) - - [`prometheus.exporter.cadvisor`]({{< relref "../components/prometheus.exporter.cadvisor.md" >}}) - - [`prometheus.exporter.cloudwatch`]({{< relref "../components/prometheus.exporter.cloudwatch.md" >}}) - - [`prometheus.exporter.consul`]({{< relref "../components/prometheus.exporter.consul.md" >}}) - - [`prometheus.exporter.dnsmasq`]({{< relref "../components/prometheus.exporter.dnsmasq.md" >}}) - - [`prometheus.exporter.elasticsearch`]({{< relref "../components/prometheus.exporter.elasticsearch.md" >}}) - - [`prometheus.exporter.gcp`]({{< relref "../components/prometheus.exporter.gcp.md" >}}) - - [`prometheus.exporter.github`]({{< relref "../components/prometheus.exporter.github.md" >}}) - - [`prometheus.exporter.kafka`]({{< relref "../components/prometheus.exporter.kafka.md" >}}) - - [`prometheus.exporter.memcached`]({{< relref "../components/prometheus.exporter.memcached.md" >}}) - - [`prometheus.exporter.mongodb`]({{< relref "../components/prometheus.exporter.mongodb.md" >}}) - - [`prometheus.exporter.mssql`]({{< relref "../components/prometheus.exporter.mssql.md" >}}) - - [`prometheus.exporter.mysql`]({{< relref "../components/prometheus.exporter.mysql.md" >}}) - - [`prometheus.exporter.oracledb`]({{< relref "../components/prometheus.exporter.oracledb.md" >}}) - - [`prometheus.exporter.postgres`]({{< relref "../components/prometheus.exporter.postgres.md" >}}) - - [`prometheus.exporter.process`]({{< relref "../components/prometheus.exporter.process.md" >}}) - - [`prometheus.exporter.redis`]({{< relref "../components/prometheus.exporter.redis.md" >}}) - - [`prometheus.exporter.snmp`]({{< relref "../components/prometheus.exporter.snmp.md" >}}) - - [`prometheus.exporter.snowflake`]({{< relref "../components/prometheus.exporter.snowflake.md" >}}) - - [`prometheus.exporter.squid`]({{< relref "../components/prometheus.exporter.squid.md" >}}) - - [`prometheus.exporter.statsd`]({{< relref "../components/prometheus.exporter.statsd.md" >}}) - - [`prometheus.exporter.unix`]({{< relref "../components/prometheus.exporter.unix.md" >}}) - - [`prometheus.exporter.vsphere`]({{< relref "../components/prometheus.exporter.vsphere.md" >}}) - - [`prometheus.exporter.windows`]({{< relref "../components/prometheus.exporter.windows.md" >}}) + +{{< collapse title="discovery" >}} +- [`discovery.azure`]({{< relref "../components/discovery.azure.md" >}}) +- [`discovery.consul`]({{< relref "../components/discovery.consul.md" >}}) +- [`discovery.consulagent`]({{< relref "../components/discovery.consulagent.md" >}}) +- [`discovery.digitalocean`]({{< relref "../components/discovery.digitalocean.md" >}}) +- [`discovery.dns`]({{< relref "../components/discovery.dns.md" >}}) +- [`discovery.docker`]({{< relref "../components/discovery.docker.md" >}}) +- [`discovery.dockerswarm`]({{< relref "../components/discovery.dockerswarm.md" >}}) +- [`discovery.ec2`]({{< relref "../components/discovery.ec2.md" >}}) +- [`discovery.eureka`]({{< relref "../components/discovery.eureka.md" >}}) +- [`discovery.file`]({{< relref "../components/discovery.file.md" >}}) +- [`discovery.gce`]({{< relref "../components/discovery.gce.md" >}}) +- [`discovery.hetzner`]({{< relref "../components/discovery.hetzner.md" >}}) +- [`discovery.http`]({{< relref "../components/discovery.http.md" >}}) +- [`discovery.ionos`]({{< relref "../components/discovery.ionos.md" >}}) +- [`discovery.kubelet`]({{< relref "../components/discovery.kubelet.md" >}}) +- [`discovery.kubernetes`]({{< relref "../components/discovery.kubernetes.md" >}}) +- [`discovery.kuma`]({{< relref "../components/discovery.kuma.md" >}}) +- [`discovery.lightsail`]({{< relref "../components/discovery.lightsail.md" >}}) +- [`discovery.linode`]({{< relref "../components/discovery.linode.md" >}}) +- [`discovery.marathon`]({{< relref "../components/discovery.marathon.md" >}}) +- [`discovery.nerve`]({{< relref "../components/discovery.nerve.md" >}}) +- [`discovery.nomad`]({{< relref "../components/discovery.nomad.md" >}}) +- [`discovery.openstack`]({{< relref "../components/discovery.openstack.md" >}}) +- [`discovery.puppetdb`]({{< relref "../components/discovery.puppetdb.md" >}}) +- [`discovery.relabel`]({{< relref "../components/discovery.relabel.md" >}}) +- [`discovery.scaleway`]({{< relref "../components/discovery.scaleway.md" >}}) +- [`discovery.serverset`]({{< relref "../components/discovery.serverset.md" >}}) +- [`discovery.triton`]({{< relref "../components/discovery.triton.md" >}}) +- [`discovery.uyuni`]({{< relref "../components/discovery.uyuni.md" >}}) +{{< /collapse >}} + +{{< collapse title="local" >}} +- [`local.file_match`]({{< relref "../components/local.file_match.md" >}}) +{{< /collapse >}} + +{{< collapse title="prometheus" >}} +- [`prometheus.exporter.agent`]({{< relref "../components/prometheus.exporter.agent.md" >}}) +- [`prometheus.exporter.apache`]({{< relref "../components/prometheus.exporter.apache.md" >}}) +- [`prometheus.exporter.azure`]({{< relref "../components/prometheus.exporter.azure.md" >}}) +- [`prometheus.exporter.blackbox`]({{< relref "../components/prometheus.exporter.blackbox.md" >}}) +- [`prometheus.exporter.cadvisor`]({{< relref "../components/prometheus.exporter.cadvisor.md" >}}) +- [`prometheus.exporter.cloudwatch`]({{< relref "../components/prometheus.exporter.cloudwatch.md" >}}) +- [`prometheus.exporter.consul`]({{< relref "../components/prometheus.exporter.consul.md" >}}) +- [`prometheus.exporter.dnsmasq`]({{< relref "../components/prometheus.exporter.dnsmasq.md" >}}) +- [`prometheus.exporter.elasticsearch`]({{< relref "../components/prometheus.exporter.elasticsearch.md" >}}) +- [`prometheus.exporter.gcp`]({{< relref "../components/prometheus.exporter.gcp.md" >}}) +- [`prometheus.exporter.github`]({{< relref "../components/prometheus.exporter.github.md" >}}) +- [`prometheus.exporter.kafka`]({{< relref "../components/prometheus.exporter.kafka.md" >}}) +- [`prometheus.exporter.memcached`]({{< relref "../components/prometheus.exporter.memcached.md" >}}) +- [`prometheus.exporter.mongodb`]({{< relref "../components/prometheus.exporter.mongodb.md" >}}) +- [`prometheus.exporter.mssql`]({{< relref "../components/prometheus.exporter.mssql.md" >}}) +- [`prometheus.exporter.mysql`]({{< relref "../components/prometheus.exporter.mysql.md" >}}) +- [`prometheus.exporter.oracledb`]({{< relref "../components/prometheus.exporter.oracledb.md" >}}) +- [`prometheus.exporter.postgres`]({{< relref "../components/prometheus.exporter.postgres.md" >}}) +- [`prometheus.exporter.process`]({{< relref "../components/prometheus.exporter.process.md" >}}) +- [`prometheus.exporter.redis`]({{< relref "../components/prometheus.exporter.redis.md" >}}) +- [`prometheus.exporter.snmp`]({{< relref "../components/prometheus.exporter.snmp.md" >}}) +- [`prometheus.exporter.snowflake`]({{< relref "../components/prometheus.exporter.snowflake.md" >}}) +- [`prometheus.exporter.squid`]({{< relref "../components/prometheus.exporter.squid.md" >}}) +- [`prometheus.exporter.statsd`]({{< relref "../components/prometheus.exporter.statsd.md" >}}) +- [`prometheus.exporter.unix`]({{< relref "../components/prometheus.exporter.unix.md" >}}) +- [`prometheus.exporter.vsphere`]({{< relref "../components/prometheus.exporter.vsphere.md" >}}) +- [`prometheus.exporter.windows`]({{< relref "../components/prometheus.exporter.windows.md" >}}) +{{< /collapse >}} + +### Consumers +Below are components that _consume_ Targets grouped by namespace. Click +on the namespace to expand and see more detail. + - - [`discovery.relabel`]({{< relref "../components/discovery.relabel.md" >}}) - - [`local.file_match`]({{< relref "../components/local.file_match.md" >}}) - - [`loki.source.docker`]({{< relref "../components/loki.source.docker.md" >}}) - - [`loki.source.file`]({{< relref "../components/loki.source.file.md" >}}) - - [`loki.source.kubernetes`]({{< relref "../components/loki.source.kubernetes.md" >}}) - - [`otelcol.processor.discovery`]({{< relref "../components/otelcol.processor.discovery.md" >}}) - - [`prometheus.scrape`]({{< relref "../components/prometheus.scrape.md" >}}) - - [`pyroscope.scrape`]({{< relref "../components/pyroscope.scrape.md" >}}) + +{{< collapse title="discovery" >}} +- [`discovery.relabel`]({{< relref "../components/discovery.relabel.md" >}}) +{{< /collapse >}} + +{{< collapse title="local" >}} +- [`local.file_match`]({{< relref "../components/local.file_match.md" >}}) +{{< /collapse >}} + +{{< collapse title="loki" >}} +- [`loki.source.docker`]({{< relref "../components/loki.source.docker.md" >}}) +- [`loki.source.file`]({{< relref "../components/loki.source.file.md" >}}) +- [`loki.source.kubernetes`]({{< relref "../components/loki.source.kubernetes.md" >}}) +{{< /collapse >}} + +{{< collapse title="otelcol" >}} +- [`otelcol.processor.discovery`]({{< relref "../components/otelcol.processor.discovery.md" >}}) +{{< /collapse >}} + +{{< collapse title="prometheus" >}} +- [`prometheus.scrape`]({{< relref "../components/prometheus.scrape.md" >}}) +{{< /collapse >}} + +{{< collapse title="pyroscope" >}} +- [`pyroscope.scrape`]({{< relref "../components/pyroscope.scrape.md" >}}) +{{< /collapse >}} diff --git a/docs/sources/flow/reference/components/discovery.azure.md b/docs/sources/flow/reference/components/discovery.azure.md index d9388d9db937..bcb60258adbe 100644 --- a/docs/sources/flow/reference/components/discovery.azure.md +++ b/docs/sources/flow/reference/components/discovery.azure.md @@ -160,4 +160,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.consul.md b/docs/sources/flow/reference/components/discovery.consul.md index fc715679b08e..a2f35c92c99a 100644 --- a/docs/sources/flow/reference/components/discovery.consul.md +++ b/docs/sources/flow/reference/components/discovery.consul.md @@ -178,4 +178,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.consulagent.md b/docs/sources/flow/reference/components/discovery.consulagent.md index cff4a097514f..1ad6f1060190 100644 --- a/docs/sources/flow/reference/components/discovery.consulagent.md +++ b/docs/sources/flow/reference/components/discovery.consulagent.md @@ -140,4 +140,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.digitalocean.md b/docs/sources/flow/reference/components/discovery.digitalocean.md index 8e175b427639..3482349fa3dc 100644 --- a/docs/sources/flow/reference/components/discovery.digitalocean.md +++ b/docs/sources/flow/reference/components/discovery.digitalocean.md @@ -131,4 +131,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.dns.md b/docs/sources/flow/reference/components/discovery.dns.md index 001832a684be..b80a418a166e 100644 --- a/docs/sources/flow/reference/components/discovery.dns.md +++ b/docs/sources/flow/reference/components/discovery.dns.md @@ -105,4 +105,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.docker.md b/docs/sources/flow/reference/components/discovery.docker.md index b438b43bf71a..dc53f7b1226b 100644 --- a/docs/sources/flow/reference/components/discovery.docker.md +++ b/docs/sources/flow/reference/components/discovery.docker.md @@ -226,4 +226,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.dockerswarm.md b/docs/sources/flow/reference/components/discovery.dockerswarm.md index ef5369b02976..ef1c993f8984 100644 --- a/docs/sources/flow/reference/components/discovery.dockerswarm.md +++ b/docs/sources/flow/reference/components/discovery.dockerswarm.md @@ -249,4 +249,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.ec2.md b/docs/sources/flow/reference/components/discovery.ec2.md index deb33fc800ca..7f3726474af5 100644 --- a/docs/sources/flow/reference/components/discovery.ec2.md +++ b/docs/sources/flow/reference/components/discovery.ec2.md @@ -145,4 +145,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.eureka.md b/docs/sources/flow/reference/components/discovery.eureka.md index dac4fbfd9695..08b04f8a79eb 100644 --- a/docs/sources/flow/reference/components/discovery.eureka.md +++ b/docs/sources/flow/reference/components/discovery.eureka.md @@ -151,4 +151,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.file.md b/docs/sources/flow/reference/components/discovery.file.md index 5ef755f0e4d5..6fb97849f7e2 100644 --- a/docs/sources/flow/reference/components/discovery.file.md +++ b/docs/sources/flow/reference/components/discovery.file.md @@ -184,4 +184,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.gce.md b/docs/sources/flow/reference/components/discovery.gce.md index 5fd9cfb5193b..0f479bbf2c16 100644 --- a/docs/sources/flow/reference/components/discovery.gce.md +++ b/docs/sources/flow/reference/components/discovery.gce.md @@ -124,4 +124,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.hetzner.md b/docs/sources/flow/reference/components/discovery.hetzner.md index f0b9a1b226b4..1adfc2a9e723 100644 --- a/docs/sources/flow/reference/components/discovery.hetzner.md +++ b/docs/sources/flow/reference/components/discovery.hetzner.md @@ -187,4 +187,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.http.md b/docs/sources/flow/reference/components/discovery.http.md index ec3c6b7ba224..99c6f335e585 100644 --- a/docs/sources/flow/reference/components/discovery.http.md +++ b/docs/sources/flow/reference/components/discovery.http.md @@ -179,4 +179,5 @@ discovery.http "dynamic_targets" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.ionos.md b/docs/sources/flow/reference/components/discovery.ionos.md index 576ba1fb2175..8e2b6e88dbb3 100644 --- a/docs/sources/flow/reference/components/discovery.ionos.md +++ b/docs/sources/flow/reference/components/discovery.ionos.md @@ -151,4 +151,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.kubelet.md b/docs/sources/flow/reference/components/discovery.kubelet.md index 6d064b5d1a24..7a4dd8743c22 100644 --- a/docs/sources/flow/reference/components/discovery.kubelet.md +++ b/docs/sources/flow/reference/components/discovery.kubelet.md @@ -204,4 +204,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.kubernetes.md b/docs/sources/flow/reference/components/discovery.kubernetes.md index 70ee60b90893..c566cde0c9a8 100644 --- a/docs/sources/flow/reference/components/discovery.kubernetes.md +++ b/docs/sources/flow/reference/components/discovery.kubernetes.md @@ -504,4 +504,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.kuma.md b/docs/sources/flow/reference/components/discovery.kuma.md index 3ab2d2b4cabf..344f004650ab 100644 --- a/docs/sources/flow/reference/components/discovery.kuma.md +++ b/docs/sources/flow/reference/components/discovery.kuma.md @@ -146,4 +146,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.lightsail.md b/docs/sources/flow/reference/components/discovery.lightsail.md index da234224b9d8..267c57481182 100644 --- a/docs/sources/flow/reference/components/discovery.lightsail.md +++ b/docs/sources/flow/reference/components/discovery.lightsail.md @@ -110,4 +110,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.linode.md b/docs/sources/flow/reference/components/discovery.linode.md index d1248e47ee4d..310619fadd9e 100644 --- a/docs/sources/flow/reference/components/discovery.linode.md +++ b/docs/sources/flow/reference/components/discovery.linode.md @@ -186,4 +186,5 @@ prometheus.remote_write "demo" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.marathon.md b/docs/sources/flow/reference/components/discovery.marathon.md index c892a5c6ccfa..a737a99328a9 100644 --- a/docs/sources/flow/reference/components/discovery.marathon.md +++ b/docs/sources/flow/reference/components/discovery.marathon.md @@ -156,4 +156,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.nerve.md b/docs/sources/flow/reference/components/discovery.nerve.md index 35ff8f6dafae..f2b889e16aac 100644 --- a/docs/sources/flow/reference/components/discovery.nerve.md +++ b/docs/sources/flow/reference/components/discovery.nerve.md @@ -108,4 +108,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.nomad.md b/docs/sources/flow/reference/components/discovery.nomad.md index 0411d59b7257..4f1108e29475 100644 --- a/docs/sources/flow/reference/components/discovery.nomad.md +++ b/docs/sources/flow/reference/components/discovery.nomad.md @@ -157,4 +157,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.openstack.md b/docs/sources/flow/reference/components/discovery.openstack.md index 1b4afaa74685..0f293fa0027e 100644 --- a/docs/sources/flow/reference/components/discovery.openstack.md +++ b/docs/sources/flow/reference/components/discovery.openstack.md @@ -168,4 +168,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.puppetdb.md b/docs/sources/flow/reference/components/discovery.puppetdb.md index e80799cd25b4..914332e465be 100644 --- a/docs/sources/flow/reference/components/discovery.puppetdb.md +++ b/docs/sources/flow/reference/components/discovery.puppetdb.md @@ -167,4 +167,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.relabel.md b/docs/sources/flow/reference/components/discovery.relabel.md index 15f64ee71d34..5612872c2ee3 100644 --- a/docs/sources/flow/reference/components/discovery.relabel.md +++ b/docs/sources/flow/reference/components/discovery.relabel.md @@ -137,4 +137,5 @@ discovery.relabel "keep_backend_only" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.scaleway.md b/docs/sources/flow/reference/components/discovery.scaleway.md index 7bbcb3c8b0b2..8ff9a4aca305 100644 --- a/docs/sources/flow/reference/components/discovery.scaleway.md +++ b/docs/sources/flow/reference/components/discovery.scaleway.md @@ -185,4 +185,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.serverset.md b/docs/sources/flow/reference/components/discovery.serverset.md index 040998ebd3aa..71242e8de978 100644 --- a/docs/sources/flow/reference/components/discovery.serverset.md +++ b/docs/sources/flow/reference/components/discovery.serverset.md @@ -106,4 +106,5 @@ prometheus.remote_write "default" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.triton.md b/docs/sources/flow/reference/components/discovery.triton.md index ea4369eb4568..b9922a502004 100644 --- a/docs/sources/flow/reference/components/discovery.triton.md +++ b/docs/sources/flow/reference/components/discovery.triton.md @@ -140,4 +140,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/discovery.uyuni.md b/docs/sources/flow/reference/components/discovery.uyuni.md index b2aef5901664..cd57b4712ddc 100644 --- a/docs/sources/flow/reference/components/discovery.uyuni.md +++ b/docs/sources/flow/reference/components/discovery.uyuni.md @@ -134,4 +134,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/faro.receiver.md b/docs/sources/flow/reference/components/faro.receiver.md index c4e204cf357d..30da09183512 100644 --- a/docs/sources/flow/reference/components/faro.receiver.md +++ b/docs/sources/flow/reference/components/faro.receiver.md @@ -279,4 +279,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/local.file.md b/docs/sources/flow/reference/components/local.file.md index 0199a088a71c..c6db8284181b 100644 --- a/docs/sources/flow/reference/components/local.file.md +++ b/docs/sources/flow/reference/components/local.file.md @@ -82,3 +82,6 @@ local.file "secret_key" { is_secret = true } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/local.file_match.md b/docs/sources/flow/reference/components/local.file_match.md index 4b8111e46212..ee4ed44bafb9 100644 --- a/docs/sources/flow/reference/components/local.file_match.md +++ b/docs/sources/flow/reference/components/local.file_match.md @@ -160,4 +160,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.echo.md b/docs/sources/flow/reference/components/loki.echo.md index 7d6287cdabef..f632ae34ecf0 100644 --- a/docs/sources/flow/reference/components/loki.echo.md +++ b/docs/sources/flow/reference/components/loki.echo.md @@ -78,4 +78,5 @@ loki.echo "example" { } Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.process.md b/docs/sources/flow/reference/components/loki.process.md index 753f5078fcb4..49992727deee 100644 --- a/docs/sources/flow/reference/components/loki.process.md +++ b/docs/sources/flow/reference/components/loki.process.md @@ -1708,4 +1708,5 @@ loki.process "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.relabel.md b/docs/sources/flow/reference/components/loki.relabel.md index 6cc556546219..6a430250fb4c 100644 --- a/docs/sources/flow/reference/components/loki.relabel.md +++ b/docs/sources/flow/reference/components/loki.relabel.md @@ -126,4 +126,5 @@ loki.relabel "keep_error_only" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.api.md b/docs/sources/flow/reference/components/loki.source.api.md index 00d9e089be68..551d40c9915f 100644 --- a/docs/sources/flow/reference/components/loki.source.api.md +++ b/docs/sources/flow/reference/components/loki.source.api.md @@ -128,4 +128,5 @@ loki.source.api "loki_push_api" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.awsfirehose.md b/docs/sources/flow/reference/components/loki.source.awsfirehose.md index 6c856384a052..5526b1d047cb 100644 --- a/docs/sources/flow/reference/components/loki.source.awsfirehose.md +++ b/docs/sources/flow/reference/components/loki.source.awsfirehose.md @@ -207,4 +207,5 @@ loki.relabel "logging_origin" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.azure_event_hubs.md b/docs/sources/flow/reference/components/loki.source.azure_event_hubs.md index 9ba39ea4db4e..5770c479762f 100644 --- a/docs/sources/flow/reference/components/loki.source.azure_event_hubs.md +++ b/docs/sources/flow/reference/components/loki.source.azure_event_hubs.md @@ -145,4 +145,5 @@ loki.write "example" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.cloudflare.md b/docs/sources/flow/reference/components/loki.source.cloudflare.md index 3dcb57a47b93..c4bc1a394a9d 100644 --- a/docs/sources/flow/reference/components/loki.source.cloudflare.md +++ b/docs/sources/flow/reference/components/loki.source.cloudflare.md @@ -220,4 +220,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.docker.md b/docs/sources/flow/reference/components/loki.source.docker.md index 63517ad28257..e6a67c760d30 100644 --- a/docs/sources/flow/reference/components/loki.source.docker.md +++ b/docs/sources/flow/reference/components/loki.source.docker.md @@ -166,4 +166,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.file.md b/docs/sources/flow/reference/components/loki.source.file.md index 2d92cf84a56b..8351e609bfa3 100644 --- a/docs/sources/flow/reference/components/loki.source.file.md +++ b/docs/sources/flow/reference/components/loki.source.file.md @@ -247,4 +247,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.gcplog.md b/docs/sources/flow/reference/components/loki.source.gcplog.md index 180dd283f4c2..27be9db86326 100644 --- a/docs/sources/flow/reference/components/loki.source.gcplog.md +++ b/docs/sources/flow/reference/components/loki.source.gcplog.md @@ -204,4 +204,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.gelf.md b/docs/sources/flow/reference/components/loki.source.gelf.md index b115ed570d7c..40ecfa04636e 100644 --- a/docs/sources/flow/reference/components/loki.source.gelf.md +++ b/docs/sources/flow/reference/components/loki.source.gelf.md @@ -100,4 +100,5 @@ loki.write "endpoint" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.heroku.md b/docs/sources/flow/reference/components/loki.source.heroku.md index 72e7abcdfbae..5d590c0825bc 100644 --- a/docs/sources/flow/reference/components/loki.source.heroku.md +++ b/docs/sources/flow/reference/components/loki.source.heroku.md @@ -155,4 +155,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.journal.md b/docs/sources/flow/reference/components/loki.source.journal.md index 43dd8856c899..c632bc33568b 100644 --- a/docs/sources/flow/reference/components/loki.source.journal.md +++ b/docs/sources/flow/reference/components/loki.source.journal.md @@ -112,4 +112,5 @@ loki.write "endpoint" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.kafka.md b/docs/sources/flow/reference/components/loki.source.kafka.md index f8473e700e0a..b6630680c7e1 100644 --- a/docs/sources/flow/reference/components/loki.source.kafka.md +++ b/docs/sources/flow/reference/components/loki.source.kafka.md @@ -185,4 +185,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.kubernetes.md b/docs/sources/flow/reference/components/loki.source.kubernetes.md index 0160ffeab403..c78265dae972 100644 --- a/docs/sources/flow/reference/components/loki.source.kubernetes.md +++ b/docs/sources/flow/reference/components/loki.source.kubernetes.md @@ -212,4 +212,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.kubernetes_events.md b/docs/sources/flow/reference/components/loki.source.kubernetes_events.md index 86d2ff54762a..9d08c3a981fc 100644 --- a/docs/sources/flow/reference/components/loki.source.kubernetes_events.md +++ b/docs/sources/flow/reference/components/loki.source.kubernetes_events.md @@ -182,4 +182,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.podlogs.md b/docs/sources/flow/reference/components/loki.source.podlogs.md index 795583cc92cf..e9ebf2377db7 100644 --- a/docs/sources/flow/reference/components/loki.source.podlogs.md +++ b/docs/sources/flow/reference/components/loki.source.podlogs.md @@ -301,4 +301,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.syslog.md b/docs/sources/flow/reference/components/loki.source.syslog.md index 3a11c6e3fdea..2cb6fd06d843 100644 --- a/docs/sources/flow/reference/components/loki.source.syslog.md +++ b/docs/sources/flow/reference/components/loki.source.syslog.md @@ -164,4 +164,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.source.windowsevent.md b/docs/sources/flow/reference/components/loki.source.windowsevent.md index 27d760bf2bc8..777dd0901de4 100644 --- a/docs/sources/flow/reference/components/loki.source.windowsevent.md +++ b/docs/sources/flow/reference/components/loki.source.windowsevent.md @@ -86,4 +86,5 @@ loki.write "endpoint" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/loki.write.md b/docs/sources/flow/reference/components/loki.write.md index c6a081981dfb..b8bf65b034d4 100644 --- a/docs/sources/flow/reference/components/loki.write.md +++ b/docs/sources/flow/reference/components/loki.write.md @@ -244,4 +244,5 @@ Any labels that start with `__` will be removed before sending to the endpoint. Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/mimir.rules.kubernetes.md b/docs/sources/flow/reference/components/mimir.rules.kubernetes.md index 88bc56acc751..b070a54c5701 100644 --- a/docs/sources/flow/reference/components/mimir.rules.kubernetes.md +++ b/docs/sources/flow/reference/components/mimir.rules.kubernetes.md @@ -267,3 +267,6 @@ roleRef: name: grafana-agent apiGroup: rbac.authorization.k8s.io ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/module.file.md b/docs/sources/flow/reference/components/module.file.md index 7e976cb5d861..34c148869557 100644 --- a/docs/sources/flow/reference/components/module.file.md +++ b/docs/sources/flow/reference/components/module.file.md @@ -163,3 +163,6 @@ prometheus.remote_write "grafana_cloud" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/module.git.md b/docs/sources/flow/reference/components/module.git.md index 21e9ad885486..744cc9fe8f54 100644 --- a/docs/sources/flow/reference/components/module.git.md +++ b/docs/sources/flow/reference/components/module.git.md @@ -215,3 +215,6 @@ module.git "add" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/module.http.md b/docs/sources/flow/reference/components/module.http.md index 959fdb48418f..7c30ef653c22 100644 --- a/docs/sources/flow/reference/components/module.http.md +++ b/docs/sources/flow/reference/components/module.http.md @@ -170,3 +170,6 @@ export "redis_targets" { Replace the following: - `REDIS_ADDR`: The address of your Redis instance. - `REDIS_PASSWORD_FILE`: The path to a file containing the password for your Redis instance. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/module.string.md b/docs/sources/flow/reference/components/module.string.md index 497c320ceae8..d8a9ef709656 100644 --- a/docs/sources/flow/reference/components/module.string.md +++ b/docs/sources/flow/reference/components/module.string.md @@ -161,3 +161,6 @@ prometheus.remote_write "grafana_cloud" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.auth.basic.md b/docs/sources/flow/reference/components/otelcol.auth.basic.md index 885eb53f09fa..54202d6be30d 100644 --- a/docs/sources/flow/reference/components/otelcol.auth.basic.md +++ b/docs/sources/flow/reference/components/otelcol.auth.basic.md @@ -77,3 +77,6 @@ otelcol.auth.basic "creds" { ``` [otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.auth.bearer.md b/docs/sources/flow/reference/components/otelcol.auth.bearer.md index 718789603b49..b36f223bc63d 100644 --- a/docs/sources/flow/reference/components/otelcol.auth.bearer.md +++ b/docs/sources/flow/reference/components/otelcol.auth.bearer.md @@ -105,3 +105,6 @@ otelcol.auth.bearer "creds" { [otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}} [otelcol.exporter.otlphttp]: {{< relref "./otelcol.exporter.otlphttp.md" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.auth.headers.md b/docs/sources/flow/reference/components/otelcol.auth.headers.md index bd93a9045e31..d423005e083d 100644 --- a/docs/sources/flow/reference/components/otelcol.auth.headers.md +++ b/docs/sources/flow/reference/components/otelcol.auth.headers.md @@ -117,3 +117,6 @@ otelcol.auth.headers "creds" { ``` [otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.auth.oauth2.md b/docs/sources/flow/reference/components/otelcol.auth.oauth2.md index 3ef5bc26880a..2baa1c693fa0 100644 --- a/docs/sources/flow/reference/components/otelcol.auth.oauth2.md +++ b/docs/sources/flow/reference/components/otelcol.auth.oauth2.md @@ -122,3 +122,6 @@ otelcol.auth.oauth2 "creds" { ``` [otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.auth.sigv4.md b/docs/sources/flow/reference/components/otelcol.auth.sigv4.md index e4fc91df2832..7f6a01af737e 100644 --- a/docs/sources/flow/reference/components/otelcol.auth.sigv4.md +++ b/docs/sources/flow/reference/components/otelcol.auth.sigv4.md @@ -173,3 +173,6 @@ otelcol.auth.sigv4 "creds" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.connector.servicegraph.md b/docs/sources/flow/reference/components/otelcol.connector.servicegraph.md index 6b8f71dbc648..c734f536c3c3 100644 --- a/docs/sources/flow/reference/components/otelcol.connector.servicegraph.md +++ b/docs/sources/flow/reference/components/otelcol.connector.servicegraph.md @@ -219,4 +219,6 @@ Some of the metrics in Mimir may look like this: ``` traces_service_graph_request_total{client="shop-backend",failed="false",server="article-service",client_http_method="DELETE",server_http_method="DELETE"} traces_service_graph_request_failed_total{client="shop-backend",client_http_method="POST",failed="false",server="auth-service",server_http_method="POST"} -``` \ No newline at end of file +``` + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.connector.spanlogs.md b/docs/sources/flow/reference/components/otelcol.connector.spanlogs.md index 99c28fc3b15f..23474edaf6e3 100644 --- a/docs/sources/flow/reference/components/otelcol.connector.spanlogs.md +++ b/docs/sources/flow/reference/components/otelcol.connector.spanlogs.md @@ -279,3 +279,6 @@ For an input trace like this... ] } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.connector.spanmetrics.md b/docs/sources/flow/reference/components/otelcol.connector.spanmetrics.md index 029adcf45f60..26354b3bf4b9 100644 --- a/docs/sources/flow/reference/components/otelcol.connector.spanmetrics.md +++ b/docs/sources/flow/reference/components/otelcol.connector.spanmetrics.md @@ -295,3 +295,6 @@ prometheus.remote_write "mimir" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.exporter.loadbalancing.md b/docs/sources/flow/reference/components/otelcol.exporter.loadbalancing.md index f6951d828cf8..53aa568191e1 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.loadbalancing.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.loadbalancing.md @@ -301,3 +301,6 @@ otelcol.exporter.loadbalancing "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.exporter.logging.md b/docs/sources/flow/reference/components/otelcol.exporter.logging.md index fe0c7886face..7145de6ea0d0 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.logging.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.logging.md @@ -107,3 +107,6 @@ otelcol.exporter.logging "default" { sampling_thereafter = 1 } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.exporter.loki.md b/docs/sources/flow/reference/components/otelcol.exporter.loki.md index f54316d2ebc3..d90cbc44e5ce 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.loki.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.loki.md @@ -170,4 +170,5 @@ loki.write "local" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/otelcol.exporter.otlp.md b/docs/sources/flow/reference/components/otelcol.exporter.otlp.md index 4b244627de03..c620c94367d2 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.otlp.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.otlp.md @@ -214,3 +214,6 @@ otelcol.auth.basic "grafana_cloud_tempo" { password = env("GRAFANA_CLOUD_API_KEY") } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.exporter.otlphttp.md b/docs/sources/flow/reference/components/otelcol.exporter.otlphttp.md index c8242228f8b5..418529cf2ede 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.otlphttp.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.otlphttp.md @@ -155,3 +155,6 @@ otelcol.exporter.otlphttp "tempo" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.exporter.prometheus.md b/docs/sources/flow/reference/components/otelcol.exporter.prometheus.md index 8c8f81d133d1..99236a30accd 100644 --- a/docs/sources/flow/reference/components/otelcol.exporter.prometheus.md +++ b/docs/sources/flow/reference/components/otelcol.exporter.prometheus.md @@ -109,3 +109,6 @@ prometheus.remote_write "mimir" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.extension.jaeger_remote_sampling.md b/docs/sources/flow/reference/components/otelcol.extension.jaeger_remote_sampling.md index 650407ff0a0b..f045d8205817 100644 --- a/docs/sources/flow/reference/components/otelcol.extension.jaeger_remote_sampling.md +++ b/docs/sources/flow/reference/components/otelcol.extension.jaeger_remote_sampling.md @@ -307,3 +307,6 @@ otelcol.extension.jaeger_remote_sampling "example" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.attributes.md b/docs/sources/flow/reference/components/otelcol.processor.attributes.md index 4125de260d9c..c8d8a0fdfeae 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.attributes.md +++ b/docs/sources/flow/reference/components/otelcol.processor.attributes.md @@ -634,3 +634,6 @@ otelcol.processor.attributes "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.batch.md b/docs/sources/flow/reference/components/otelcol.processor.batch.md index 27749b092f9f..709b1c68f5dd 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.batch.md +++ b/docs/sources/flow/reference/components/otelcol.processor.batch.md @@ -227,3 +227,6 @@ otelcol.exporter.otlp "production" { ``` [otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.discovery.md b/docs/sources/flow/reference/components/otelcol.processor.discovery.md index 150bca5feb3e..96189a19667a 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.discovery.md +++ b/docs/sources/flow/reference/components/otelcol.processor.discovery.md @@ -203,4 +203,5 @@ otelcol.processor.discovery "default" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/otelcol.processor.filter.md b/docs/sources/flow/reference/components/otelcol.processor.filter.md index e5220c60e59b..2a3a1272ff9f 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.filter.md +++ b/docs/sources/flow/reference/components/otelcol.processor.filter.md @@ -301,3 +301,6 @@ Some values in the River strings are [escaped][river-strings]: [HasAttrOnDataPoint]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/README.md#hasattrondatapoint [OTTL booleans]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.85.0/pkg/ottl#booleans [OTTL math expressions]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.85.0/pkg/ottl#math-expressions + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.k8sattributes.md b/docs/sources/flow/reference/components/otelcol.processor.k8sattributes.md index 7b323ddaeeea..aab0bed3f228 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.k8sattributes.md +++ b/docs/sources/flow/reference/components/otelcol.processor.k8sattributes.md @@ -410,3 +410,6 @@ prometheus.remote_write "mimir" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.memory_limiter.md b/docs/sources/flow/reference/components/otelcol.processor.memory_limiter.md index ec22aba18ec4..434527e6a109 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.memory_limiter.md +++ b/docs/sources/flow/reference/components/otelcol.processor.memory_limiter.md @@ -109,3 +109,6 @@ configuration. `otelcol.processor.memory_limiter` does not expose any component-specific debug information. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.probabilistic_sampler.md b/docs/sources/flow/reference/components/otelcol.processor.probabilistic_sampler.md index a6e23edf86bb..df9e650fd8da 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.probabilistic_sampler.md +++ b/docs/sources/flow/reference/components/otelcol.processor.probabilistic_sampler.md @@ -145,3 +145,6 @@ otelcol.processor.probabilistic_sampler "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.span.md b/docs/sources/flow/reference/components/otelcol.processor.span.md index 2484054ab7e3..1ea6ca1d697c 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.span.md +++ b/docs/sources/flow/reference/components/otelcol.processor.span.md @@ -388,3 +388,6 @@ otelcol.processor.span "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.tail_sampling.md b/docs/sources/flow/reference/components/otelcol.processor.tail_sampling.md index 990c49b322b1..6cc4dffc6083 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.tail_sampling.md +++ b/docs/sources/flow/reference/components/otelcol.processor.tail_sampling.md @@ -553,3 +553,6 @@ otelcol.exporter.otlp "production" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.processor.transform.md b/docs/sources/flow/reference/components/otelcol.processor.transform.md index 21704f6715d2..ac580605ccdc 100644 --- a/docs/sources/flow/reference/components/otelcol.processor.transform.md +++ b/docs/sources/flow/reference/components/otelcol.processor.transform.md @@ -590,3 +590,6 @@ each `"` with a `\"`, and each `\` with a `\\` inside a [normal][river-strings] [OTTL metric context]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/{{< param "OTEL_VERSION" >}}/pkg/ottl/contexts/ottlmetric/README.md [OTTL datapoint context]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/{{< param "OTEL_VERSION" >}}/pkg/ottl/contexts/ottldatapoint/README.md [OTTL log context]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/{{< param "OTEL_VERSION" >}}/pkg/ottl/contexts/ottllog/README.md + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.jaeger.md b/docs/sources/flow/reference/components/otelcol.receiver.jaeger.md index ce87557ffb9f..1ff88a8f4dd1 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.jaeger.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.jaeger.md @@ -278,3 +278,6 @@ otelcol.exporter.otlp "default" { ## Technical details `otelcol.receiver.jaeger` supports [gzip](https://en.wikipedia.org/wiki/Gzip) for compression. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.kafka.md b/docs/sources/flow/reference/components/otelcol.receiver.kafka.md index 7e167e478645..8506959094a4 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.kafka.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.kafka.md @@ -330,3 +330,6 @@ otelcol.exporter.otlp "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.loki.md b/docs/sources/flow/reference/components/otelcol.receiver.loki.md index c8433e6ea6aa..2648169fb5dd 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.loki.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.loki.md @@ -110,4 +110,5 @@ otelcol.exporter.otlp "default" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/otelcol.receiver.opencensus.md b/docs/sources/flow/reference/components/otelcol.receiver.opencensus.md index 457feaf34cfd..52c915542dfe 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.opencensus.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.opencensus.md @@ -210,3 +210,6 @@ otelcol.exporter.otlp "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.otlp.md b/docs/sources/flow/reference/components/otelcol.receiver.otlp.md index c995dca6d57e..981a5be2c132 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.otlp.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.otlp.md @@ -248,3 +248,6 @@ otelcol.exporter.otlp "default" { ## Technical details `otelcol.receiver.otlp` supports [gzip](https://en.wikipedia.org/wiki/Gzip) for compression. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.prometheus.md b/docs/sources/flow/reference/components/otelcol.receiver.prometheus.md index 25bf3e9f4497..d4335c1fa94f 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.prometheus.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.prometheus.md @@ -99,3 +99,6 @@ otelcol.exporter.otlp "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/otelcol.receiver.zipkin.md b/docs/sources/flow/reference/components/otelcol.receiver.zipkin.md index 1927861df7ad..3ab47c0c121b 100644 --- a/docs/sources/flow/reference/components/otelcol.receiver.zipkin.md +++ b/docs/sources/flow/reference/components/otelcol.receiver.zipkin.md @@ -143,3 +143,6 @@ otelcol.exporter.otlp "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.exporter.agent.md b/docs/sources/flow/reference/components/prometheus.exporter.agent.md index b589920d864d..27db1e667ade 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.agent.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.agent.md @@ -81,4 +81,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.apache.md b/docs/sources/flow/reference/components/prometheus.exporter.apache.md index 1a1b67491bae..d0d58798257d 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.apache.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.apache.md @@ -98,4 +98,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.azure.md b/docs/sources/flow/reference/components/prometheus.exporter.azure.md index c74c330171d7..524ad830de8b 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.azure.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.azure.md @@ -159,4 +159,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.blackbox.md b/docs/sources/flow/reference/components/prometheus.exporter.blackbox.md index 6026c104c0a8..1444f1798ef3 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.blackbox.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.blackbox.md @@ -200,4 +200,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.cadvisor.md b/docs/sources/flow/reference/components/prometheus.exporter.cadvisor.md index a9125b10fcf9..06b11d051f32 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.cadvisor.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.cadvisor.md @@ -136,4 +136,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.cloudwatch.md b/docs/sources/flow/reference/components/prometheus.exporter.cloudwatch.md index 5ad158a79e08..57a978ea372a 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.cloudwatch.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.cloudwatch.md @@ -468,4 +468,5 @@ discovery job, the `type` field of each `discovery_job` must match either the de Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.consul.md b/docs/sources/flow/reference/components/prometheus.exporter.consul.md index 0c88fa563058..7b50cf32645b 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.consul.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.consul.md @@ -108,4 +108,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.dnsmasq.md b/docs/sources/flow/reference/components/prometheus.exporter.dnsmasq.md index 635c9fe94131..70051929bbb6 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.dnsmasq.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.dnsmasq.md @@ -98,4 +98,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.elasticsearch.md b/docs/sources/flow/reference/components/prometheus.exporter.elasticsearch.md index c9078098ed98..dfeed21640f7 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.elasticsearch.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.elasticsearch.md @@ -122,4 +122,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.gcp.md b/docs/sources/flow/reference/components/prometheus.exporter.gcp.md index faa2fb6f0020..14a5f395c1b1 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.gcp.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.gcp.md @@ -183,4 +183,5 @@ prometheus.exporter.gcp "lb_subset_with_filter" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.github.md b/docs/sources/flow/reference/components/prometheus.exporter.github.md index 74509d466587..aa55610e1aae 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.github.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.github.md @@ -106,4 +106,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.kafka.md b/docs/sources/flow/reference/components/prometheus.exporter.kafka.md index 74615924bb9e..7ed7a21a03a9 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.kafka.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.kafka.md @@ -118,4 +118,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.memcached.md b/docs/sources/flow/reference/components/prometheus.exporter.memcached.md index db5ba62afef3..c95d3b5692d8 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.memcached.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.memcached.md @@ -110,4 +110,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.mongodb.md b/docs/sources/flow/reference/components/prometheus.exporter.mongodb.md index cc65ddb08e03..7f2fbf0612a7 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.mongodb.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.mongodb.md @@ -100,4 +100,5 @@ prometheus.remote_write "default" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.mssql.md b/docs/sources/flow/reference/components/prometheus.exporter.mssql.md index b00e7e1a9ee0..ca98fc281163 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.mssql.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.mssql.md @@ -111,4 +111,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.mysql.md b/docs/sources/flow/reference/components/prometheus.exporter.mysql.md index 3308ed0e90d7..a6fa253ae357 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.mysql.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.mysql.md @@ -223,4 +223,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.oracledb.md b/docs/sources/flow/reference/components/prometheus.exporter.oracledb.md index f1438d3148b6..712d4b78bd5d 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.oracledb.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.oracledb.md @@ -111,4 +111,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.postgres.md b/docs/sources/flow/reference/components/prometheus.exporter.postgres.md index e9421a215356..241011428d79 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.postgres.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.postgres.md @@ -224,4 +224,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.process.md b/docs/sources/flow/reference/components/prometheus.exporter.process.md index dfea4a1e8b3d..9a8328e2a761 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.process.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.process.md @@ -144,4 +144,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.redis.md b/docs/sources/flow/reference/components/prometheus.exporter.redis.md index aac630ff3f4c..b12e1a8a0dab 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.redis.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.redis.md @@ -142,4 +142,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.snmp.md b/docs/sources/flow/reference/components/prometheus.exporter.snmp.md index 628fab0a37a5..c0f480e23539 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.snmp.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.snmp.md @@ -209,4 +209,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.snowflake.md b/docs/sources/flow/reference/components/prometheus.exporter.snowflake.md index 8816ae399e1a..6161fbdaaca1 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.snowflake.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.snowflake.md @@ -112,4 +112,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.squid.md b/docs/sources/flow/reference/components/prometheus.exporter.squid.md index 2f0e4967c22b..d2479b50c305 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.squid.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.squid.md @@ -104,4 +104,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.statsd.md b/docs/sources/flow/reference/components/prometheus.exporter.statsd.md index 9d4fefaa7269..4e59f3d679bd 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.statsd.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.statsd.md @@ -137,4 +137,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.unix.md b/docs/sources/flow/reference/components/prometheus.exporter.unix.md index 2424e72030c8..69f63dd28569 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.unix.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.unix.md @@ -420,4 +420,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.vsphere.md b/docs/sources/flow/reference/components/prometheus.exporter.vsphere.md index 1ea614f76c17..38fa50b6ac3e 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.vsphere.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.vsphere.md @@ -95,4 +95,5 @@ prometheus.remote_write "default" { Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.exporter.windows.md b/docs/sources/flow/reference/components/prometheus.exporter.windows.md index 43b032c8ee3e..66a965440f6b 100644 --- a/docs/sources/flow/reference/components/prometheus.exporter.windows.md +++ b/docs/sources/flow/reference/components/prometheus.exporter.windows.md @@ -313,4 +313,5 @@ Replace the following: Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/prometheus.operator.podmonitors.md b/docs/sources/flow/reference/components/prometheus.operator.podmonitors.md index 2bdf486982fd..8abcb6e5160e 100644 --- a/docs/sources/flow/reference/components/prometheus.operator.podmonitors.md +++ b/docs/sources/flow/reference/components/prometheus.operator.podmonitors.md @@ -256,3 +256,6 @@ prometheus.operator.podmonitors "pods" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.operator.probes.md b/docs/sources/flow/reference/components/prometheus.operator.probes.md index 693ae045d0f7..208e5021060d 100644 --- a/docs/sources/flow/reference/components/prometheus.operator.probes.md +++ b/docs/sources/flow/reference/components/prometheus.operator.probes.md @@ -256,3 +256,6 @@ prometheus.operator.probes "probes" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.operator.servicemonitors.md b/docs/sources/flow/reference/components/prometheus.operator.servicemonitors.md index 362abb38d90f..86e2d848573c 100644 --- a/docs/sources/flow/reference/components/prometheus.operator.servicemonitors.md +++ b/docs/sources/flow/reference/components/prometheus.operator.servicemonitors.md @@ -257,3 +257,6 @@ prometheus.operator.servicemonitors "services" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.receive_http.md b/docs/sources/flow/reference/components/prometheus.receive_http.md index 54583a453ed5..cefa967b6d81 100644 --- a/docs/sources/flow/reference/components/prometheus.receive_http.md +++ b/docs/sources/flow/reference/components/prometheus.receive_http.md @@ -129,3 +129,6 @@ prometheus.remote_write "local" { ## Technical details `prometheus.receive_http` uses [snappy](https://en.wikipedia.org/wiki/Snappy_(compression)) for compression. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.relabel.md b/docs/sources/flow/reference/components/prometheus.relabel.md index 9eb0362f82df..86a89fe63d8b 100644 --- a/docs/sources/flow/reference/components/prometheus.relabel.md +++ b/docs/sources/flow/reference/components/prometheus.relabel.md @@ -168,3 +168,6 @@ metric_a{host = "cluster_a/production", __address__ = "cluster_a", app = "backe The two resulting metrics are then propagated to each receiver defined in the `forward_to` argument. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.remote_write.md b/docs/sources/flow/reference/components/prometheus.remote_write.md index ca8ab98051c2..8d29663f8daf 100644 --- a/docs/sources/flow/reference/components/prometheus.remote_write.md +++ b/docs/sources/flow/reference/components/prometheus.remote_write.md @@ -405,3 +405,6 @@ Any labels that start with `__` will be removed before sending to the endpoint. {{< docs/shared source="agent" lookup="/wal-data-retention.md" version="" >}} + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/prometheus.scrape.md b/docs/sources/flow/reference/components/prometheus.scrape.md index 2faac3689604..1c5f7532f918 100644 --- a/docs/sources/flow/reference/components/prometheus.scrape.md +++ b/docs/sources/flow/reference/components/prometheus.scrape.md @@ -299,4 +299,5 @@ Special labels added after a scrape Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/pyroscope.scrape.md b/docs/sources/flow/reference/components/pyroscope.scrape.md index 4a58077c2924..71d246c09427 100644 --- a/docs/sources/flow/reference/components/pyroscope.scrape.md +++ b/docs/sources/flow/reference/components/pyroscope.scrape.md @@ -440,4 +440,5 @@ http://localhost:12345/debug/fgprof?seconds=14 Note that connecting some components may not be feasible or components may require further configuration to make the connection work correctly. Please refer to the linked documentation for more details. + diff --git a/docs/sources/flow/reference/components/pyroscope.write.md b/docs/sources/flow/reference/components/pyroscope.write.md index 45ce439e338e..f2940eb5a321 100644 --- a/docs/sources/flow/reference/components/pyroscope.write.md +++ b/docs/sources/flow/reference/components/pyroscope.write.md @@ -160,3 +160,6 @@ pyroscope.scrape "default" { forward_to = [pyroscope.write.staging.receiver] } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/remote.http.md b/docs/sources/flow/reference/components/remote.http.md index ebf805728bbd..7b6ce60ed8f2 100644 --- a/docs/sources/flow/reference/components/remote.http.md +++ b/docs/sources/flow/reference/components/remote.http.md @@ -155,3 +155,6 @@ prometheus.remote_write "default" { } } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/remote.kubernetes.configmap.md b/docs/sources/flow/reference/components/remote.kubernetes.configmap.md index aba9af2b33f3..003bb21391f1 100644 --- a/docs/sources/flow/reference/components/remote.kubernetes.configmap.md +++ b/docs/sources/flow/reference/components/remote.kubernetes.configmap.md @@ -157,3 +157,6 @@ prometheus.remote_write "default" { This example assumes that the Secret and ConfigMap have already been created, and that the appropriate field names exist in their data. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/remote.kubernetes.secret.md b/docs/sources/flow/reference/components/remote.kubernetes.secret.md index d3996715c772..b0bc46e638d3 100644 --- a/docs/sources/flow/reference/components/remote.kubernetes.secret.md +++ b/docs/sources/flow/reference/components/remote.kubernetes.secret.md @@ -168,3 +168,6 @@ prometheus.remote_write "default" { This example assumes that the Secret and ConfigMap have already been created, and that the appropriate field names exist in their data. + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/remote.s3.md b/docs/sources/flow/reference/components/remote.s3.md index 7e927e11b51f..968fa79269ab 100644 --- a/docs/sources/flow/reference/components/remote.s3.md +++ b/docs/sources/flow/reference/components/remote.s3.md @@ -99,3 +99,6 @@ remote.s3 "data" { path = "s3://test-bucket/file.txt" } ``` + + + \ No newline at end of file diff --git a/docs/sources/flow/reference/components/remote.vault.md b/docs/sources/flow/reference/components/remote.vault.md index a4491bd25c66..24f228e87c8c 100644 --- a/docs/sources/flow/reference/components/remote.vault.md +++ b/docs/sources/flow/reference/components/remote.vault.md @@ -342,3 +342,6 @@ metrics.remote_write "prod" { } } ``` + + + \ No newline at end of file