Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fe9c676e99eb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f3160a2db6dc
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 12, 2019

  1. nixos/prometheus: replace 'alertmanagerURL' options for prometheus2

    Prometheus2 does no longer support the command-line flag to specify
    an alertmanager. Instead it now supports both service discovery and
    configuration of alertmanagers in the alerting config section.
    
    Simply mapping the previous option to an entry in the new alertmanagers
    section is not enough to allow for complete configurations of an
    alertmanager.
    
    Therefore the option alertmanagerURL is no longer used and instead
    a full alertmanager configuration is expected.
    WilliButz committed Aug 12, 2019
    Copy the full SHA
    543f219 View commit details
  2. Copy the full SHA
    a8847c8 View commit details
  3. Merge pull request #66476 from WilliButz/fix-prometheus-alertmanager-…

    …option
    
    nixos/prometheus2: replace alertmanagerURL with new alertmanagers option
    fpletz authored Aug 12, 2019
    Copy the full SHA
    f3160a2 View commit details
Showing with 21 additions and 9 deletions.
  1. +4 −0 nixos/modules/rename.nix
  2. +17 −9 nixos/modules/services/monitoring/prometheus/default.nix
4 changes: 4 additions & 0 deletions nixos/modules/rename.nix
Original file line number Diff line number Diff line change
@@ -51,6 +51,10 @@ with lib;
(mkRemovedOptionModule [ "services" "misc" "nzbget" "openFirewall" ] "The port used by nzbget is managed through the web interface so you should adjust your firewall rules accordingly.")
(mkRemovedOptionModule [ "services" "prometheus" "alertmanager" "user" ] "The alertmanager service is now using systemd's DynamicUser mechanism which obviates a user setting.")
(mkRemovedOptionModule [ "services" "prometheus" "alertmanager" "group" ] "The alertmanager service is now using systemd's DynamicUser mechanism which obviates a group setting.")
(mkRemovedOptionModule [ "services" "prometheus2" "alertmanagerURL" ] ''
Due to incompatibility, the alertmanagerURL option has been removed,
please use 'services.prometheus2.alertmanagers' instead.
'')
(mkRenamedOptionModule [ "services" "tor" "relay" "portSpec" ] [ "services" "tor" "relay" "port" ])
(mkRenamedOptionModule [ "services" "vmwareGuest" ] [ "virtualisation" "vmware" "guest" ])
(mkRenamedOptionModule [ "jobs" ] [ "systemd" "services" ])
26 changes: 17 additions & 9 deletions nixos/modules/services/monitoring/prometheus/default.nix
Original file line number Diff line number Diff line change
@@ -79,12 +79,8 @@ let
(pkgs.writeText "prometheus.rules" (concatStringsSep "\n" cfg2.rules))
]);
scrape_configs = filterValidPrometheus cfg2.scrapeConfigs;
alerting = optionalAttrs (cfg2.alertmanagerURL != []) {
alertmanagers = [{
static_configs = [{
targets = cfg2.alertmanagerURL;
}];
}];
alerting = {
inherit (cfg2) alertmanagers;
};
};

@@ -738,11 +734,23 @@ in {
'';
};

alertmanagerURL = mkOption {
type = types.listOf types.str;
alertmanagers = mkOption {
type = types.listOf types.attrs;
example = literalExample ''
[ {
scheme = "https";
path_prefix = "/alertmanager";
static_configs = [ {
targets = [
"prometheus.domain.tld"
];
} ];
} ]
'';
default = [];
description = ''
List of Alertmanager URLs to send notifications to.
A list of alertmanagers to send alerts to.
See <link xlink:href="https://prometheus.io/docs/prometheus/latest/configuration/configuration/#alertmanager_config">the official documentation</link> for more information.
'';
};