Giter VIP home page Giter VIP logo

observer's Introduction

Observer

https://hub.docker.com/repository/docker/smorenburg/observer

docker build --platform linux/amd64 -t smorenburg/observer:tagname .
docker push smorenburg/observer:tagname
docker run -d -p 27017:27017 --name mongodb \
  -e MONGO_INITDB_ROOT_USERNAME=admin \
  -e MONGO_INITDB_ROOT_PASSWORD=password \
  mongo
# Encrypt secrets.
export PROJECT_ID=project_id
export KEY_ID=projects/$PROJECT_ID/locations/europe-west4/keyRings/cluster-01/cryptoKeys/observer
sops --encrypt \
  --encrypted-regex '^(data|stringData)$' \
  --gcp-kms $KEY_ID observer-secrets.yaml > observer-secrets.encrypted.yaml
# Decrypt and deploy secrets.
sops --decrypt observer-secrets.encrypted.yaml | kubectl apply -f -
# Verify the exporter metrics path.
POD_NAME=observer-db-0
NAMESPACE=observer
PORT_NUMBER=9090
METRICS_PATH=/metrics
kubectl get --raw /api/v1/namespaces/$NAMESPACE/pods/$POD_NAME:$PORT_NUMBER/proxy/$METRICS_PATH
# 1000 requests
export HOST=http://localhost:8080
for i in {1..1000}; do
  curl "$HOST"
done
# 30 requests with a random delay in ms.
export HOST=http://localhost:8080
for i in {1..30}; do
  curl "$HOST/?latency=random"
done
# 30 requests with a random HTTP server error 500.
export HOST=http://localhost:8080
for i in {1..30}; do
  curl "$HOST/?error=random"
done

observer's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.