Skip to content
forked from openflagr/flagr

Flagr is a feature flagging, A/B testing and dynamic configuration microservice

License

Notifications You must be signed in to change notification settings

scaledata/flagr

This branch is 1 commit ahead of, 499 commits behind openflagr/flagr:main.

Folders and files

NameName
Last commit message
Last commit date
Apr 23, 2018
Oct 2, 2017
Oct 13, 2017
Jun 11, 2018
Jun 11, 2018
Jun 11, 2018
Jun 11, 2018
Jun 11, 2018
Jun 11, 2018
May 29, 2018
Nov 21, 2017
Oct 28, 2017
Apr 12, 2018
Nov 16, 2017
Jan 16, 2018
Nov 14, 2017
Apr 5, 2018
Nov 3, 2017
Jun 11, 2018
May 29, 2018
May 16, 2018
Apr 23, 2018
Apr 12, 2018
Jan 16, 2018
Oct 24, 2017

Repository files navigation

Introduction

Flagr is an open source Go service that delivers the right experience to the right entity and monitors the impact. It provides feature flags, experimentation (A/B testing), and dynamic configuration. It has clear swagger REST APIs for flags management and flag evaluation.

Documentation

Quick demo

Try it with Docker.

# Get the checkr/flagr docker image
docker run -it -p 18000:18000 checkr/flagr

# Open the flagr homepage
open localhost:18000

Or try it on https://try-flagr.herokuapp.com

curl --request POST \
       --url https://try-flagr.herokuapp.com/api/v1/evaluation \
       --header 'content-type: application/json' \
       --data '{
         "entityID": "127",
           "entityType": "user",
           "entityContext": {
             "state": "NY"
           },
           "flagID": 1,
           "enableDebug": true
       }'

Flagr Evaluation Performance

Tested with vegeta. For more details, see benchmarks.

Requests      [total, rate]            56521, 2000.04
Duration      [total, attack, wait]    28.2603654s, 28.259999871s, 365.529µs
Latencies     [mean, 50, 95, 99, max]  371.632µs, 327.991µs, 614.918µs, 1.385568ms, 12.50012ms
Bytes In      [total, mean]            23250552, 411.36
Bytes Out     [total, mean]            8308587, 147.00
Success       [ratio]                  100.00%
Status Codes  [code:count]             200:56521
Error Set:

Flagr UI

About

Flagr is a feature flagging, A/B testing and dynamic configuration microservice

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 64.2%
  • Vue 21.7%
  • JavaScript 9.8%
  • Shell 2.5%
  • Makefile 1.2%
  • Python 0.5%
  • HTML 0.1%