Backend for ClusterCockpit Monitoring Framework. GitHub Mirror
Go to file
Christoph Kluge 4a622aae41 fix link typo
2023-08-25 09:51:33 +02:00
.github/workflows Update test.yml 2023-05-11 16:26:09 +02:00
api Improve user endpoint swagger docs 2023-08-21 12:12:28 +02:00
build/package Add Release action for cc-backend 2023-03-20 15:38:36 +01:00
cmd/cc-backend Change to html output for jwt-login 2023-08-18 14:29:24 +02:00
configs Update test inputs 2023-08-18 09:31:57 +02:00
docs Update docs and cleanup 2023-08-18 15:56:11 +02:00
init Update doc files 2023-06-26 12:39:08 +02:00
internal Merge pull request #194 from ClusterCockpit/105_modify_user_via_api 2023-08-23 08:57:40 +02:00
pkg Update test inputs 2023-08-18 09:31:57 +02:00
tools Rename convert pubkey folder 2023-06-26 12:47:21 +02:00
web fix link typo 2023-08-25 09:51:33 +02:00
.gitignore Fix bug in fsBackend and add tests for file utils 2023-06-28 07:39:39 +02:00
.goreleaser.yaml Switch release changelog to include filter 2023-07-03 13:24:03 +02:00
go.mod Update frontend and backend dependencies 2023-08-21 08:49:42 +02:00
go.sum Update frontend and backend dependencies 2023-08-21 08:49:42 +02:00
gqlgen.yml GraphQL remove toplevel thresholds and add Unit 2023-03-10 12:13:40 +01:00
LICENSE Add copyright and license header. Update license year 2022-07-29 06:29:21 +02:00
Makefile Prepare minor release 1.1.0 2023-07-20 08:33:42 +02:00
README.md feat: Add users rest endpoint swagger docs 2023-08-18 17:18:31 +02:00
ReleaseNotes.md Update Release notes 2023-08-14 13:35:32 +02:00
startDemo.sh Fix argument dashes 2023-06-27 14:30:09 +02:00
tools.go Reconfigure Swagger integration. Regenerate API docs 2022-09-16 06:09:55 +02:00

ClusterCockpit REST and GraphQL API backend

Build

This is a Golang backend implementation for a REST and GraphQL API according to the ClusterCockpit specifications. It also includes a web interface for ClusterCockpit. This implementation replaces the previous PHP Symfony based ClusterCockpit web interface. The reasons for switching from PHP Symfony to a Golang based solution are explained here.

Overview

This is a Golang web backend for the ClusterCockpit job-specific performance monitoring framework. It provides a REST API for integrating ClusterCockpit with an HPC cluster batch system and external analysis scripts. Data exchange between the web front-end and the back-end is based on a GraphQL API. The web frontend is also served by the backend using Svelte components. Layout and styling are based on Bootstrap 5 using Bootstrap Icons.

The backend uses SQLite 3 as a relational SQL database by default. Optionally it can use a MySQL/MariaDB database server. While there are metric data backends for the InfluxDB and Prometheus time series databases, the only tested and supported setup is to use cc-metric-store as the metric data backend. Documentation on how to integrate ClusterCockpit with other time series databases will be added in the future.

Completed batch jobs are stored in a file-based job archive according to [this specification] (https://github.com/ClusterCockpit/cc-specifications/tree/master/job-archive). The backend supports authentication via local accounts, an external LDAP directory, and JWT tokens. Authorization for APIs is implemented with JWT tokens created with public/private key encryption.

You find more detailed information here:

  • ./configs/README.md: Infos about configuration and setup of cc-backend.
  • ./init/README.md: Infos on how to setup cc-backend as systemd service on Linux.
  • ./tools/README.md: Infos on the JWT authorizatin token workflows in ClusterCockpit.
  • ./docs: You can find further documentation here. There is also a Hands-on tutorial that is recommended to get familiar with the ClusterCockpit setup.

NOTE

ClusterCockpit requires a current version of the golang toolchain and node.js. You can check go.mod to see what is the current minimal golang version needed. Homebrew and Archlinux usually have current golang versions. For other Linux distros this often means that you have to install the golang compiler yourself. Fortunately, this is easy with golang. Since much of the functionality is based on the Go standard library, it is crucial for security and performance to use a current version of golang. In addition, an old golang toolchain may limit the supported versions of third-party packages.

How to try ClusterCockpit with a demo setup.

We provide a shell script that downloads demo data and automatically starts the cc-backend. You will need wget, go, node, npm in your path to start the demo. The demo downloads 32MB of data (223MB on disk).

git clone https://github.com/ClusterCockpit/cc-backend.git
cd ./cc-backend
./startDemo.sh

You can also try the demo using the lates release binary. Create a folder and put the release binary cc-backend into this folder. Execute the following steps:

$ ./cc-backend -init
$ vim config.json (Add a second cluster entry and name the clusters alex and fritz)
$ wget https://hpc-mover.rrze.uni-erlangen.de/HPC-Data/0x7b58aefb/eig7ahyo6fo2bais0ephuf2aitohv1ai/job-archive-demo.tar
$ tar xf job-archive-demo.tar
$ ./cc-backend -init-db -add-user demo:admin:demo -loglevel info
$ ./cc-backend -server -dev -loglevel info

You can access the web interface at http://localhost:8080. Credentials for login are demo:demo. Please note that some views do not work without a metric backend (e.g., the Analysis, Systems and Status views).

Howto build and run

There is a Makefile to automate the build of cc-backend. The Makefile supports the following targets:

  • $ make: Initialize var directory and build svelte frontend and backend binary. Note that there is no proper prerequesite handling. Any change of frontend source files will result in a complete rebuild.
  • $ make clean: Clean go build cache and remove binary.
  • $ make test: Run the tests that are also run in the GitHub workflow setup.

A common workflow for setting up cc-backend from scratch is:

git clone https://github.com/ClusterCockpit/cc-backend.git

# Build binary
cd ./cc-backend/
make

# EDIT THE .env FILE BEFORE YOU DEPLOY (Change the secrets)!
# If authentication is disabled, it can be empty.
cp configs/env-template.txt  .env
vim .env

cp configs/config.json .
vim config.json

#Optional: Link an existing job archive:
ln -s <your-existing-job-archive> ./var/job-archive

# This will first initialize the job.db database by traversing all
# `meta.json` files in the job-archive and add a new user.
./cc-backend -init-db -add-user <your-username>:admin:<your-password>

# Start a HTTP server (HTTPS can be enabled in the configuration, the default port is 8080).
# The --dev flag enables GraphQL Playground (http://localhost:8080/playground) and Swagger UI (http://localhost:8080/swagger).
./cc-backend -server  -dev

# Show other options:
./cc-backend -help

Run as systemd daemon

To run this program as a daemon, cc-backend comes with a example systemd setup.

Configuration and setup

cc-backend can be used as a local web interface for an existing job archive or as a server for the ClusterCockpit monitoring framework.

Create your job archive according to [this specification] (https://github.com/ClusterCockpit/cc-specifications/tree/master/job-archive). At least one cluster directory with a valid cluster.json file is required. If you configure the job archive from scratch, you must also create the job archive version file that contains the job archive version as an integer. You can retrieve the currently supported version by running the following command:

$ ./cc-backend -version

It is ok to have no jobs in the job archive.

Configuration

A configuration file in JSON format must be specified with -config to override the default settings. By default, a config.json file located in the current directory of the cc-backend process will be loaded even without the -config flag. Documentation of all supported configuration and command line options can be found here.

Database initialization and migration

Each cc-backend version supports a specific database version. At startup, the version of the sqlite database is checked and cc-backend terminates if the version does not match. cc-backend supports the migration of the database schema to the required version with the command line option -migrate-db. If the database file does not exist yet, it will be created and initialized with the command line option -migrate-db. If you want to use a newer database version with an older version of cc-backend, you can downgrade a database with the external tool migrate. In this case, you must specify the path to the migration files in a current source tree: ./internal/repository/migrations/.

Development and testing

When making changes to the REST or GraphQL API, the appropriate code generators must be used. You must always rebuild cc-backend after updating the API files.

Update GraphQL schema

This project uses gqlgen for the GraphQL API. The schema can be found in ./api/schema.graphqls. After changing it, you need to run go run github.com/99designs/gqlgen, which will update ./internal/graph/model. If new resolvers are needed, they will be added to ./internal/graph/schema.resolvers.go, where you will then need to implement them. If you start cc-backend with the -dev flag, the GraphQL Playground UI is available at http://localhost:8080/playground.

Update Swagger UI

This project integrates [swagger ui] (https://swagger.io/tools/swagger-ui/) to document and test its REST API. The swagger documentation files can be found in ./api/. You can generate the swagger-ui configuration by running go run github.com/swaggo/swag/cmd/swag init -d ./internal/api,./pkg/schema -g rest.go -o ./api . You need to move the created ./api/docs.go to ./internal/api/docs.go. If you start cc-backend with the -dev flag, the Swagger interface is available at http://localhost:8080/swagger/. You must enter a JWT key for a user with the API role.

NOTE

The user who owns the JWT key must not be logged into the same browser (have a running session), or the Swagger requests will not work. It is recommended to create a separate user that has only the API role.

Development and testing

In case the REST or GraphQL API is changed the according code generators have to be used.

Project file structure

  • api/ contains the API schema files for the REST and GraphQL APIs. The REST API is documented in the OpenAPI 3.0 format in ./api/openapi.yaml.
  • cmd/cc-backend contains main.go for the main application.
  • configs/ contains documentation about configuration and command line options and required environment variables. A sample configuration file is provided.
  • docs/ contains more in-depth documentation.
  • init/ contains an example of setting up systemd for production use.
  • internal/ contains library source code that is not intended for use by others.
  • pkg/ contains Go packages that can be used by other projects.
  • tools/ Additional command line helper tools.
    • archive-manager Commands for getting infos about and existing job archive.
    • archive-migration Tool to migrate from previous to current job archive version.
    • convert-pem-pubkey Tool to convert external pubkey for use in cc-backend.
    • gen-keypair contains a small application to generate a compatible JWT keypair. You find documentation on how to use it here.
  • web/ Server-side templates and frontend-related files:
    • frontend Svelte components and static assets for the frontend UI
    • templates Server-side Go templates
  • gqlgen.yml Configures the behaviour and generation of gqlgen.
  • startDemo.sh is a shell script that sets up demo data, and builds and starts cc-backend.