wolf.r: graphite.shack redirect to graphite:8080

This commit is contained in:
makefu 2019-07-19 16:04:45 +02:00
parent 124b1d7639
commit 1eeccb54a2
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 35 additions and 11 deletions

View File

@ -42,19 +42,19 @@ in
# connect to git.shackspace.de as group runner for rz
<stockholm/krebs/2configs/shack/gitlab-runner.nix>
# Statistics collection and visualization
<stockholm/krebs/2configs/graphite.nix>
# Statistics collection and visualization
<stockholm/krebs/2configs/shack/graphite.nix>
## Collect data from mqtt.shack and store in graphite database
<stockholm/krebs/2configs/shack/mqtt_sub.nix>
## Collect radioactive data and put into graphite
<stockholm/krebs/2configs/shack/radioactive.nix>
## mqtt.shack
<stockholm/krebs/2configs/shack/mqtt.nix>
## influx.shack
<stockholm/krebs/2configs/shack/influx.nix>
## Collect local statistics via collectd and send to collectd
<stockholm/krebs/2configs/stats/wolf-client.nix>
{ services.influxdb.enable = true; }
<stockholm/krebs/2configs/shack/netbox.nix>
<stockholm/krebs/2configs/shack/prometheus/server.nix>
<stockholm/krebs/2configs/shack/prometheus/node.nix>

View File

@ -1,16 +1,22 @@
{ config, lib, pkgs, ... }:
# hostname: graphite.shack
# graphite-web on port 8080
# carbon cache on port 2003 (tcp/udp)
# TODO: krebs.graphite.minimal.enable
# TODO: configure firewall
with import <stockholm/lib>;
{
imports = [ ];
let
port = 8080;
in {
networking.firewall.allowedTCPPorts = [ 2003 port ];
networking.firewall.allowedUDPPorts = [ 2003 ];
services.nginx.virtualHosts."graphite.shack" = {
locations."/" = {
proxyPass = "http://localhost:${toString port}/";
};
};
services.graphite = {
api = {
inherit port;
enable = true;
listenAddress = "0.0.0.0";
};

View File

@ -0,0 +1,18 @@
let
port = 8086;
in
{
networking.firewall.allowedTCPPorts = [ port ]; # for legacy applications
services.nginx.virtualHosts."influx.shack" = {
locations."/" = {
proxyPass = "http://localhost:${toString port}/";
};
};
services.influxdb = {
enable = true;
extraConfig = {
bind-address = ":${toString port}";
http.log-enabled = false;
};
};
}