0

I am using K6 for Load Testing, with Grafana and InfluxDB.

I have cloned the K6, Grafana, InfluxDB docker-compose set up from here:

https://github.com/loadimpact/k6

There are a huge number of folders and files in the cloned repository. I am guessing most of them aren't actually needed.

Is there a definitive list showing just the folders/files that are required to run k6, grafana and influxdb so I can clean up my repository?

Matt
  • 773
  • 2
  • 15
  • 30

1 Answers1

2

I understand that you just want the test files. you just need this folder for running the test scripts using the docker-compose setup

and files for the grafana dashboards and datasources as mentioned here and the docker-compose.yml

Jeeva
  • 438
  • 4
  • 12
  • Thanks Jeevananthan. So what are all the other folders and files for? I thought it was just a docker for running K6 tests with InfluxDB and Grafana. – Matt Sep 03 '20 at 14:50
  • @Matt the other files are the full source for building k6. You won't need them to run it as a stack in docker unless you prefer building your own docker image over using the official one. :) If you don't want to run any of the sample scripts, you don't need that directory either. – simme Sep 07 '20 at 11:10
  • Thanks Simme. Yes I have realised now that all you actually need is the docker-compose.yml plus your own stuff. – Matt Sep 08 '20 at 19:37