summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus/exporters/fastly.nix
blob: 55a61c4949ee5c5a659b2cfc6baf3b6ac6bc4e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ config, lib, pkgs, options }:

with lib;

let cfg = config.services.prometheus.exporters.fastly;
in
{
  port = 9118;
  extraOpts = {
    debug = mkEnableOption "Debug logging mode for fastly-exporter";

    configFile = mkOption {
      type = types.nullOr types.path;
      default = null;
      description = ''
        Path to a fastly-exporter configuration file.
        Example one can be generated with <literal>fastly-exporter --config-file-example</literal>.
      '';
      example = "./fastly-exporter-config.txt";
    };

    tokenPath = mkOption {
      type = types.nullOr types.path;
      apply = final: if final == null then null else toString final;
      description = ''
        A run-time path to the token file, which is supposed to be provisioned
        outside of Nix store.
      '';
    };
  };
  serviceOpts = {
    script = ''
      ${optionalString (cfg.tokenPath != null)
      "export FASTLY_API_TOKEN=$(cat ${toString cfg.tokenPath})"}
      ${pkgs.prometheus-fastly-exporter}/bin/fastly-exporter \
        -listen http://${cfg.listenAddress}:${toString cfg.port}
        ${optionalString cfg.debug "-debug true"} \
        ${optionalString (cfg.configFile != null) "-config-file ${cfg.configFile}"}
    '';
  };
}