summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Bakken <44713028+nekkabcire@users.noreply.github.com>2018-11-15 11:09:35 -0600
committerCosta Tsaousis <costa@tsaousis.gr>2018-11-15 19:09:35 +0200
commit28b384e48581e344b92780bea56e6f2aac982c23 (patch)
tree544d75a938828e0c6d9beb107433818281e3ac73
parentdb1a205ba01b6a8e36fea52258f2a7aab3084e32 (diff)
Update Doc links for adding charts and alarms in sidebar. Isuue #4650 (#4669)
-rw-r--r--web/gui/demosites.html2
-rw-r--r--web/gui/main.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/web/gui/demosites.html b/web/gui/demosites.html
index 5cab188e6a..5bb0000343 100644
--- a/web/gui/demosites.html
+++ b/web/gui/demosites.html
@@ -699,7 +699,7 @@ p {
network, firewall, <a href="https://github.com/netdata/netdata/wiki/Why-netdata%3F#visualizes-qos" target="_blank" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=QoS>QoS</a>, NFS, ZFS, etc).
<br/>
Detailed performance metrics for dozens of
- <b><a href="https://github.com/netdata/netdata/wiki/Add-more-charts-to-netdata" target="_blank" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=AddMoreCharts>applications</a></b>
+ <b><a href="https://github.com/netdata/netdata/blob/master/doc/Add-more-charts-to-netdata.md#add-more-charts-to-netdata" target="_blank" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=AddMoreCharts>applications</a></b>
(such as web servers, databases servers, email servers, DNS servers, etc).
<br/>
Visualize metrics collected from <b><a href="https://github.com/netdata/netdata/blob/master/conf.d/node.d/snmp.conf.md" target="_blank" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=SNMP>SNMP devices</a></b>,
diff --git a/web/gui/main.js b/web/gui/main.js
index 1cf587db8d..64fb4805eb 100644
--- a/web/gui/main.js
+++ b/web/gui/main.js
@@ -1611,8 +1611,8 @@ function renderPage(menus, data) {
html += mhead + shtml + '</div></div><hr role="separator"/>';
}
- sidebar += '<li class="" style="padding-top:15px;"><a href="https://github.com/netdata/netdata/wiki/Add-more-charts-to-netdata" target="_blank"><i class="fas fa-plus"></i> add more charts</a></li>';
- sidebar += '<li class=""><a href="https://github.com/netdata/netdata/wiki/Add-more-alarms-to-netdata" target="_blank"><i class="fas fa-plus"></i> add more alarms</a></li>';
+ sidebar += '<li class="" style="padding-top:15px;"><a href="https://github.com/netdata/netdata/blob/master/doc/Add-more-charts-to-netdata.md#add-more-charts-to-netdata" target="_blank"><i class="fas fa-plus"></i> add more charts</a></li>';
+ sidebar += '<li class=""><a href="https://github.com/netdata/netdata/tree/master/health#Health-monitoring" target="_blank"><i class="fas fa-plus"></i> add more alarms</a></li>';
sidebar += '<li class="" style="margin:20px;color:#666;"><small>netdata on <b>' + data.hostname.toString() + '</b>, collects every ' + ((data.update_every === 1) ? 'second' : data.update_every.toString() + ' seconds') + ' <b>' + data.dimensions_count.toLocaleString() + '</b> metrics, presented as <b>' + data.charts_count.toLocaleString() + '</b> charts and monitored by <b>' + data.alarms_count.toLocaleString() + '</b> alarms, using ' + Math.round(data.rrd_memory_bytes / 1024 / 1024).toLocaleString() + ' MB of memory for ' + NETDATA.seconds4human(data.update_every * data.history, {space: '&nbsp;'}) + ' of real-time history.<br/>&nbsp;<br/><b>netdata</b><br/>v' + data.version.toString() + '</small></li>';
sidebar += '</ul>';
div.innerHTML = html;