Fixed hardcoded reference to play.jarno.ca

This commit is contained in:
DeathByDenim 2022-02-14 19:20:36 -05:00
parent 8b4c6a68fd
commit 0b88b85244
Signed by: DeathByDenim
GPG Key ID: 4A475283D925365B
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ function updateGraph(data, svgid, property_class, property) {
}
function update() {
d3.json('https://play.jarno.ca/monitoring/all').then(function(data){
d3.json('https://DOMAINNAME/monitoring/all').then(function(data){
updateGraph(data, '#memgraph', 'mem', 'm');
updateGraph(data, '#cpugraph', 'cpu', 'c');
});