almost finished

This commit is contained in:
Hyatt 2021-10-30 16:44:05 -05:00
parent feabcd9058
commit d2e41d6367
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 101 additions and 12 deletions

83
cmd/go-temper/init.go Normal file
View File

@ -0,0 +1,83 @@
package main
import (
"flag"
"log"
"os"
"strconv"
"time"
"github.com/hashicorp/logutils"
"github.com/prometheus/client_golang/prometheus"
)
func getEnvString(env, def string) (val string) { //nolint:deadcode
val = os.Getenv(env)
if val == "" {
return def
}
return
}
func getEnvInt(env string, def int) (ret int) {
val := os.Getenv(env)
if val == "" {
return def
}
ret, err := strconv.Atoi(val)
if err != nil {
log.Fatalf("[ERROR] Environment variable is not numeric: %v\n", env)
}
return
}
func initialize() {
config.TimeZone, _ = time.LoadLocation("America/Chicago")
config.TimeZoneUTC, _ = time.LoadLocation("UTC")
var logLevel int
flag.IntVar(&logLevel,
"log",
getEnvInt("LOG_LEVEL", 50),
"(LOG_LEVEL)\nlog level")
flag.IntVar(&config.WebSrvPort,
"http-port",
getEnvInt("HTTP_PORT", 8080),
"(HTTP_PORT)\nlisten port for internal webserver")
flag.StringVar(&config.WebSrvIP,
"http-ip",
getEnvString("HTTP_IP", "0.0.0.0"),
"(HTTP_IP)\nlisten ip for internal webserver")
flag.Parse()
switch {
case logLevel <= 20:
config.Log.SetMinLevel(logutils.LogLevel("ERROR"))
case logLevel > 20 && logLevel <= 40:
config.Log.SetMinLevel(logutils.LogLevel("WARNING"))
case logLevel > 40 && logLevel <= 60:
config.Log.SetMinLevel(logutils.LogLevel("INFO"))
case logLevel > 60 && logLevel <= 80:
config.Log.SetMinLevel(logutils.LogLevel("DEBUG"))
case logLevel > 80:
config.Log.SetMinLevel(logutils.LogLevel("TRACE"))
}
log.SetOutput(config.Log)
// print current configuration
log.Printf("[DEBUG] configuration value set: LOG_LEVEL = %v\n", strconv.Itoa(logLevel))
log.Printf("[DEBUG] configuration value set: HTTP_PORT = %v\n", strconv.Itoa(config.WebSrvPort))
log.Printf("[DEBUG] configuration value set: HTTP_IP = %v\n", config.WebSrvIP)
prometheus.MustRegister(config.Prometheus.Temperature)
log.Println("[DEBUG] Prometheus metrics registered")
log.Println("[INFO] initialization complete")
}

View File

@ -5,7 +5,9 @@ import (
"os"
"os/signal"
"syscall"
"time"
"gitea.smoothnet.org/nhyatt/go-temper/internal/temper"
"github.com/prometheus/client_golang/prometheus"
)
@ -17,28 +19,32 @@ func forever() {
log.Println("[INFO] Shutdown signal received...")
}
func main() {
prometheus.MustRegister(config.Prometheus.Temperature)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "celsius"}).Set(100)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "fahrenheit"}).Set(100)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "kelvin"}).Set(100)
go httpServer("0.0.0.0", 8080)
forever()
/*for {
func readTemp() {
for {
temp, err := temper.GetTemperature()
if err != nil {
log.Printf("[WARNING] Unable to get temperature from device: %v\n", err)
} else {
log.Printf(
"Temperature: %.2f°K %.2f°F %.2f°C\n",
"[DEBUG] Temperature: %.2f°K %.2f°F %.2f°C\n",
temp+273.15,
9.0/5.0*temp+32,
temp,
)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "celsius"}).Set(temp)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "fahrenheit"}).Set(9.0/5.0*temp+32)
config.Prometheus.Temperature.With(prometheus.Labels{"unit": "kelvin"}).Set(temp+273.15)
}
time.Sleep(time.Duration(5 * time.Second))
}
*/
}
func main() {
initialize()
go httpServer(config.WebSrvIP, config.WebSrvPort)
go readTemp()
forever()
}