Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alloy configuration updates #21

Merged
merged 3 commits into from
Jun 15, 2024
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
70 changes: 9 additions & 61 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

srvos.url = "github:nix-community/srvos";
srvos.inputs.nixpkgs.follows = "nixpkgs";

pkgs-nix.url = "github:ALT-F4-LLC/pkgs.nix";
pkgs-nix.inputs.nixpkgs.follows = "nixpkgs";
};

outputs = inputs @ {flake-parts, ...}:
Expand Down
51 changes: 18 additions & 33 deletions modules/mixins/alloy-forwarder/config.alloy
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,29 @@ prometheus.receive_http "forward" {
]
}

prometheus.scrape "linux_node" {
targets = prometheus.exporter.unix.node.targets
forward_to = [ grafana_cloud.stack.receivers.metrics ]
// Set instance label to the hostname
prometheus.relabel "instance" {
forward_to = [grafana_cloud.stack.receivers.metrics]
rule {
target_label = "instance"
replacement = local.file.hostname.content
}
}

prometheus.exporter.unix "node" {
}

prometheus.scrape "linux_node" {
targets = prometheus.exporter.unix.node.targets
forward_to = [prometheus.relabel.instance.receiver]
}

prometheus.exporter.self "agent" {
}

prometheus.scrape "agent" {
targets = prometheus.exporter.self.agent.targets
forward_to = [ grafana_cloud.stack.receivers.metrics ]
forward_to = [prometheus.relabel.instance.receiver]
}

loki.source.api "receive" {
Expand All @@ -46,45 +55,21 @@ loki.source.api "receive" {
]
}

loki.relabel "journal" {
forward_to = []

rule {
source_labels = ["__journal__systemd_unit"]
target_label = "unit"
}
rule {
source_labels = ["__journal__boot_id"]
target_label = "boot_id"
}
rule {
source_labels = ["__journal__transport"]
target_label = "transport"
}
rule {
source_labels = ["__journal_priority_keyword"]
target_label = "level"
}
rule {
source_labels = ["__journal__hostname"]
target_label = "instance"
}
}

loki.source.journal "read" {
forward_to = [
grafana_cloud.stack.receivers.logs,
]
relabel_rules = loki.relabel.journal.rules
relabel_rules = concat(
loki.relabel.journal.rules,
loki.relabel.instance.rules,
)
labels = {
"job" = "integrations/node_exporter",
}
}

otelcol.exporter.prometheus "to_prometheus" {
forward_to = [
grafana_cloud.stack.receivers.metrics,
]
forward_to = [grafana_cloud.stack.receivers.metrics]
}

otelcol.exporter.loki "to_loki" {
Expand Down
11 changes: 4 additions & 7 deletions modules/mixins/alloy-forwarder/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,9 @@
4317 # OTLP/gRPC
];

services.alloy = {
extraArgs = "--stability.level public-preview";

environmentFiles = [ "/run/keys/grafana-cloud" ];
extraEnvironment = {
GRAFANA_CLOUD_STACK = "altf4llc";
};
services.alloy.extraFlags = ["--stability.level=public-preview"];
systemd.services.alloy.serviceConfig.EnvironmentFile = [ "/run/keys/grafana-cloud" ];
systemd.services.alloy.environment = {
GRAFANA_CLOUD_STACK = "altf4llc";
};
}
56 changes: 56 additions & 0 deletions modules/mixins/alloy/base.alloy
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
// Grab hostname from /etc instead of environment variables
local.file "hostname" {
filename = "/etc/hostname"
}

// Set hostname from /etc
loki.relabel "instance" {
forward_to = []

rule {
target_label = "instance"
replacement = local.file.hostname.content
}
}

// Loki journal relabeller
loki.relabel "journal" {
forward_to = []

rule {
source_labels = ["__journal__systemd_unit"]
target_label = "unit"
}

rule {
source_labels = ["__journal__boot_id"]
target_label = "boot_id"
}

rule {
source_labels = ["__journal__transport"]
target_label = "transport"
}

rule {
source_labels = ["__journal_priority_keyword"]
target_label = "level"
}

rule {
source_labels = ["__journal_container_name"]
target_label = "container_name"
}

rule {
source_labels = ["__journal_image_name"]
target_label = "container_image"
}

rule {
source_labels = ["__journal_container_id"]
target_label = "container_id"
}
}

// vim:ft=hcl
2 changes: 1 addition & 1 deletion modules/mixins/alloy/config.alloy
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ prometheus.relabel "instance" {
forward_to = [otelcol.receiver.prometheus.default.receiver]
rule {
target_label = "instance"
replacement = env("HOSTNAME")
replacement = local.file.hostname.content
}
}

Expand Down
15 changes: 6 additions & 9 deletions modules/mixins/alloy/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
{ pkgs-nix, pkgs, ... }: {
imports = [ pkgs-nix.nixosModules.alloy ];

{ ... }: {
environment.etc."alloy/config.alloy" = {
source = ./config.alloy;
mode = "0440";
user = "root";
};

services.alloy = {
enable = true;
package = pkgs-nix.packages.${pkgs.system}.alloy;
openFirewall = true;
configPath = "/etc/alloy";
group = "root";
environment.etc."alloy/base.alloy" = {
source = ./base.alloy;
mode = "0440";
user = "root";
};

services.alloy.enable = true;
}