Kurbitz / PDCMAD

Creative Commons Attribution 4.0 International
3 stars 0 forks source link

Read/parse metrics and write to InfluxDB #28

Closed Kurbitz closed 11 months ago

Kurbitz commented 11 months ago

Successfully read and parse metrics asynchronously. The metrics are then ingested into a InfluxDB server.

To run this you need to have a local InfluxDB server running. Works needs to be done on creating a container environment where all of this is handled automatically. But until then you can run: docker run -p 8086:8086 -v myInfluxVolume:/var/lib/influxdb2 influxdb:latest and set up the server manually before running the simulation.

Things that still need to be done:

Closes #3 #2 #6 #17 #18 Also has effects on #15 since we use InfluxDB for the implementation.

Kurbitz commented 11 months ago

The structure of the Go code probably needs to be reorganized into a single module. We seem to have misunderstood how to organize a Go project. This is pretty easily fixed though.