Skip to content

v1.2.0-beta

Compare
Choose a tag to compare
@gridhead gridhead released this 10 Apr 07:38
967401a

Changelog

This release comes with the following new additions.

  • General

    • Included another subprocess for running Redis server on an intrinsic port [#6]
    • All prompts were graduated to click.echo() [#16]
    • Version bumped urllib3 from v1.26.3 to v1.26.4 [#20]
  • System

    • Decoupled process listing endpoint from live-updating elements endpoint [#14]
  • Containers

    • Addressed absence of CPU statistics for some CPUs [#19]
  • Metrics

    • Added listing of metrics and storage in a rolling time window after equal intervals [#6]
    • Added endpoint for listing metrics that have been acquired so far [#6]
    • Added endpoint for displaying information of a specific timestamp [#6]

Availability

The releases are available at DockerHub.

Run the following command if you are on a generic PC.

docker run -d \
  --restart unless-stopped \
  --name supervisor-driver-service \
  -p 8888:8888 \
  -p 6969:6969 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  t0xic0der/supervisor-driver-service:v1.2.0b-amd64

or the following command, if you are running an aarch64 distribution on Raspberry Pi 3 or 4.

docker run -d \
  --restart unless-stopped \
  --name supervisor-driver-service \
  -p 8888:8888 \
  -p 6969:6969 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  t0xic0der/supervisor-driver-service:v1.2.0b-arm64

Then, run the following command to grab the credentials.

docker logs supervisor-driver-service
 ,---.                    .    ,o               
 `---..   .,---.,---.,---.|    |.,---.,---.,---.
     ||   ||   ||---'|     \  / |`---.|   ||    
 `---'`---'|---'`---'`      `'  ``---'`---'`    
           |
 * Driver Service v1.2.0-beta
 * Passcode          : 1435738C7EFB8D9B
 * Sync URI          : http://:8888/
 * TermSocket URI    : http://:6969/
 * Monitor service   : Psutil v5.8.0
 * Container service : DockerPy v4.4.1
 * Datastore service : RedisPy v3.5.3
 * WebSocket service : Terminado v0.9.2
 * Endpoint service  : Falcon v2.0.0
 * HTTP server       : Werkzeug v1.0.1
 * Starting Redis datastore server...

The frontend version and the driver version must be the same for total compatibility.