Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ for specific instructions.
- [BUGFIX] Fix collecting filesystem metrics on Mac OS (darwin) in the
`node_exporter` integration default config. (@eamonryan)

- [BUGFIX] Fix info logging on windows. (@mattdurham)

- [BUGFIX] Remove v0.0.0 flags during build with no explicit release tag (@mattdurham)

- [BUGFIX] Fix issue with global scrape_interval changes not reloading integrations (@kgeckhart)
Expand All @@ -56,9 +54,6 @@ for specific instructions.

- [BUGFIX] Fix yaml marshalling tag for cert_file in kafka exporter agent config. (@rgeyer)

- [BUGFIX] Scraping service: Ensure that a reshard is scheduled every reshard
interval. (@rfratto)

- [CHANGE] Breaking change: reduced verbosity of tracing autologging
by not logging `STATUS_CODE_UNSET` status codes. (@mapno)

Expand All @@ -72,9 +67,6 @@ for specific instructions.
- [CHANGE] Breaking change: `prom_instance` in the spanmetrics config is now
named `metrics_instance`. (@rfratto)

- [CHANGE] Add `agent_prometheus_configs_changed_total` metric to track instance
config events. (@rfratto)

- [DEPRECATION] The `loki` key at the root of the config file has been
deprecated in favor of `logs`. `loki`-named fields in `automatic_logging`
have been renamed accordinly: `loki_name` is now `logs_instance_name`,
Expand All @@ -86,6 +78,16 @@ for specific instructions.
also been deprecated in favor of the same flags with the `metrics.` prefix.
(@rfratto)

# v0.18.4 (2021-09-14)

- [BUGFIX] Fix info logging on windows. (@mattdurham)

- [BUGFIX] Scraping service: Ensure that a reshard is scheduled every reshard
interval. (@rfratto)

- [CHANGE] Add `agent_prometheus_configs_changed_total` metric to track instance
config events. (@rfratto)

# v0.18.3 (2021-09-08)

- [BUGFIX] Register missing metric for configstore consul request duration.
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/integrations/node-exporter-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ docker run \
-v "/proc:/host/proc:ro,rslave" \
-v /tmp/agent:/etc/agent \
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
grafana/agent:v0.18.3 \
grafana/agent:v0.18.4 \
--config.file=/etc/agent-config/agent.yaml
```

Expand Down Expand Up @@ -66,7 +66,7 @@ metadata:
name: agent
spec:
containers:
- image: grafana/agent:v0.18.3
- image: grafana/agent:v0.18.4
name: agent
args:
- --config.file=/etc/agent-config/agent.yaml
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/integrations/process-exporter-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docker run \
-v "/proc:/proc:ro" \
-v /tmp/agent:/etc/agent \
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
grafana/agent:v0.18.3 \
grafana/agent:v0.18.4 \
--config.file=/etc/agent-config/agent.yaml
```

Expand All @@ -35,7 +35,7 @@ metadata:
name: agent
spec:
containers:
- image: grafana/agent:v0.18.3
- image: grafana/agent:v0.18.4
name: agent
args:
- --config.file=/etc/agent-config/agent.yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Currently, there are six ways to install the agent:
docker run \
-v /tmp/agent:/etc/agent/data \
-v /path/to/config.yaml:/etc/agent/agent.yaml \
grafana/agent:v0.18.3
grafana/agent:v0.18.4
```

Replace `/tmp/agent` with the folder you wish to store WAL data in. WAL data is
Expand Down
4 changes: 2 additions & 2 deletions docs/operator/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
serviceAccountName: grafana-agent-operator
containers:
- name: operator
image: grafana/agent-operator:v0.18.3
image: grafana/agent-operator:v0.18.4
---

apiVersion: v1
Expand Down Expand Up @@ -156,7 +156,7 @@ metadata:
labels:
app: grafana-agent
spec:
image: grafana/agent:v0.18.3
image: grafana/agent:v0.18.4
logLevel: info
serviceAccountName: grafana-agent
metrics:
Expand Down
1 change: 1 addition & 0 deletions pkg/operator/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var (
"v0.18.1",
"v0.18.2",
"v0.18.3",
"v0.18.4",

// NOTE(rfratto): when performing an upgrade, add the newest version above instead of changing the existing reference.
}
Expand Down
2 changes: 1 addition & 1 deletion production/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ directory on your host that you want the agent to store its WAL.
docker run \
-v /tmp/agent:/etc/agent/data \
-v /path/to/config.yaml:/etc/agent/agent.yaml \
grafana/agent:v0.18.3
grafana/agent:v0.18.4
```

## Running the Agent locally
Expand Down
2 changes: 1 addition & 1 deletion production/grafanacloud-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PACKAGE_SYSTEM=${PACKAGE_SYSTEM:=}
#
# Global constants.
#
RELEASE_VERSION="0.18.3"
RELEASE_VERSION="0.18.4"

RELEASE_URL="https://github.com/grafana/agent/releases/download/v${RELEASE_VERSION}"
DEB_URL="${RELEASE_URL}/grafana-agent-${RELEASE_VERSION}-1.${ARCH}.deb"
Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/agent-bare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: grafana/agent:v0.18.3
image: grafana/agent:v0.18.4
imagePullPolicy: IfNotPresent
name: agent
ports:
Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/agent-loki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: grafana/agent:v0.18.3
image: grafana/agent:v0.18.4
imagePullPolicy: IfNotPresent
name: agent
ports:
Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/agent-tempo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: grafana/agent:v0.18.3
image: grafana/agent:v0.18.4
imagePullPolicy: IfNotPresent
name: agent
ports:
Expand Down
2 changes: 1 addition & 1 deletion production/kubernetes/build/lib/version.libsonnet
Original file line number Diff line number Diff line change
@@ -1 +1 @@
'grafana/agent:v0.18.3'
'grafana/agent:v0.18.4'
2 changes: 1 addition & 1 deletion production/kubernetes/install-bare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ check_installed() {
check_installed curl
check_installed envsubst

MANIFEST_BRANCH=v0.18.3
MANIFEST_BRANCH=v0.18.4
MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-bare.yaml}
NAMESPACE=${NAMESPACE:-default}

Expand Down
4 changes: 2 additions & 2 deletions production/tanka/grafana-agent/v1/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ local service = k.core.v1.service;
(import './lib/tempo.libsonnet') +
{
_images:: {
agent: 'grafana/agent:v0.18.3',
agentctl: 'grafana/agentctl:v0.18.3',
agent: 'grafana/agent:v0.18.4',
agentctl: 'grafana/agentctl:v0.18.4',
},

// new creates a new DaemonSet deployment of the grafana-agent. By default,
Expand Down
4 changes: 2 additions & 2 deletions production/tanka/grafana-agent/v2/internal/base.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ function(name='grafana-agent', namespace='') {
local this = self,

_images:: {
agent: 'grafana/agent:v0.18.3',
agentctl: 'grafana/agentctl:v0.18.3',
agent: 'grafana/agent:v0.18.4',
agentctl: 'grafana/agentctl:v0.18.4',
},
_config:: {
name: name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function(
) {
local _config = {
api: error 'api must be set',
image: 'grafana/agentctl:v0.18.3',
image: 'grafana/agentctl:v0.18.4',
schedule: '*/5 * * * *',
configs: [],
} + config,
Expand Down