2020-10-04 01:49:09 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.blackfire-agent;
|
|
|
|
|
|
|
|
agentConfigFile = lib.generators.toINI {} {
|
|
|
|
blackfire = cfg.settings;
|
|
|
|
};
|
|
|
|
|
|
|
|
agentSock = "blackfire/agent.sock";
|
|
|
|
in {
|
|
|
|
meta = {
|
|
|
|
maintainers = pkgs.blackfire.meta.maintainers;
|
2023-01-25 00:33:40 +01:00
|
|
|
doc = ./blackfire.md;
|
2020-10-04 01:49:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.blackfire-agent = {
|
2022-08-28 21:18:44 +02:00
|
|
|
enable = lib.mkEnableOption (lib.mdDoc "Blackfire profiler agent");
|
2020-10-04 01:49:09 +02:00
|
|
|
settings = lib.mkOption {
|
2022-07-28 23:19:15 +02:00
|
|
|
description = lib.mdDoc ''
|
2021-10-13 05:00:23 +02:00
|
|
|
See https://blackfire.io/docs/up-and-running/configuration/agent
|
2020-10-04 01:49:09 +02:00
|
|
|
'';
|
|
|
|
type = lib.types.submodule {
|
|
|
|
freeformType = with lib.types; attrsOf str;
|
|
|
|
|
|
|
|
options = {
|
|
|
|
server-id = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
2022-07-28 23:19:15 +02:00
|
|
|
description = lib.mdDoc ''
|
2020-10-04 01:49:09 +02:00
|
|
|
Sets the server id used to authenticate with Blackfire
|
|
|
|
|
|
|
|
You can find your personal server-id at https://blackfire.io/my/settings/credentials
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
server-token = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
2022-07-28 23:19:15 +02:00
|
|
|
description = lib.mdDoc ''
|
2020-10-04 01:49:09 +02:00
|
|
|
Sets the server token used to authenticate with Blackfire
|
|
|
|
|
|
|
|
You can find your personal server-token at https://blackfire.io/my/settings/credentials
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.etc."blackfire/agent".text = agentConfigFile;
|
|
|
|
|
|
|
|
services.blackfire-agent.settings.socket = "unix:///run/${agentSock}";
|
|
|
|
|
2021-10-13 05:00:23 +02:00
|
|
|
systemd.packages = [
|
|
|
|
pkgs.blackfire
|
|
|
|
];
|
2020-10-04 01:49:09 +02:00
|
|
|
};
|
|
|
|
}
|