Skip to content

Commit 3a2d6d5

Browse files
authored
Update code references for v0.37.4 (#5718)
Signed-off-by: Paschalis Tsilias <[email protected]>
1 parent e257a56 commit 3a2d6d5

File tree

14 files changed

+27
-22
lines changed

14 files changed

+27
-22
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ Main (unreleased)
7777
- The `loki.source.docker` component now allows connecting to Docker daemons
7878
over HTTP(S) and setting up TLS credentials. (@tpaschalis)
7979

80-
- Added an `add_metric_suffixes` option to `otelcol.exporter.prometheus` in flow mode,
81-
which configures whether to add type and unit suffixes to metrics names. (@mar4uk)
82-
8380
- Added an `exclude_event_message` option to `loki.source.windowsevent` in flow mode,
8481
which excludes the human-friendly event message from Windows event logs. (@ptodev)
8582

@@ -132,10 +129,18 @@ Main (unreleased)
132129

133130
- Fixed a bug where UDP syslog messages were never processed (@joshuapare)
134131

135-
- Fix a bug where reloading the configuration of a `loki.write` component lead
136-
to a panic. (@tpaschalis)
132+
v0.37.4 (2023-11-06)
133+
-----------------
134+
135+
### Enhancements
137136

137+
- Added an `add_metric_suffixes` option to `otelcol.exporter.prometheus` in flow mode,
138+
which configures whether to add type and unit suffixes to metrics names. (@mar4uk)
138139

140+
### Bugfixes
141+
142+
- Fix a bug where reloading the configuration of a `loki.write` component lead
143+
to a panic. (@tpaschalis)
139144

140145
v0.37.3 (2023-10-26)
141146
-----------------

docs/sources/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Grafana Agent
88
description: Grafana Agent is a flexible, performant, vendor-neutral, telemetry collector
99
weight: 350
1010
cascade:
11-
AGENT_RELEASE: v0.37.3
11+
AGENT_RELEASE: v0.37.4
1212
OTEL_VERSION: v0.87.0
1313
---
1414

pkg/operator/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package operator
22

33
// Supported versions of the Grafana Agent.
44
var (
5-
DefaultAgentVersion = "v0.37.3"
5+
DefaultAgentVersion = "v0.37.4"
66
DefaultAgentBaseImage = "grafana/agent"
77
DefaultAgentImage = DefaultAgentBaseImage + ":" + DefaultAgentVersion
88
)

production/kubernetes/agent-bare.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spec:
8383
valueFrom:
8484
fieldRef:
8585
fieldPath: spec.nodeName
86-
image: grafana/agent:v0.37.3
86+
image: grafana/agent:v0.37.4
8787
imagePullPolicy: IfNotPresent
8888
name: grafana-agent
8989
ports:

production/kubernetes/agent-loki.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
valueFrom:
6666
fieldRef:
6767
fieldPath: spec.nodeName
68-
image: grafana/agent:v0.37.3
68+
image: grafana/agent:v0.37.4
6969
imagePullPolicy: IfNotPresent
7070
name: grafana-agent-logs
7171
ports:

production/kubernetes/agent-traces.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
valueFrom:
115115
fieldRef:
116116
fieldPath: spec.nodeName
117-
image: grafana/agent:v0.37.3
117+
image: grafana/agent:v0.37.4
118118
imagePullPolicy: IfNotPresent
119119
name: grafana-agent-traces
120120
ports:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'grafana/agent:v0.37.3'
1+
'grafana/agent:v0.37.4'

production/kubernetes/build/templates/operator/main.jsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ local ksm = import 'kube-state-metrics/kube-state-metrics.libsonnet';
2323
local this = self,
2424

2525
_images:: {
26-
agent: 'grafana/agent:v0.37.3',
27-
agent_operator: 'grafana/agent-operator:v0.37.3',
26+
agent: 'grafana/agent:v0.37.4',
27+
agent_operator: 'grafana/agent-operator:v0.37.4',
2828
ksm: 'registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.5.0',
2929
},
3030

production/kubernetes/install-bare.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ check_installed() {
2525
check_installed curl
2626
check_installed envsubst
2727

28-
MANIFEST_BRANCH=v0.37.3
28+
MANIFEST_BRANCH=v0.37.4
2929
MANIFEST_URL=${MANIFEST_URL:-https://raw.githubusercontent.com/grafana/agent/${MANIFEST_BRANCH}/production/kubernetes/agent-bare.yaml}
3030
NAMESPACE=${NAMESPACE:-default}
3131

production/operator/templates/agent-operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ spec:
372372
containers:
373373
- args:
374374
- --kubelet-service=default/kubelet
375-
image: grafana/agent-operator:v0.37.3
375+
image: grafana/agent-operator:v0.37.4
376376
imagePullPolicy: IfNotPresent
377377
name: grafana-agent-operator
378378
serviceAccount: grafana-agent-operator
@@ -436,7 +436,7 @@ metadata:
436436
name: grafana-agent
437437
namespace: ${NAMESPACE}
438438
spec:
439-
image: grafana/agent:v0.37.3
439+
image: grafana/agent:v0.37.4
440440
integrations:
441441
selector:
442442
matchLabels:

0 commit comments

Comments
 (0)