Skip to content

Commit

Permalink
chore: add rock for grafana-agent v0.40.5 (#48)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Actions <github-actions@github.com>
  • Loading branch information
github-actions[bot] and Github Actions committed May 28, 2024
1 parent 4884dd7 commit 8fdc452
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 0.40.5/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
54 changes: 54 additions & 0 deletions 0.40.5/rockcraft.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
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.40.5"
base: ubuntu@22.04
build-base: ubuntu@22.04
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.40.5"
build-snaps:
- go/1.22/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
ca-certs:
plugin: nil
overlay-packages: [ca-certificates]
deb-security-manifest:
plugin: nil
after:
- grafana-agent
- ca-certs
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 8fdc452

Please sign in to comment.