Skip to content

Commit

Permalink
chore: add ROCK for grafana-agent v0.39.0 (#35)
Browse files Browse the repository at this point in the history
* chore(deps): bump grafana-agent version to v0.39.0

* add arm64 to all other rock versions

---------

Co-authored-by: Github Actions <[email protected]>
Co-authored-by: Luca Bello <[email protected]>
  • Loading branch information
3 people authored Jan 16, 2024
1 parent ee0c456 commit 58db748
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 0 deletions.
1 change: 1 addition & 0 deletions 0.37.4/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build-base: [email protected]
license: Apache-2.0
platforms:
amd64:
arm64:
services:
agent:
command: /usr/bin/grafana-agent --config.file=/etc/agent/agent.yaml --metrics.wal-directory=/etc/agent/data
Expand Down
1 change: 1 addition & 0 deletions 0.38.0/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build-base: [email protected]
license: Apache-2.0
platforms:
amd64:
arm64:
services:
agent:
command: /usr/bin/grafana-agent --config.file=/etc/agent/agent.yaml --metrics.wal-directory=/etc/agent/data
Expand Down
1 change: 1 addition & 0 deletions 0.38.1/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build-base: [email protected]
license: Apache-2.0
platforms:
amd64:
arm64:
services:
agent:
command: /usr/bin/grafana-agent --config.file=/etc/agent/agent.yaml --metrics.wal-directory=/etc/agent/data
Expand Down
17 changes: 17 additions & 0 deletions 0.39.0/agent.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
server:
log_level: info

metrics:
global:
scrape_interval: 1m
configs:
- name: test
host_filter: false
scrape_configs:
- job_name: local_scrape
static_configs:
- targets: ['127.0.0.1:12345']
labels:
cluster: 'localhost'
remote_write:
- url: http://localhost:9009/api/prom/push
50 changes: 50 additions & 0 deletions 0.39.0/rockcraft.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: grafana-agent
summary: Grafana Agent in a ROCK.
description: "Grafana Agent is a single binary collector for metrics and logging, useful for per-node metrics or proxying from edge endpoints."
version: "0.39.0"
base: [email protected]
build-base: [email protected]
license: Apache-2.0
platforms:
amd64:
arm64:
services:
agent:
command: /usr/bin/grafana-agent --config.file=/etc/agent/agent.yaml --metrics.wal-directory=/etc/agent/data
override: replace
startup: enabled
parts:
grafana-agent:
plugin: go
source: https://github.com/grafana/agent
source-type: git
source-tag: "v0.39.0"
build-snaps:
- go/1.21/stable
build-environment:
- USE_CONTAINER: 0
- RELEASE_BUILD: 1
stage-packages:
- ca-certificates
override-build: |
make agent
install -D -m755 build/grafana-agent ${CRAFT_PART_INSTALL}/opt/agent/bin/grafana-agent
ln -sv /bin/grafana-agent ${CRAFT_PART_INSTALL}/opt/agent/bin/agent
organize:
opt/agent/bin/grafana-agent: usr/bin/grafana-agent
opt/agent/bin/agent: usr/bin/agent
default-config:
plugin: dump
source: .
organize:
agent.yaml: etc/agent/agent.yaml
stage:
- etc/agent/agent.yaml
deb-security-manifest:
plugin: nil
after:
- grafana-agent
override-prime: |
set -x
mkdir -p $CRAFT_PRIME/usr/share/rocks/
(echo "# os-release" && cat /etc/os-release && echo "# dpkg-query" && dpkg-query --admindir=$CRAFT_PRIME/var/lib/dpkg/ -f '${db:Status-Abbrev},${binary:Package},${Version},${source:Package},${Source:Version}\n' -W) > $CRAFT_PRIME/usr/share/rocks/dpkg.query

0 comments on commit 58db748

Please sign in to comment.