文件操作 - textonly.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/src/netdata/web/gui/src/dashboard.js/charting/textonly.js
编辑文件内容
// ---------------------------------------------------------------------------------------------------------------- // "Text-only" chart - Just renders the raw value to the DOM NETDATA.textOnlyCreate = function(state, data) { var decimalPlaces = NETDATA.dataAttribute(state.element, 'textonly-decimal-places', 1); var prefix = NETDATA.dataAttribute(state.element, 'textonly-prefix', ''); var suffix = NETDATA.dataAttribute(state.element, 'textonly-suffix', ''); // Round based on number of decimal places to show var precision = Math.pow(10, decimalPlaces); var value = Math.round(data.result[0] * precision) / precision; state.element.textContent = prefix + value + suffix; return true; } NETDATA.textOnlyUpdate = NETDATA.textOnlyCreate;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件