Skip to content

Releases: grafana/agent

v0.30.0

20 Dec 14:48
v0.30.0
4862821
Compare
Choose a tag to compare

This is release v0.30.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Breaking changes

  • The ebpf_exporter integration has been removed due to issues with static
    linking. It may be brought back once these are resolved. (@tpaschalis)

Deprecations

  • The EXPERIMENTAL_ENABLE_FLOW environment variable is deprecated in favor of
    AGENT_MODE=flow. Support for EXPERIMENTAL_ENABLE_FLOW will be removed in
    v0.32. (@rfratto)

Features

  • grafana-agent-operator supports oauth2 as an authentication method for
    remote_write. (@timo-42)

  • Grafana Agent Flow: Add tracing instrumentation and a tracing block to
    forward traces to otelcol component. (@rfratto)

  • Grafana Agent Flow: Add a discovery_target_decode function to decode a JSON
    array of discovery targets corresponding to Prometheus' HTTP and file service
    discovery formats. (@rfratto)

  • New Grafana Agent Flow components:

    • remote.http polls an HTTP URL and exposes the response body as a string
      or secret to other components. (@rfratto)

    • discovery.docker discovers Docker containers from a Docker Engine host.
      (@rfratto)

    • loki.source.file reads and tails files for log entries and forwards them
      to other loki components. (@tpaschalis)

    • loki.write receives log entries from other loki components and sends
      them over to a Loki instance. (@tpaschalis)

    • loki.relabel receives log entries from other loki components and
      rewrites their label set. (@tpaschalis)

    • loki.process receives log entries from other loki components and runs
      one or more processing stages. (@tpaschalis)

    • discovery.file discovers files on the filesystem following glob
      patterns. (@mattdurham)

  • Integrations: Introduce the snowflake integration. (@BinaryFissionGames)

Enhancements

  • Integrations: Always use direct connection in mongodb_exporter integration. (@v-zhuravlev)

  • Update OpenTelemetry Collector dependency to v0.63.1. (@tpaschalis)

  • riverfmt: Permit empty blocks with both curly braces on the same line.
    (@rfratto)

  • riverfmt: Allow function arguments to persist across different lines.
    (@rfratto)

  • Flow: The HTTP server will now start before the Flow controller performs the
    initial load. This allows metrics and pprof data to be collected during the
    first load. (@rfratto)

  • Add support for using a password map file in redis_exporter. (@spartan0x117)

  • Flow: Add support for exemplars in Prometheus component pipelines. (@rfratto)

  • Update Prometheus dependency to v2.40.5. (@rfratto)

  • Update Promtail dependency to k127. (@rfratto)

  • Native histograms are now supported in the static Grafana Agent and in
    prometheus.* Flow components. Native histograms will be automatically
    collected from supported targets. remote_write must be configured to forward
    native histograms from the WAL to the specified endpoints.

  • Flow: metrics generated by upstream OpenTelemetry Collector components are
    now exposed at the /metrics endpoint of Grafana Agent Flow. (@rfratto)

Bugfixes

  • Fix issue where whitespace was being sent as part of password when using a
    password file for redis_exporter. (@spartan0x117)

  • Flow UI: Fix issue where a configuration block referencing a component would
    cause the graph page to fail to load. (@rfratto)

  • Remove duplicate oauth2 key from metricsinstances CRD. (@daper)

  • Fix issue where on checking whether to restart integrations the Integration Manager was comparing
    configs with secret values scrubbed, preventing reloads if only secrets were updated. (@spartan0x117)

Other changes

  • Grafana Agent Flow has graduated from experimental to beta.

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.30.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.30.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.30.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.30.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.30.0"

v0.30.0-rc.0

15 Dec 16:14
v0.30.0-rc.0
a9ab4c4
Compare
Choose a tag to compare
v0.30.0-rc.0 Pre-release
Pre-release

This is release v0.30.0-rc.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Breaking changes

  • The ebpf_exporter integration has been removed due to issues with static
    linking. It may be brought back once these are resolved. (@tpaschalis)

Deprecations

  • The EXPERIMENTAL_ENABLE_FLOW environment variable is deprecated in favor of
    AGENT_MODE=flow. Support for EXPERIMENTAL_ENABLE_FLOW will be removed in
    v0.32. (@rfratto)

Features

  • grafana-agent-operator supports oauth2 as an authentication method for
    remote_write. (@timo-42)

  • Grafana Agent Flow: Add tracing instrumentation and a tracing block to
    forward traces to otelcol component. (@rfratto)

  • Grafana Agent Flow: Add a discovery_target_decode function to decode a JSON
    array of discovery targets corresponding to Prometheus' HTTP and file service
    discovery formats. (@rfratto)

  • New Grafana Agent Flow components:

    • remote.http polls an HTTP URL and exposes the response body as a string
      or secret to other components. (@rfratto)

    • discovery.docker discovers Docker containers from a Docker Engine host.
      (@rfratto)

    • loki.source.file reads and tails files for log entries and forwards them
      to other loki components. (@tpaschalis)

    • loki.write receives log entries from other loki components and sends
      them over to a Loki instance. (@tpaschalis)

    • loki.relabel receives log entries from other loki components and
      rewrites their label set. (@tpaschalis)

    • loki.process receives log entries from other loki components and runs
      one or more processing stages. (@tpaschalis)

    • discovery.file discovers files on the filesystem following glob
      patterns. (@mattdurham)

  • Integrations: Introduce the snowflake integration. (@BinaryFissionGames)

Enhancements

  • Integrations: Always use direct connection in mongodb_exporter integration. (@v-zhuravlev)

  • Update OpenTelemetry Collector dependency to v0.63.1. (@tpaschalis)

  • riverfmt: Permit empty blocks with both curly braces on the same line.
    (@rfratto)

  • riverfmt: Allow function arguments to persist across different lines.
    (@rfratto)

  • Flow: The HTTP server will now start before the Flow controller performs the
    initial load. This allows metrics and pprof data to be collected during the
    first load. (@rfratto)

  • Add support for using a password map file in redis_exporter. (@spartan0x117)

  • Flow: Add support for exemplars in Prometheus component pipelines. (@rfratto)

  • Update Prometheus dependency to v2.40.5. (@rfratto)

  • Update Promtail dependency to k127. (@rfratto)

  • Native histograms are now supported in the static Grafana Agent and in
    prometheus.* Flow components. Native histograms will be automatically
    collected from supported targets. remote_write must be configured to forward
    native histograms from the WAL to the specified endpoints.

  • Flow: metrics generated by upstream OpenTelemetry Collector components are
    now exposed at the /metrics endpoint of Grafana Agent Flow. (@rfratto)

Bugfixes

  • Fix issue where whitespace was being sent as part of password when using a
    password file for redis_exporter. (@spartan0x117)

  • Flow UI: Fix issue where a configuration block referencing a component would
    cause the graph page to fail to load. (@rfratto)

  • Remove duplicate oauth2 key from metricsinstances CRD. (@daper)

  • Fix issue where on checking whether to restart integrations the Integration Manager was comparing
    configs with secret values scrubbed, preventing reloads if only secrets were updated. (@spartan0x117)

Other changes

  • Grafana Agent Flow has graduated from experimental to beta.

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.30.0-rc.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.30.0-rc.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.30.0-rc.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.30.0-rc.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.30.0-rc.0"

v0.29.0

08 Nov 15:50
v0.29.0
bdcc4c6
Compare
Choose a tag to compare

This is release v0.29.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Breaking changes

  • JSON-encoded traces from OTLP versions earlier than 0.16.0 are no longer
    supported. (@rfratto)

Deprecations

  • The binary names agent, agentctl, and agent-operator have been
    deprecated and will be renamed to grafana-agent, grafana-agentctl, and
    grafana-agent-operator in the v0.31.0 release.

Features

  • Add agentctl test-logs command to allow testing log configurations by redirecting
    collected logs to standard output. This can be useful for debugging. (@jcreixell)

  • Added many new Grafana Agent Flow components for collecting OpenTelemetry data.

  • Introduce /-/support endpoint for generating 'support bundles' in static
    agent mode. Support bundles are zip files of commonly-requested information
    that can be used to debug a running agent. (@tpaschalis)

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.29.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.29.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.29.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.29.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.29.0"

v0.29.0-rc.0

03 Nov 15:03
v0.29.0-rc.0
6b90580
Compare
Choose a tag to compare
v0.29.0-rc.0 Pre-release
Pre-release

This is release v0.29.0-rc.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Breaking changes

  • JSON-encoded traces from OTLP versions earlier than 0.16.0 are no longer
    supported. (@rfratto)

Deprecations

  • The binary names agent, agentctl, and agent-operator have been
    deprecated and will be renamed to grafana-agent, grafana-agentctl, and
    grafana-agent-operator in the v0.31.0 release.

Features

  • Add agentctl test-logs command to allow testing log configurations by redirecting
    collected logs to standard output. This can be useful for debugging. (@jcreixell)

  • Added many new Grafana Agent Flow components for collecting OpenTelemetry data.

  • Introduce /-/support endpoint for generating 'support bundles' in static
    agent mode. Support bundles are zip files of commonly-requested information
    that can be used to debug a running agent. (@tpaschalis)

Other changes

  • Update versions of embedded Prometheus exporters used for integrations

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.29.0-rc.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.29.0-rc.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.29.0-rc.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.29.0-rc.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.29.0-rc.0"

v0.28.1

03 Nov 12:38
v0.28.1
Compare
Choose a tag to compare

This is release v0.28.1 of the Grafana Agent.

This is a security release to update the base image of our Docker distributions to resolve the OpenSSL vulnerabilities CVE-2022-3602 and CVE-2022-3786. We do not believe Grafana Agent is impacted by these vulnerabilities, as it doesn't use OpenSSL in its code. However, we still updated the base image so it doesn't appear as an issue on image scanners.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.28.1"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.1/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.28.1"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.1/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.28.1"

v0.28.0

29 Sep 14:12
v0.28.0
71edccf
Compare
Choose a tag to compare

This is release v0.28.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

To learn more, free to check out our latest blog post in Introducing programmable pipelines with Grafana Agent Flow.

Features

  • Introduce Blackbox exporter integration. (@marctc)

Enhancements

  • Update Loki dependency to v2.6.1. (@rfratto)

Other changes

  • Fix relabel configs in sample agent-operator manifests (@hjet)
  • Operator no longer sets the SecurityContext.Privileged flag in the config-reloader container. (@hsyed-dojo)

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.28.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.28.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.28.0"

v0.28.0-rc.0

21 Sep 18:48
v0.28.0-rc.0
Compare
Choose a tag to compare
v0.28.0-rc.0 Pre-release
Pre-release

This is release v0.28.0-rc.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

This is the first release of Grafana Agent Flow, an experimental feature designed to make the agent more flexible and easier to configure and debug. See the Flow documentation for information on how to use Grafana Agent Flow.

We are looking for feedback on Grafana Agent Flow to get a better understanding of how it is received so we can determine if we should invest more time into it. Please leave any feedback you have on our GitHub discussion for Flow feedback

Additionally, this release updates our Grafana Loki (and Promtail) dependency to v2.6.1.

For the full list of changes, refer to our CHANGELOG.

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.28.0-rc.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.0-rc.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.28.0-rc.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.28.0-rc.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.28.0-rc.0"

v0.27.1

12 Sep 16:14
v0.27.1
9fd7d9b
Compare
Choose a tag to compare

This is release v0.27.1 of the Grafana Agent. This is a minor release, that only updates the base image for the docker containers. We hope in doing so to have fewer reported vulnerabilities with some tooling. None of the formerly reported vulnerabilities are known or expected to be exploitable through the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

NOTE: ARMv6 Docker images are no longer being published.

We have stopped publishing Docker images for ARMv6 platforms.
This is due to the new Ubuntu base image we are using that does not support ARMv6.
The new Ubuntu base image has less reported CVEs, and allows us to provide more
secure Docker images. We will still continue to publish ARMv6 release binaries and
deb/rpm packages.

  • Switch docker image base from debian to ubuntu (@captncraig)

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.27.1"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.1/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.27.1"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.1/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.27.1"

v0.27.0

01 Sep 17:44
87bb12c
Compare
Choose a tag to compare

This is release v0.27.0 of the Grafana Agent.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Features

  • Integrations: (beta) Add vmware_exporter integration (@rlankfo)

  • App agent receiver: add Event kind to payload (@domasx2)

Enhancements

  • Tracing: Introduce a periodic appender to the remotewriteexporter to control sample rate. (@mapno)

  • Tracing: Update OpenTelemetry dependency to v0.55.0. (@rfratto, @mapno)

  • Add base agent-operator jsonnet library and generated manifests (@hjet)

  • Add full (metrics, logs, K8s events) sample agent-operator jsonnet library and gen manifests (@hjet)

  • Introduce new configuration fields for disabling Keep-Alives and setting the
    IdleConnectionTimeout when scraping. (@tpaschalis)

Bugfixes

  • Tracing: Fixed issue with the PromSD processor using the connection method to discover the IP
    address. It was failing to match because the port number was included in the address string. (@jphx)

  • Register prometheus discovery metrics. (@mattdurham)

  • Fix seg fault when no instance parameter is provided for apache_http integration, using integrations-next feature flag. (@rgeyer)

  • Fix grafanacloud-install.ps1 web request internal server error when fetching config. (@rlankfo)

  • Fix snmp integration not passing module or walk_params parameters when scraping. (@rgeyer)

  • Fix unmarshal errors (key "<walk_param name>" already set in map) for snmp integration config when walk_params is defined, and the config is reloaded. (@rgeyer)

Other changes

  • Update several go dependencies to resolve warnings from certain security scanning tools. None of the resolved vulnerabilities were known to be exploitable through the agent. (@captncraig)

  • It is now possible to compile Grafana Agent using Go 1.19. (@rfratto)

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.27.0"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.0/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.27.0"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.0/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.27.0"

v0.27.0-rc.1

29 Aug 18:41
v0.27.0-rc.1
914b2a3
Compare
Choose a tag to compare
v0.27.0-rc.1 Pre-release
Pre-release

This is release v0.27.0-rc.1 of the Grafana Agent. It is a very small update from rc.0 to add just a few small features and fixes.

Upgrading

Read the upgrade guide for specific instructions on upgrading from older versions.

Notable changes:

Features

  • App agent receiver: add Event kind to payload (@domasx2)

Bugfixes

  • Fix snmp integration not passing module or walk_params parameters when scraping. (@rgeyer)

  • Fix unmarshal errors (key "<walk_param name>" already set in map) for snmp integration config when walk_params is defined, and the config is reloaded. (@rgeyer)

Installation:

Grafana Agent is currently distributed in plain binary form, Docker container images, a Windows installer, and a Kubernetes install script. Choose whichever fits your use-case best.

Kubernetes

Install directions here.

Docker container:

docker pull "grafana/agent:v0.27.0-rc.1"

Windows installer

The Windows installer is provided as a release asset for x64 machines.

Binary

We provide precompiled binary executables for the most common operating systems. Choose from the assets below for your matching operating system.

Note: ppc64le builds are currently considered secondary release targets and do not have the same level of support and testing as other platforms.

Example for the linux operating system on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.0-rc.1/agent-linux-amd64.zip"

# extract the binary
unzip "agent-linux-amd64.zip"

# make sure it is executable
chmod a+x "agent-linux-amd64"

agentctl

agentctl, a tool for helping you interact with the Agent, is available as a Docker image:

docker pull "grafana/agentctl:v0.27.0-rc.1"

Or as a binary. Like before, choose the assets below that matches your operating system. For example, with linux on amd64:

# download the binary
curl -O -L "https://github.com/grafana/agent/releases/download/v0.27.0-rc.1/agentctl-linux-amd64.zip"

# extract the binary
unzip "agentctl-linux-amd64.zip"

# make sure it is executable
chmod a+x "agentctl-linux-amd64"

agent-operator

agent-operator, a Kubernetes Operator for the Grafana Agent, is available only as a Docker image:

docker pull "grafana/agent-operator:v0.27.0-rc.1"