about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus/exporters/shelly.nix
blob: be3e483c6ee19ebae28cbc06674be6d6cf8798c2 (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
{ config, lib, pkgs, options, ... }:

let
  cfg = config.services.prometheus.exporters.shelly;
  inherit (lib) mkOption types;
in
{
  port = 9784;
  extraOpts = {
    metrics-file = mkOption {
      type = types.path;
      description = ''
        Path to the JSON file with the metric definitions
      '';
    };
  };
  serviceOpts = {
    serviceConfig = {
      ExecStart = ''
        ${pkgs.prometheus-shelly-exporter}/bin/shelly_exporter \
          -metrics-file ${cfg.metrics-file} \
          -listen-address ${cfg.listenAddress}:${toString cfg.port}
      '';
    };
  };
}