Skip to content

hugogu/wallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wallet Service

Development

确认本地Docker已经安装并启动。

  1. Build Image
    ./gradlew :web-api:bootBuildImage
  2. Run
    docker-compose up -d
  3. Benchmark
    docker run --network="host" -i loadimpact/k6 run --out influxdb=http://localhost:8086/k6  - < ./benchmark/k6-scripts/max-vu.js
    docker run --network="host" -i wallet-k6 run -o xk6-influxdb -e K6_INFLUXDB_ORGANIZATION='hugo' -e K6_INFLUXDB_BUCKET='k6' -e K6_INFLUXDB_TOKEN='secret_token' - < ./benchmark/k6-scripts/max-vu.js
    docker run --network="host" -i wallet-k6 run -o xk6-influxdb --out xk6-influxdb=http://localhost:8086/k6 - < ./benchmark/k6-scripts/max-vu.js
    
    docker run --network="host" -i wallet-k6 run -o experimental-prometheus-rw - < ./benchmark/k6-scripts/max-vu.js
    docker run -i wallet-k6 run -o experimental-prometheus-rw - < ./benchmark/k6-scripts/max-vu.js

Run K6 with InfluxDB

  1. Install Go
  2. Generate InfluxDB Token
  3. Install K6
    brew install k6
    go install go.k6.io/xk6/cmd/xk6@latest
    export PATH=$(go env GOPATH)/bin:$PATH
  k6:
    build: ./benchmark/k6
    ports:
      - "6565:6565"
    environment:
      - K6_INFLUXDB_ADDR=http://localhost:8086
      - K6_INFLUXDB_ORGANIZATION=hugo
      - K6_INFLUXDB_BUCKET=k6
      - K6_INFLUXDB_INSECURE=true
      - K6_INFLUXDB_TOKEN=secret_token
    volumes:
      - ./benchmark/k6-scripts:/scripts
  k6:
    build: ./benchmark/k6
    ports:
      - "6565:6565"
    environment:
      - K6_PROMETHEUS_RW_SERVER_URL=http://localhost:9090/api/v1
      - K6_PROMETHEUS_RW_TREND_STATS=p(95),p(99),min,max
    volumes:
      - ./benchmark/k6-scripts:/scripts

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published