diff --git a/doc/puppet_classes/cd_alloy_3A_3Aparams.html b/doc/puppet_classes/cd_alloy_3A_3Aparams.html index 72b0141..b4ef51d 100644 --- a/doc/puppet_classes/cd_alloy_3A_3Aparams.html +++ b/doc/puppet_classes/cd_alloy_3A_3Aparams.html @@ -198,6 +198,60 @@ +
whether to manage log forwarding to loki
+whether to manage metric forwarding
+the url where alloy will send metrics
+-11 -12 -13 14 15 16 @@ -254,10 +302,15 @@ 37 38 39 -40+40 +41 +42 +43 +44 +45
# File 'manifests/params.pp', line 11
+ # File 'manifests/params.pp', line 14
class cd_alloy::params (
@@ -265,13 +318,15 @@ $reqpackages = 'alloy',
$pkg_ensure = 'latest',
# loki
+$ay_manage_loki = true,
$ay_loki_url = 'https://loki.example.net/loki/api/v1/push',
$ay_loki_username = '',
$ay_loki_userpass = '',
-$ay_log_targets = [
- '/var/log/messages',
- '/var/log/secure',
- ],
+$ay_log_targets = ['/var/log/messages','/var/log/secure',],
+
+# prometheus
+$ay_manage_prom = true,
+$ay_prom_url = 'https://prometheus.example.net/api/v1/write',
) {