mirror of
https://github.com/lalanza808/xmr.sh.git
synced 2025-05-17 17:20:24 -04:00
fix quantiles, bump versions
This commit is contained in:
parent
8dd1927677
commit
9c92b6eaa6
5 changed files with 19 additions and 19 deletions
4
.env
4
.env
|
@ -20,6 +20,6 @@ TOR_HTTP_PORT=80
|
||||||
EXPLORER_TAG=v0.17
|
EXPLORER_TAG=v0.17
|
||||||
EXPLORER_PORT=8081
|
EXPLORER_PORT=8081
|
||||||
|
|
||||||
GRAFANA_TAG=9.0.0-beta1
|
GRAFANA_TAG=8.5.4
|
||||||
|
|
||||||
PROMETHEUS_TAG=v2.22.2
|
PROMETHEUS_TAG=2.36.0
|
||||||
|
|
|
@ -5364,25 +5364,25 @@
|
||||||
{
|
{
|
||||||
"allValue": null,
|
"allValue": null,
|
||||||
"current": {},
|
"current": {},
|
||||||
"datasource": null,
|
"datasource": "prometheus",
|
||||||
"definition": "label_values(monero_lastblock_transactions_inputs,quantile)",
|
"definition": "",
|
||||||
"description": "quantile to filter for in the panels that use distributions",
|
|
||||||
"error": null,
|
|
||||||
"hide": 0,
|
"hide": 0,
|
||||||
"includeAll": true,
|
"includeAll": false,
|
||||||
"label": "quantile",
|
"index": -1,
|
||||||
"multi": true,
|
"label": "Quantile",
|
||||||
|
"multi": false,
|
||||||
"name": "quantile",
|
"name": "quantile",
|
||||||
"options": [],
|
"options": [],
|
||||||
"query": {
|
"query": "label_values(monero_peerlist_lastseen,quantile)",
|
||||||
"query": "label_values(monero_lastblock_transactions_inputs,quantile)",
|
|
||||||
"refId": "StandardVariableQuery"
|
|
||||||
},
|
|
||||||
"refresh": 1,
|
"refresh": 1,
|
||||||
"regex": "",
|
"regex": "",
|
||||||
"skipUrlSync": false,
|
"skipUrlSync": false,
|
||||||
"sort": 0,
|
"sort": 1,
|
||||||
"type": "query"
|
"tagValuesQuery": "",
|
||||||
|
"tags": [],
|
||||||
|
"tagsQuery": "",
|
||||||
|
"type": "query",
|
||||||
|
"useTags": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
reporting_enabled = false
|
reporting_enabled = false
|
||||||
check_for_updates = false
|
check_for_updates = false
|
||||||
|
|
||||||
|
|
||||||
[auth]
|
[auth]
|
||||||
disable_login_form = true
|
disable_login_form = false
|
||||||
|
|
||||||
; [auth.anonymous]
|
; [auth.anonymous]
|
||||||
; enabled = true
|
; enabled = true
|
||||||
|
@ -17,7 +16,6 @@ default_home_dashboard_path = /var/lib/grafana/dashboards/monero.json
|
||||||
[paths]
|
[paths]
|
||||||
provisioning = /etc/grafana/provisioning
|
provisioning = /etc/grafana/provisioning
|
||||||
|
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
root_url = https://127.0.0.1/grafana
|
root_url = https://127.0.0.1/grafana
|
||||||
enable_gzip = true
|
enable_gzip = true
|
||||||
|
|
|
@ -101,7 +101,7 @@ x-grafana-service: &grafana-service
|
||||||
|
|
||||||
x-prometheus-service: &prometheus-service
|
x-prometheus-service: &prometheus-service
|
||||||
prometheus:
|
prometheus:
|
||||||
#user: root
|
user: root # root user needed to use an external volume
|
||||||
command:
|
command:
|
||||||
- --config.file=/etc/prometheus/config.yaml
|
- --config.file=/etc/prometheus/config.yaml
|
||||||
- --storage.tsdb.path=/data
|
- --storage.tsdb.path=/data
|
||||||
|
|
2
install
2
install
|
@ -233,6 +233,8 @@ configure_tls_port() {
|
||||||
done
|
done
|
||||||
# Set port in vars
|
# Set port in vars
|
||||||
sed -i "s/TRAEFIK_TLS_PORT=.*/TRAEFIK_TLS_PORT=${TLS_PORT}/g" .env
|
sed -i "s/TRAEFIK_TLS_PORT=.*/TRAEFIK_TLS_PORT=${TLS_PORT}/g" .env
|
||||||
|
else
|
||||||
|
TLS_PORT="443"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue