about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..eae62b0
--- /dev/null
+++ b/main.go
@@ -0,0 +1,31 @@
+package main
+
+import "database/sql"
+
+var (
+	metricsPusherDelay int64 = 5
+
+	DBURL            string = "postgresql.docker.localhost"
+	DISTRIBUTORURL   string = "localhost:8081"
+	METRICBUNDLERURL string = "metrics-bundler.nbg1.emile.space"
+
+	DBHOST    = "postgres.docker.localhost"
+	DBPORT    = 5432
+	DBUSER    = "postgres"
+	DBPASSWD  = ""
+	DBNAME    = "postgres"
+	DBSSLMODE = "disable"
+
+	db *sql.DB
+
+	metrics        map[string]float64
+	starsProcessed int64
+	theta          = 0.5
+)
+
+func main() {
+	getEnvironment()
+	connectToDatabase()
+	initMetricPusher()
+	processStars()
+}