chore: rename pihole api token occurences

This commit is contained in:
shaned24 2020-04-26 23:38:28 +01:00
parent a3081487fd
commit 9df82ecde2
2 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ Or use PiHole's `WEBPASSWORD` as an API token instead of the password
$ API_TOKEN=$(awk -F= -v key="WEBPASSWORD" '$1==key {print $2}' /etc/pihole/setupVars.conf) $ API_TOKEN=$(awk -F= -v key="WEBPASSWORD" '$1==key {print $2}' /etc/pihole/setupVars.conf)
$ docker run \ $ docker run \
-e 'PIHOLE_HOSTNAME=192.168.1.2' \ -e 'PIHOLE_HOSTNAME=192.168.1.2' \
-e "PIHOLE_APITOKEN=$API_TOKEN" \ -e "PIHOLE_API_TOKEN=$API_TOKEN" \
-e 'INTERVAL=30s' \ -e 'INTERVAL=30s' \
-e 'PORT=9617' \ -e 'PORT=9617' \
ekofr/pihole-exporter:latest ekofr/pihole-exporter:latest
@ -94,7 +94,7 @@ Or use PiHole's `WEBPASSWORD` as an API token instead of the password
```bash ```bash
$ API_TOKEN=$(awk -F= -v key="WEBPASSWORD" '$1==key {print $2}' /etc/pihole/setupVars.conf) $ API_TOKEN=$(awk -F= -v key="WEBPASSWORD" '$1==key {print $2}' /etc/pihole/setupVars.conf)
$ ./pihole_exporter -pihole_hostname 192.168.1.10 -pihole_apitoken $API_TOKEN $ ./pihole_exporter -pihole_hostname 192.168.1.10 -pihole_api_token $API_TOKEN
``` ```
```bash ```bash
@ -150,7 +150,7 @@ scrape_configs:
# WEBPASSWORD / api token defined on the PI-Hole interface at `/etc/pihole/setupVars.conf` # WEBPASSWORD / api token defined on the PI-Hole interface at `/etc/pihole/setupVars.conf`
-pihole_apitoken string (optional) -pihole_api_token string (optional)
# Port to be used for the exporter # Port to be used for the exporter
-port string (optional) (default "9617") -port string (optional) (default "9617")

View file

@ -17,7 +17,7 @@ import (
type Config struct { type Config struct {
PIHoleHostname string `config:"pihole_hostname"` PIHoleHostname string `config:"pihole_hostname"`
PIHolePassword string `config:"pihole_password"` PIHolePassword string `config:"pihole_password"`
PIHoleApiToken string `config:"pihole_apitoken"` PIHoleApiToken string `config:"pihole_api_token"`
Port string `config:"port"` Port string `config:"port"`
Interval time.Duration `config:"interval"` Interval time.Duration `config:"interval"`
} }
@ -73,6 +73,6 @@ func (c Config) show() {
func showAuthenticationMethod(name, value string) { func showAuthenticationMethod(name, value string) {
if len(value) > 0 { if len(value) > 0 {
log.Println(fmt.Sprintf("PiHole Authentication Method : %s", name)) log.Println(fmt.Sprintf("Pi-Hole Authentication Method : %s", name))
} }
} }