Skip to content

Commit

Permalink
issue #29: replace user key with user ip
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthSidious007 committed Nov 13, 2024
1 parent c6fe778 commit e36cfe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all ci docker_build docker_retag docker_login docker_push

VERSION := 3.0.0
VERSION := 3.0.1
PROJECT_NAME ?= amneziavpn/amneziawg-exporter
DOCKER_BUILDKIT ?= 1
DOCKER_REGISTRY ?= docker.io
Expand Down
2 changes: 1 addition & 1 deletion exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def parse(text_block: str) -> list:
parts = line.split()
current_peer = {}
if len(parts) >= 6:
current_peer['peer'] = parts[1]
current_peer['peer'] = parts[4]
current_peer['latest_handshake'] = parts[5]
peers.append(current_peer)

Expand Down

0 comments on commit e36cfe0

Please sign in to comment.