featbit/featbit-evaluation-server

By featbit

Updated about 1 month ago

featbit evaluation server

Image
Web Servers
Developer Tools

10K+

About

This is the docker image of FeatBit's evaluation server which intended for use by featbit's sdks.

You can find its source code here: https://github.com/featbit/featbit/tree/main/modules/evaluation-server.

Usage

Type the following command to run the evaluation server:

docker run -d -p 5100:5100 --name featbit-evaluation-server featbitdocker/featbit-evaluation-server:latest.

Health Check

you have a few options to check the server's health status

Dump Health Check

Dump Health Check don't check whether the application can connect to its dependencies, and often only exercise the most basic requirements of the application itself i.e. can it respond to an HTTP request. To do that, you can

  • run docker inspect --format '{{json .State.Health}}' featbit-evaluation-server | jq to check if container's STATUS is healthy
  • run curl http://localhost:5100/health/liveness manually to check the application's liveness

Docker Pull Command

docker pull featbit/featbit-evaluation-server