{"id":18229714,"url":"https://github.com/vindolin/geolog","last_synced_at":"2026-02-26T10:37:23.006Z","repository":{"id":224093237,"uuid":"762319683","full_name":"vindolin/geolog","owner":"vindolin","description":"Visualize web server access on a browser map","archived":false,"fork":false,"pushed_at":"2025-03-19T06:01:13.000Z","size":2902,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-26T02:40:25.833Z","etag":null,"topics":["geoip","golang","map","monitoring"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vindolin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-23T14:33:36.000Z","updated_at":"2025-03-19T06:01:10.000Z","dependencies_parsed_at":"2024-03-07T10:55:53.339Z","dependency_job_id":"009c3327-c1b7-4896-8955-881ebe63755c","html_url":"https://github.com/vindolin/geolog","commit_stats":null,"previous_names":["vindolin/geolog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vindolin/geolog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vindolin%2Fgeolog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vindolin%2Fgeolog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vindolin%2Fgeolog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vindolin%2Fgeolog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vindolin","download_url":"https://codeload.github.com/vindolin/geolog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vindolin%2Fgeolog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29856743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["geoip","golang","map","monitoring"],"created_at":"2024-11-04T10:03:24.912Z","updated_at":"2026-02-26T10:37:22.987Z","avatar_url":"https://github.com/vindolin.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# geolog\n## Visualize live web server access on a browser map.\n\n![image](https://raw.githubusercontent.com/vindolin/geolog/main/screencast.webp)\n\n\n```shell\n\nusage: run [-h|--help] -l|--log_file \"\u003cvalue\u003e\" -g|--geodb_file \"\u003cvalue\u003e\"\n           [-p|--port \"\u003cvalue\u003e\"] [-s|--blip_size \u003cfloat\u003e] [-b|--blip_life_time\n           \u003cinteger\u003e] [-d|--dark]\n\n           run the geolog websocket server\n\nArguments:\n\n  -h  --help            Print help information\n  -l  --log_file        log file to tail\n  -g  --geodb_file      geolite db to use\n  -p  --port            port to listen on. Default: 8080\n  -s  --blip_size       Maximum size of the blip relative to the map width. Default: 0.3\n  -b  --blip_life_time  life time of the map blips (Milliseconds). Default: 2000\n  -d  --dark            dark mode\n  ```\n\n\u003e [!IMPORTANT]\n\u003e Geolog needs a local *.mmdb Maxmind database to lookup the geo location.\n\u003e\n\u003e You can get a free licence to download their geoip databases at: https://dev.maxmind.com/geoip.\n\u003e\n\u003e Geolog creates a http server from which the map is served, updates happen over websockets.\n\u003e\n\u003e Websockets get automatically reconnected.\n\u003e\n\n\n### Run the Go program directly from github:\n```shell\ngo run github.com/vindolin/geolog \\\n-l /var/log/nginx/access.log \\\n-g /opt/GeoLite2-City.mmdb \\\n-d\n```\n\n\n### ... or from source:\n```shell\ngo run . \\\n-l /var/log/nginx/access.log \\\n-g /opt/GeoLite2-City.mmdb \\\n-p 8080\n```\n\n## Docker\n\n### Build the container:\n\n```shell\ndocker build -t vindolin/geolog \\\n--build-arg ACCOUNT_ID={YOUR_ACCOUNT_ID} \\\n--build-arg LICENSE_KEY={YOUR_ICENSE_KEY} \\\n.\n```\n\n### ... and run it:\n\n#### light map\n![image](https://raw.githubusercontent.com/vindolin/geolog/main/light.png)\n\n```shell\ndocker run -it --rm --name geolog \\\n-v /var/log/nginx:/var/log/nginx:ro \\\n-p 8080:80 \\\nvindolin/geolog \\\n-l /var/log/nginx/access.log\n```\n\n#### dark map\n![image](https://raw.githubusercontent.com/vindolin/geolog/main/dark.png)\n\n```shell\ndocker run -it --rm --name geolog \\\n-v /var/log/nginx:/var/log/nginx:ro \\\n-p 8080:80 \\\nvindolin/geolog \\\n-l /var/log/nginx/access.log \\\n-d\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvindolin%2Fgeolog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvindolin%2Fgeolog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvindolin%2Fgeolog/lists"}