Compare commits
	
		
			12 Commits
		
	
	
		
			v0.2.0
			...
			2e3cfb44f4
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 2e3cfb44f4 | |||
| be8a4f3bca | |||
| 96dfcf7e53 | |||
| 5fc16b39af | |||
| 1ae58f64ca | |||
| bb4e4aa2af | |||
| f102ef50bf | |||
| d3d251ef30 | |||
| eecaf2a82e | |||
| f0f6c58f0b | |||
| 681c7f703b | |||
| a11936ae65 | 
@@ -65,7 +65,7 @@ jobs:
 | 
			
		||||
          fi
 | 
			
		||||
 | 
			
		||||
      - name: Set up Docker Buildx
 | 
			
		||||
        uses: docker/setup-buildx-action@v2
 | 
			
		||||
        uses: docker/setup-buildx-action@v3
 | 
			
		||||
 | 
			
		||||
      - name: Log in to Custom Registry
 | 
			
		||||
        uses: docker/login-action@v3
 | 
			
		||||
@@ -75,11 +75,13 @@ jobs:
 | 
			
		||||
          password: ${{ secrets.API_TOKEN }}
 | 
			
		||||
 | 
			
		||||
      - name: Build and Push Docker Image
 | 
			
		||||
        uses: docker/build-push-action@v4
 | 
			
		||||
        uses: docker/build-push-action@v6
 | 
			
		||||
        with:
 | 
			
		||||
          context: .
 | 
			
		||||
          push: true
 | 
			
		||||
          tags: ${{ env.DOCKER_IMG }}:${{ github.ref_name }}
 | 
			
		||||
          tags: |
 | 
			
		||||
            ${{ env.DOCKER_IMG }}:${{ github.ref_name }}
 | 
			
		||||
            ${{ env.DOCKER_IMG }}:latest
 | 
			
		||||
          build-args: |
 | 
			
		||||
            VER_PKG={{ env.VER_PKG }}
 | 
			
		||||
            VER_PKG=${{ env.VER_PKG }}
 | 
			
		||||
            VERSION=${{ github.ref_name }}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -20,7 +20,11 @@
 | 
			
		||||
 | 
			
		||||
# Go workspace file
 | 
			
		||||
go.work
 | 
			
		||||
go.work.sum
 | 
			
		||||
 | 
			
		||||
.env
 | 
			
		||||
 | 
			
		||||
bin/*
 | 
			
		||||
 | 
			
		||||
config.yaml
 | 
			
		||||
docker-compose.yml
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							@@ -3,7 +3,7 @@ CMD_NAME := ambient-local-exporter
 | 
			
		||||
.PHONY: all test build docker install clean
 | 
			
		||||
 | 
			
		||||
VERSION ?= development # Default to "development" if VERSION is not set
 | 
			
		||||
PLATFORMS := linux/amd64 darwin/amd64 darwin/arm64
 | 
			
		||||
PLATFORMS := linux/amd64 linux/arm64 darwin/amd64 darwin/arm64
 | 
			
		||||
OUTPUT_DIR := bin
 | 
			
		||||
VER_PKG := gitea.libretechconsulting.com/rmcguire/go-app/pkg/config.Version
 | 
			
		||||
DOCKER_IMG := gitea.libretechconsulting.com/rmcguire/ambient-local-exporter
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								TODO.md
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								TODO.md
									
									
									
									
									
								
							@@ -1,10 +1,12 @@
 | 
			
		||||
# TODO
 | 
			
		||||
 | 
			
		||||
- [ ] Fix shutdown
 | 
			
		||||
- [ ] Configuration for app
 | 
			
		||||
- [ ] Makefile
 | 
			
		||||
- [ ] Dockerfile
 | 
			
		||||
- [ ] Helm Chart
 | 
			
		||||
- [ ] Gitea CI
 | 
			
		||||
- [ ] Update README
 | 
			
		||||
- [ ] Version flag
 | 
			
		||||
- [ ] Add new fields from WS-2192
 | 
			
		||||
 | 
			
		||||
## Done
 | 
			
		||||
- [x] Gitea CI
 | 
			
		||||
- [x] Version flag
 | 
			
		||||
- [x] Makefile
 | 
			
		||||
- [x] Dockerfile
 | 
			
		||||
 
 | 
			
		||||
@@ -10,6 +10,10 @@ services:
 | 
			
		||||
      APP_LOG_FORMAT: json ## console, json
 | 
			
		||||
      APP_LOG_TIME_FORMAT: rfc3339 ## long, short, unix, rfc3339, off
 | 
			
		||||
      APP_HTTP_LISTEN: 0.0.0.0:8080
 | 
			
		||||
      APP_HTTP_READ_TIMEOUT: 10s
 | 
			
		||||
      APP_HTTP_WRITE_TIMEOUT: 10s
 | 
			
		||||
      APP_HTTP_IDLE_TIMEOUT: 30s
 | 
			
		||||
      APP_HTTP_LOG_REQUESTS: true
 | 
			
		||||
      APP_OTEL_STDOUT_ENABLED: false
 | 
			
		||||
      APP_OTEL_METRIC_INTERVAL_SECS: 30
 | 
			
		||||
      OTEL_EXPORTER_OTLP_ENDPOINT: http://otel.libretechconsulting.com:4317 # Set to your otel collector
 | 
			
		||||
							
								
								
									
										4
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.mod
									
									
									
									
									
								
							@@ -3,7 +3,7 @@ module gitea.libretechconsulting.com/rmcguire/ambient-weather-local-exporter
 | 
			
		||||
go 1.23.4
 | 
			
		||||
 | 
			
		||||
require (
 | 
			
		||||
	gitea.libretechconsulting.com/rmcguire/go-app v0.1.1
 | 
			
		||||
	gitea.libretechconsulting.com/rmcguire/go-app v0.2.0
 | 
			
		||||
	github.com/gorilla/schema v1.4.1
 | 
			
		||||
	github.com/rs/zerolog v1.33.0
 | 
			
		||||
	go.opentelemetry.io/otel v1.33.0
 | 
			
		||||
@@ -13,7 +13,7 @@ require (
 | 
			
		||||
 | 
			
		||||
require (
 | 
			
		||||
	github.com/beorn7/perks v1.0.1 // indirect
 | 
			
		||||
	github.com/caarlos0/env/v9 v9.0.0 // indirect
 | 
			
		||||
	github.com/caarlos0/env/v11 v11.3.1 // indirect
 | 
			
		||||
	github.com/cenkalti/backoff/v4 v4.3.0 // indirect
 | 
			
		||||
	github.com/cespare/xxhash/v2 v2.3.0 // indirect
 | 
			
		||||
	github.com/felixge/httpsnoop v1.0.4 // indirect
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								go.sum
									
									
									
									
									
								
							@@ -1,11 +1,11 @@
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.0 h1:H4TMgQ463oRNOyoi0FAvfGtOoDn651zNZStxM+sdNuU=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.0/go.mod h1:p0ajkpFvzzD6VZ4xSjuowtwGRb1DjMfo/iG6LyFqFCs=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.1 h1:Hrxqi1tqz8mf0baBsWgFe/S4jyMtIuPqH2FlanJUMNc=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.1/go.mod h1:p0ajkpFvzzD6VZ4xSjuowtwGRb1DjMfo/iG6LyFqFCs=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.3 h1:EwmEJLpN+rQjJ5stGEkZsqEDa5F/YnDAEeqJB9XlFn4=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.1.3/go.mod h1:wHOWh4O4AMDATQ3WEUYjq5a5bnICPBpu5G6BsNxqN38=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.2.0 h1:pOm/PysC0IWPuEbmEjNSHHa8Qc5OhuoksYExcuJMFE4=
 | 
			
		||||
gitea.libretechconsulting.com/rmcguire/go-app v0.2.0/go.mod h1:wHOWh4O4AMDATQ3WEUYjq5a5bnICPBpu5G6BsNxqN38=
 | 
			
		||||
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
 | 
			
		||||
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
 | 
			
		||||
github.com/caarlos0/env/v9 v9.0.0 h1:SI6JNsOA+y5gj9njpgybykATIylrRMklbs5ch6wO6pc=
 | 
			
		||||
github.com/caarlos0/env/v9 v9.0.0/go.mod h1:ye5mlCVMYh6tZ+vCgrs/B95sj88cg5Tlnc0XIzgZ020=
 | 
			
		||||
github.com/caarlos0/env/v11 v11.3.1 h1:cArPWC15hWmEt+gWk7YBi7lEXTXCvpaSdCiZE2X5mCA=
 | 
			
		||||
github.com/caarlos0/env/v11 v11.3.1/go.mod h1:qupehSf/Y0TUTsxKywqRt/vJjN5nz6vauiYEUUr8P4U=
 | 
			
		||||
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
 | 
			
		||||
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
 | 
			
		||||
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
 | 
			
		||||
 
 | 
			
		||||
@@ -85,6 +85,7 @@ func (aw *AmbientWeather) handleProviderRequest(
 | 
			
		||||
 | 
			
		||||
		w.WriteHeader(http.StatusInternalServerError)
 | 
			
		||||
		w.Write([]byte(err.Error()))
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Calculate any fields that may be missing
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,10 @@ import "math"
 | 
			
		||||
// Attempts to complete missing fields that may not
 | 
			
		||||
// be set by a specific provider, such as DewPoint and WindChill
 | 
			
		||||
func (u *WeatherUpdate) Enrich() {
 | 
			
		||||
	if u == nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if u.WindChillF == 0 {
 | 
			
		||||
		u.WindChillF = CalculateWindChill(u.TempOutdoorF, u.WindSpeedMPH)
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										8
									
								
								unset_env.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										8
									
								
								unset_env.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
#!env sh
 | 
			
		||||
unset APP_NAME
 | 
			
		||||
unset APP_LOG_LEVEL
 | 
			
		||||
unset APP_LOG_FORMAT
 | 
			
		||||
unset APP_LOG_TIME_FORMAT
 | 
			
		||||
unset APP_HTTP_LISTEN
 | 
			
		||||
unset APP_OTEL_STDOUT_ENABLED
 | 
			
		||||
unset APP_OTEL_METRIC_INTERVAL_SECS
 | 
			
		||||
		Reference in New Issue
	
	Block a user