Phoebus Alarm

The Phoebus Alarm collection of services enables monitoring EPICS PVs, and report alarms in a server. Phoebus clients can then contact this server, to see a list of current alarms, earlier alarms, and so on.

Danger

The current design of the Phoebus alarm server allows any user that has access to the Kafka server to specify arbitrary commands to run when alarms are triggered. This includes Phoebus graphical clients, which must have Kafka access to be able to configure alarms, read alarm states, and acknowledge alarms.

This guide provides instructions on how to setup a Kafka server without authentication, meaning that anyone one the network may run arbitrary commands on your alarm server.

The current EPNix implementation tries to hardened and isolate the Phoebus alarm service to mitigate the risk, but this still leaves a bit attack surface.

Make sure the physical machine hosting the Phoebus alarm server doesn’t host anything important, and try to isolate it as much as possible from a network perspective.

This guide focuses on installing and configuring these services on a single server.

For more information about these services, examine the official documentation:

The Phoebus Alarm Logging Service can also be called the Phoebus Alarm Logger.

Important

Make sure to follow the NixOS Prerequisites.

Single server Phoebus Alarm setup

To configure Phoebus Alarm, Phoebus Alarm Logger, Apache Kafka, and ElasticSearch on a single server, add this to your configuration, while taking care of replacing the IP address and Kafka’s clusterId:

phoebus-alarm.nix
{ lib, pkgs, ... }:
let
  # Replace this with your machine's external IP address
  # or DNS domain name
  ip = "192.168.1.42";
  kafkaListenSockAddr = "${ip}:9092";
  kafkaControllerListenSockAddr = "${ip}:9093";
in
{
  # The Phoebus Alarm server also automatically enables the Phoebus Alarm Logger
  services.phoebus-alarm-server = {
    enable = true;
    openFirewall = true;
    settings."org.phoebus.applications.alarm/server" = kafkaListenSockAddr;
  };

  # Uncomment if you use the "auto address list", which is the default,
  # or if you have broadcast addresses in your "address list":
  # --
  #environment.epics.allowCABroadcastDiscovery = true;
  #environment.epics.allowPVABroadcastDiscovery = true;

  services.phoebus-alarm-logger.settings."bootstrap.servers" = kafkaListenSockAddr;

  # Phoebus alarm needs Kafka.
  # If not already enabled elsewhere in your configuration,
  # the code below shows a single-server Kafka setup:
  services.apache-kafka = {
    enable = true;
    # Replace with a randomly generated uuid. You can get one by running:
    # nix shell 'nixpkgs#apacheKafka' -c kafka-storage.sh random-uuid
    clusterId = "xxxxxxxxxxxxxxxxxxxxxx";
    formatLogDirs = true;
    settings = {
      listeners = [
        "PLAINTEXT://${kafkaListenSockAddr}"
        "CONTROLLER://${kafkaControllerListenSockAddr}"
      ];
      # Adapt depending on your security constraints
      "listener.security.protocol.map" = [
        "PLAINTEXT:PLAINTEXT"
        "CONTROLLER:PLAINTEXT"
      ];
      "controller.quorum.voters" = [
        "1@${kafkaControllerListenSockAddr}"
      ];
      "controller.listener.names" = [ "CONTROLLER" ];

      "node.id" = 1;
      "process.roles" = [
        "broker"
        "controller"
      ];

      "log.dirs" = [ "/var/lib/apache-kafka" ];
      "offsets.topic.replication.factor" = 1;
      "transaction.state.log.replication.factor" = 1;
      "transaction.state.log.min.isr" = 1;
    };
  };

  systemd.services.apache-kafka.unitConfig.StateDirectory = "apache-kafka";

  # Open kafka to the outside world
  networking.firewall.allowedTCPPorts = [ 9092 ];

  # Phoebus alarm needs ElasticSearch.
  # If not already enabled elsewhere in your configuration,
  # Enable it with the code below:
  services.elasticsearch = {
    enable = true;
    package = pkgs.elasticsearch7;
  };

  # Elasticsearch, needed by Phoebus Alarm Logger, is not free software (SSPL | Elastic License).
  # To accept the license, add the code below:
  nixpkgs.config.allowUnfreePredicate =
    pkg:
    builtins.elem (lib.getName pkg) [
      "elasticsearch"
    ];
}

From the Phoebus graphical client side, add this configuration:

phoebus-client-settings.ini
# For the Phoebus Alarm Server:
# Replace the IP address with your server's IP address or DNS domain name
org.phoebus.applications.alarm/server=192.168.1.42:9092

# For the Phoebus Alarm Logger:
# Replace the IP address again
org.phoebus.applications.alarm.logging.ui/service_uri=http://192.168.1.42:8080

See also

For more information about configuring the firewall for EPICS, see the EPICS firewall guide.

Configuring topics

The Phoebus Alarm system uses “topics” as a way of grouping alarms. These topics are the available roots of your alarm tree. You need to synchronize the topic names between:

  • Phoebus Alarm Server

  • Phoebus Alarm Logger

  • Phoebus graphical clients

Changing the topic names in the Phoebus Alarm Server NixOS modules automatically creates them.

Warning

Currently, the Phoebus Alarm Server doesn’t support several topics.

For example, if you want to have the topic Project, add this configuration to the server:

phoebus-alarm.nix
{config, lib, ...}: let
  topics = ["Project"];
in {
  services.phoebus-alarm-server = {
    # ...
    settings = {
      # ...
      "org.phoebus.applications.alarm/config_names" = topics;
    };
  };

  services.phoebus-alarm-logger.settings.alarm_topics = topics;
}

For the Phoebus graphical client, add this configuration:

phoebus-client-settings.ini
# config_name is only used in the Phoebus graphical client
org.phoebus.applications.alarm/config_name = Project
org.phoebus.applications.alarm/config_names = Project

Configuring the address list

The address list is configured by default using the environment.epics module. See the EPICS environment guide for mode information.

Configuring email support

To enable email support, set the org.phoebus.email/mailport setting. Here is a list of options you might want to set:

phoebus-alarm.nix
{
  services.phoebus-alarm-server = {
    # ...
    settings = {
      # ...

      "org.phoebus.email/mailhost" = "smtp.my-company.org";

      # Optional:

      # 25 for plain SMTP
      "org.phoebus.email/mailport" = 25;
      # If authentication is needed:
      "org.phoebus.email/username" = "user";
      "org.phoebus.email/password" = "password";
      # Default address to be used for From:
      # if unspecified, then the last used "from" address is used
      "org.phoebus.email/from" = "Sender <the.sender@my-company.org>";
    };
  };
}

Warning

Currently, Phoebus Alarm Server only supports plain SMTP.

Custom alert channels

Alert channels other than mails must be configured through running external commands.

The Phoebus Alarm service is heavily hardened, for reasons explained in the danger indication, meaning that the service will have restricted access to available commands and files from the host.

To create host-accessible files and directories, use the $STATE_DIRECTORY environment variable, which corresponds to the /var/lib/phoebus-alarm-server directory on the host.

To make a command available to the Phoebus Alarm service, use the services.phoebus-alarm-server.path option.

Nixpkgs provides a writeShellApplication function to create custom commands with dependencies. One example of a configuration that creates a phoebus-alarm-send-alert command, which uses curl to send an alert through an HTTP API:

phoebus-alarm.nixcurl example
{ lib, pkgs, ... }:

{
  services.phoebus-alarm-server = {
    # ...

    path = [
      (pkgs.writeShellApplication {
        # Name of the command
        name = "phoebus-alarm-send-alert";
        # Make your script depend on the 'curl' package
        runtimeInputs = [ pkgs.curl ];
        # Content of the script
        text = ''
          # If "*" is given as argument in the configuration,
          # the first argument is the PV name
          ALARM_PV="$1"
          # and the second argument is the alarm severity
          ALARM_SEVERITY="$2"

          curl -sSfL "https://my-server.example.com/api/alarm/webhook" \
            -X POST \
            --header "Content-Type: application/json" \
            -d '{"pv": "'$ALARM_PV'", "severity": "'$ALARM_SEVERITY'"}'
        '';
      })
    ];

  };
}

To use this command, make sure your alarm node uses cmd:phoebus-alarm-send-alert * as command, including the * to pass the PV and severity as argument.