├── .codacy.yml ├── .codeclimate.yml ├── .csslintrc ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .lgtm.yml ├── .travis.yml ├── .travis ├── README.md ├── create_artifacts.sh ├── gcs-credentials.json.enc ├── generate_changelog.sh ├── labeler.sh ├── nightlies.sh ├── releaser.sh └── tagger.sh ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── HISTORICAL_CHANGELOG.md ├── LICENSE ├── Makefile.am ├── README.md ├── REDISTRIBUTED.md ├── backends ├── Makefile.am ├── README.md ├── WALKTHROUGH.md ├── backends.c ├── backends.h ├── graphite │ ├── Makefile.am │ ├── graphite.c │ └── graphite.h ├── json │ ├── Makefile.am │ ├── json.c │ └── json.h ├── nc-backend.sh ├── opentsdb │ ├── Makefile.am │ ├── opentsdb.c │ └── opentsdb.h └── prometheus │ ├── Makefile.am │ ├── README.md │ ├── backend_prometheus.c │ └── backend_prometheus.h ├── collectors ├── Makefile.am ├── README.md ├── all.h ├── apps.plugin │ ├── Makefile.am │ ├── README.md │ ├── apps_groups.conf │ └── apps_plugin.c ├── cgroups.plugin │ ├── Makefile.am │ ├── README.md │ ├── cgroup-name.sh.in │ ├── cgroup-network-helper.sh │ ├── cgroup-network.c │ ├── sys_fs_cgroup.c │ └── sys_fs_cgroup.h ├── charts.d.plugin │ ├── .keep │ ├── Makefile.am │ ├── README.md │ ├── ap │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── ap.chart.sh │ │ └── ap.conf │ ├── apache │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── apache.chart.sh │ │ └── apache.conf │ ├── apcupsd │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── apcupsd.chart.sh │ │ └── apcupsd.conf │ ├── charts.d.conf │ ├── charts.d.dryrun-helper.sh │ ├── charts.d.plugin.in │ ├── cpu_apps │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── cpu_apps.chart.sh │ │ └── cpu_apps.conf │ ├── cpufreq │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── cpufreq.chart.sh │ │ └── cpufreq.conf │ ├── example │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── example.chart.sh │ │ └── example.conf │ ├── exim │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── exim.chart.sh │ │ └── exim.conf │ ├── hddtemp │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── hddtemp.chart.sh │ │ └── hddtemp.conf │ ├── libreswan │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── libreswan.chart.sh │ │ └── libreswan.conf │ ├── load_average │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── load_average.chart.sh │ │ └── load_average.conf │ ├── loopsleepms.sh.inc │ ├── mem_apps │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── mem_apps.chart.sh │ │ └── mem_apps.conf │ ├── mysql │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── mysql.chart.sh │ │ └── mysql.conf │ ├── nginx │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nginx.chart.sh │ │ └── nginx.conf │ ├── nut │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nut.chart.sh │ │ └── nut.conf │ ├── opensips │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── opensips.chart.sh │ │ └── opensips.conf │ ├── phpfpm │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── phpfpm.chart.sh │ │ └── phpfpm.conf │ ├── postfix │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── postfix.chart.sh │ │ └── postfix.conf │ ├── sensors │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── sensors.chart.sh │ │ └── sensors.conf │ ├── squid │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── squid.chart.sh │ │ └── squid.conf │ └── tomcat │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── tomcat.chart.sh │ │ └── tomcat.conf ├── checks.plugin │ ├── Makefile.am │ ├── README.md │ ├── plugin_checks.c │ └── plugin_checks.h ├── diskspace.plugin │ ├── Makefile.am │ ├── README.md │ ├── plugin_diskspace.c │ └── plugin_diskspace.h ├── fping.plugin │ ├── Makefile.am │ ├── README.md │ ├── fping.conf │ └── fping.plugin.in ├── freebsd.plugin │ ├── Makefile.am │ ├── README.md │ ├── freebsd_devstat.c │ ├── freebsd_getifaddrs.c │ ├── freebsd_getmntinfo.c │ ├── freebsd_ipfw.c │ ├── freebsd_kstat_zfs.c │ ├── freebsd_sysctl.c │ ├── plugin_freebsd.c │ └── plugin_freebsd.h ├── freeipmi.plugin │ ├── Makefile.am │ ├── README.md │ └── freeipmi_plugin.c ├── idlejitter.plugin │ ├── Makefile.am │ ├── README.md │ ├── plugin_idlejitter.c │ └── plugin_idlejitter.h ├── macos.plugin │ ├── Makefile.am │ ├── README.md │ ├── macos_fw.c │ ├── macos_mach_smi.c │ ├── macos_sysctl.c │ ├── plugin_macos.c │ └── plugin_macos.h ├── nfacct.plugin │ ├── Makefile.am │ ├── README.md │ ├── plugin_nfacct.c │ └── plugin_nfacct.h ├── node.d.plugin │ ├── .keep │ ├── Makefile.am │ ├── README.md │ ├── fronius │ │ ├── Makefile.inc │ │ ├── README.md │ │ └── fronius.node.js │ ├── named │ │ ├── Makefile.inc │ │ ├── README.md │ │ └── named.node.js │ ├── node.d.conf │ ├── node.d.plugin.in │ ├── node_modules │ │ ├── asn1-ber.js │ │ ├── extend.js │ │ ├── lib │ │ │ └── ber │ │ │ │ ├── errors.js │ │ │ │ ├── index.js │ │ │ │ ├── reader.js │ │ │ │ ├── types.js │ │ │ │ └── writer.js │ │ ├── net-snmp.js │ │ ├── netdata.js │ │ └── pixl-xml.js │ ├── sma_webbox │ │ ├── Makefile.inc │ │ ├── README.md │ │ └── sma_webbox.node.js │ ├── snmp │ │ ├── Makefile.inc │ │ ├── README.md │ │ └── snmp.node.js │ └── stiebeleltron │ │ ├── Makefile.inc │ │ ├── README.md │ │ └── stiebeleltron.node.js ├── plugins.d │ ├── Makefile.am │ ├── README.md │ ├── plugins_d.c │ └── plugins_d.h ├── proc.plugin │ ├── Makefile.am │ ├── README.md │ ├── ipc.c │ ├── plugin_proc.c │ ├── plugin_proc.h │ ├── proc_diskstats.c │ ├── proc_interrupts.c │ ├── proc_loadavg.c │ ├── proc_mdstat.c │ ├── proc_meminfo.c │ ├── proc_net_dev.c │ ├── proc_net_ip_vs_stats.c │ ├── proc_net_netstat.c │ ├── proc_net_rpc_nfs.c │ ├── proc_net_rpc_nfsd.c │ ├── proc_net_sctp_snmp.c │ ├── proc_net_snmp.c │ ├── proc_net_snmp6.c │ ├── proc_net_sockstat.c │ ├── proc_net_sockstat6.c │ ├── proc_net_softnet_stat.c │ ├── proc_net_stat_conntrack.c │ ├── proc_net_stat_synproxy.c │ ├── proc_self_mountinfo.c │ ├── proc_self_mountinfo.h │ ├── proc_softirqs.c │ ├── proc_spl_kstat_zfs.c │ ├── proc_stat.c │ ├── proc_sys_kernel_random_entropy_avail.c │ ├── proc_uptime.c │ ├── proc_vmstat.c │ ├── sys_class_power_supply.c │ ├── sys_devices_system_edac_mc.c │ ├── sys_devices_system_node.c │ ├── sys_fs_btrfs.c │ ├── sys_kernel_mm_ksm.c │ ├── zfs_common.c │ └── zfs_common.h ├── python.d.plugin │ ├── .keep │ ├── Makefile.am │ ├── README.md │ ├── adaptec_raid │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── adaptec_raid.chart.py │ │ └── adaptec_raid.conf │ ├── apache │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── apache.chart.py │ │ └── apache.conf │ ├── beanstalk │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── beanstalk.chart.py │ │ └── beanstalk.conf │ ├── bind_rndc │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── bind_rndc.chart.py │ │ └── bind_rndc.conf │ ├── boinc │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── boinc.chart.py │ │ └── boinc.conf │ ├── ceph │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── ceph.chart.py │ │ └── ceph.conf │ ├── chrony │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── chrony.chart.py │ │ └── chrony.conf │ ├── couchdb │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── couchdb.chart.py │ │ └── couchdb.conf │ ├── cpufreq │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── cpufreq.chart.py │ │ └── cpufreq.conf │ ├── cpuidle │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── cpuidle.chart.py │ │ └── cpuidle.conf │ ├── dns_query_time │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── dns_query_time.chart.py │ │ └── dns_query_time.conf │ ├── dnsdist │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── dnsdist.chart.py │ │ └── dnsdist.conf │ ├── dockerd │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── dockerd.chart.py │ │ └── dockerd.conf │ ├── dovecot │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── dovecot.chart.py │ │ └── dovecot.conf │ ├── elasticsearch │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── elasticsearch.chart.py │ │ └── elasticsearch.conf │ ├── example │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── example.chart.py │ │ └── example.conf │ ├── exim │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── exim.chart.py │ │ └── exim.conf │ ├── fail2ban │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── fail2ban.chart.py │ │ └── fail2ban.conf │ ├── freeradius │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── freeradius.chart.py │ │ └── freeradius.conf │ ├── go_expvar │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── go_expvar.chart.py │ │ └── go_expvar.conf │ ├── haproxy │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── haproxy.chart.py │ │ └── haproxy.conf │ ├── hddtemp │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── hddtemp.chart.py │ │ └── hddtemp.conf │ ├── httpcheck │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── httpcheck.chart.py │ │ └── httpcheck.conf │ ├── icecast │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── icecast.chart.py │ │ └── icecast.conf │ ├── ipfs │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── ipfs.chart.py │ │ └── ipfs.conf │ ├── isc_dhcpd │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── isc_dhcpd.chart.py │ │ └── isc_dhcpd.conf │ ├── linux_power_supply │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── linux_power_supply.chart.py │ │ └── linux_power_supply.conf │ ├── litespeed │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── litespeed.chart.py │ │ └── litespeed.conf │ ├── logind │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── logind.chart.py │ │ └── logind.conf │ ├── mdstat │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── mdstat.chart.py │ │ └── mdstat.conf │ ├── megacli │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── megacli.chart.py │ │ └── megacli.conf │ ├── memcached │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── memcached.chart.py │ │ └── memcached.conf │ ├── mongodb │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── mongodb.chart.py │ │ └── mongodb.conf │ ├── monit │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── monit.chart.py │ │ └── monit.conf │ ├── mysql │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── mysql.chart.py │ │ └── mysql.conf │ ├── nginx │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nginx.chart.py │ │ └── nginx.conf │ ├── nginx_plus │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nginx_plus.chart.py │ │ └── nginx_plus.conf │ ├── nsd │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nsd.chart.py │ │ └── nsd.conf │ ├── ntpd │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── ntpd.chart.py │ │ └── ntpd.conf │ ├── nvidia_smi │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── nvidia_smi.chart.py │ │ └── nvidia_smi.conf │ ├── openldap │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── openldap.chart.py │ │ └── openldap.conf │ ├── ovpn_status_log │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── ovpn_status_log.chart.py │ │ └── ovpn_status_log.conf │ ├── phpfpm │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── phpfpm.chart.py │ │ └── phpfpm.conf │ ├── portcheck │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── portcheck.chart.py │ │ └── portcheck.conf │ ├── postfix │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── postfix.chart.py │ │ └── postfix.conf │ ├── postgres │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── postgres.chart.py │ │ └── postgres.conf │ ├── powerdns │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── powerdns.chart.py │ │ └── powerdns.conf │ ├── proxysql │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── proxysql.chart.py │ │ └── proxysql.conf │ ├── puppet │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── puppet.chart.py │ │ └── puppet.conf │ ├── python.d.conf │ ├── python.d.plugin.in │ ├── python_modules │ │ ├── __init__.py │ │ ├── bases │ │ │ ├── FrameworkServices │ │ │ │ ├── ExecutableService.py │ │ │ │ ├── LogService.py │ │ │ │ ├── MySQLService.py │ │ │ │ ├── SimpleService.py │ │ │ │ ├── SocketService.py │ │ │ │ ├── UrlService.py │ │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ ├── charts.py │ │ │ ├── collection.py │ │ │ ├── loaders.py │ │ │ └── loggers.py │ │ ├── pyyaml2 │ │ │ ├── __init__.py │ │ │ ├── composer.py │ │ │ ├── constructor.py │ │ │ ├── cyaml.py │ │ │ ├── dumper.py │ │ │ ├── emitter.py │ │ │ ├── error.py │ │ │ ├── events.py │ │ │ ├── loader.py │ │ │ ├── nodes.py │ │ │ ├── parser.py │ │ │ ├── reader.py │ │ │ ├── representer.py │ │ │ ├── resolver.py │ │ │ ├── scanner.py │ │ │ ├── serializer.py │ │ │ └── tokens.py │ │ ├── pyyaml3 │ │ │ ├── __init__.py │ │ │ ├── composer.py │ │ │ ├── constructor.py │ │ │ ├── cyaml.py │ │ │ ├── dumper.py │ │ │ ├── emitter.py │ │ │ ├── error.py │ │ │ ├── events.py │ │ │ ├── loader.py │ │ │ ├── nodes.py │ │ │ ├── parser.py │ │ │ ├── reader.py │ │ │ ├── representer.py │ │ │ ├── resolver.py │ │ │ ├── scanner.py │ │ │ ├── serializer.py │ │ │ └── tokens.py │ │ ├── third_party │ │ │ ├── __init__.py │ │ │ ├── boinc_client.py │ │ │ ├── lm_sensors.py │ │ │ ├── mcrcon.py │ │ │ ├── monotonic.py │ │ │ └── ordereddict.py │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ └── makefile.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── selectors.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ ├── rabbitmq │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── rabbitmq.chart.py │ │ └── rabbitmq.conf │ ├── redis │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── redis.chart.py │ │ └── redis.conf │ ├── rethinkdbs │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── rethinkdbs.chart.py │ │ └── rethinkdbs.conf │ ├── retroshare │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── retroshare.chart.py │ │ └── retroshare.conf │ ├── samba │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── samba.chart.py │ │ └── samba.conf │ ├── sensors │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── sensors.chart.py │ │ └── sensors.conf │ ├── smartd_log │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── smartd_log.chart.py │ │ └── smartd_log.conf │ ├── spigotmc │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── spigotmc.chart.py │ │ └── spigotmc.conf │ ├── springboot │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── springboot.chart.py │ │ └── springboot.conf │ ├── squid │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── squid.chart.py │ │ └── squid.conf │ ├── tomcat │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── tomcat.chart.py │ │ └── tomcat.conf │ ├── tor │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── tor.chart.py │ │ └── tor.conf │ ├── traefik │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── traefik.chart.py │ │ └── traefik.conf │ ├── unbound │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── unbound.chart.py │ │ └── unbound.conf │ ├── uwsgi │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── uwsgi.chart.py │ │ └── uwsgi.conf │ ├── varnish │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── varnish.chart.py │ │ └── varnish.conf │ ├── w1sensor │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── w1sensor.chart.py │ │ └── w1sensor.conf │ └── web_log │ │ ├── Makefile.inc │ │ ├── README.md │ │ ├── web_log.chart.py │ │ └── web_log.conf ├── statsd.plugin │ ├── .keep │ ├── Makefile.am │ ├── README.md │ ├── example.conf │ ├── statsd.c │ └── statsd.h └── tc.plugin │ ├── Makefile.am │ ├── README.md │ ├── plugin_tc.c │ ├── plugin_tc.h │ └── tc-qos-helper.sh.in ├── configs.signatures ├── configure.ac ├── contrib ├── README.md ├── debian │ ├── compat │ ├── control │ ├── control.wheezy │ ├── copyright │ ├── netdata.conf │ ├── netdata.default │ ├── netdata.docs │ ├── netdata.init │ ├── netdata.install │ ├── netdata.lintian-overrides │ ├── netdata.postinst.in │ ├── netdata.postrm │ ├── netdata.service │ ├── rules │ └── source │ │ └── format ├── rhel │ └── build-netdata-rpm.sh └── sles11 │ ├── README.md │ ├── alarm-notify-basic.bash3.sh │ ├── netdata-alarms-bash3.patch │ ├── netdata-automake-no-dist-xz.patch │ ├── netdata-python-plugin-sles11.patch │ └── netdata.init ├── coverity-scan.sh ├── cppcheck.sh ├── daemon ├── Makefile.am ├── README.md ├── common.c ├── common.h ├── config │ └── README.md ├── daemon.c ├── daemon.h ├── global_statistics.c ├── global_statistics.h ├── main.c ├── main.h ├── signals.c ├── signals.h ├── unit_test.c └── unit_test.h ├── database ├── Makefile.am ├── README.md ├── rrd.c ├── rrd.h ├── rrdcalc.c ├── rrdcalc.h ├── rrdcalctemplate.c ├── rrdcalctemplate.h ├── rrddim.c ├── rrddimvar.c ├── rrddimvar.h ├── rrdfamily.c ├── rrdhost.c ├── rrdset.c ├── rrdsetvar.c ├── rrdsetvar.h ├── rrdvar.c └── rrdvar.h ├── diagrams ├── Makefile.am ├── build.sh ├── config.puml ├── data_structures │ ├── README.md │ ├── netdata_config.svg │ ├── registry.svg │ ├── rrd.svg │ ├── src │ │ ├── netdata_config.xml │ │ ├── registry.xml │ │ ├── rrd.xml │ │ └── web.xml │ └── web.svg ├── netdata-for-ephemeral-nodes.xml ├── netdata-overview.xml ├── netdata-proxies-example.xml └── registry.puml ├── docs ├── Add-more-charts-to-netdata.md ├── Charts.md ├── Demo-Sites.md ├── Donations-netdata-has-received.md ├── GettingStarted.md ├── Netdata-Security-and-Disclosure-Information.md ├── Performance.md ├── Running-behind-apache.md ├── Running-behind-caddy.md ├── Running-behind-lighttpd.md ├── Running-behind-nginx.md ├── Third-Party-Plugins.md ├── a-github-star-is-important.md ├── configuration-guide.md ├── generator │ ├── buildhtml.sh │ ├── buildyaml.sh │ ├── checklinks.sh │ ├── custom │ │ ├── css │ │ │ └── netdata.css │ │ ├── img │ │ │ └── favicon.ico │ │ ├── javascripts │ │ │ └── cookie-consent.js │ │ └── themes │ │ │ └── material │ │ │ └── partials │ │ │ └── footer.html │ ├── requirements.txt │ └── runtime.txt ├── high-performance-netdata.md ├── netdata-for-IoT.md ├── netdata-security.md ├── privacy-policy.md ├── terms-of-use.md └── why-netdata │ ├── 1s-granularity.md │ ├── README.md │ ├── immediate-results.md │ ├── meaningful-presentation.md │ └── unlimited-metrics.md ├── health ├── .keep ├── Makefile.am ├── README.md ├── health.c ├── health.d │ ├── adaptec_raid.conf │ ├── apache.conf │ ├── apcupsd.conf │ ├── backend.conf │ ├── bcache.conf │ ├── beanstalkd.conf │ ├── bind_rndc.conf │ ├── boinc.conf │ ├── btrfs.conf │ ├── ceph.conf │ ├── couchdb.conf │ ├── cpu.conf │ ├── disks.conf │ ├── dockerd.conf │ ├── elasticsearch.conf │ ├── entropy.conf │ ├── fping.conf │ ├── fronius.conf │ ├── haproxy.conf │ ├── httpcheck.conf │ ├── ipc.conf │ ├── ipfs.conf │ ├── ipmi.conf │ ├── isc_dhcpd.conf │ ├── lighttpd.conf │ ├── linux_power_supply.conf │ ├── load.conf │ ├── mdstat.conf │ ├── megacli.conf │ ├── memcached.conf │ ├── memory.conf │ ├── mongodb.conf │ ├── mysql.conf │ ├── named.conf │ ├── net.conf │ ├── netfilter.conf │ ├── nginx.conf │ ├── nginx_plus.conf │ ├── portcheck.conf │ ├── postgres.conf │ ├── qos.conf │ ├── ram.conf │ ├── redis.conf │ ├── retroshare.conf │ ├── softnet.conf │ ├── squid.conf │ ├── stiebeleltron.conf │ ├── swap.conf │ ├── tcp_conn.conf │ ├── tcp_listen.conf │ ├── tcp_mem.conf │ ├── tcp_orphans.conf │ ├── tcp_resets.conf │ ├── udp_errors.conf │ ├── varnish.conf │ ├── web_log.conf │ └── zfs.conf ├── health.h ├── health_config.c ├── health_json.c ├── health_log.c └── notifications │ ├── Makefile.am │ ├── README.md │ ├── alarm-email.sh │ ├── alarm-notify.sh.in │ ├── alarm-test.sh │ ├── alerta │ ├── Makefile.inc │ └── README.md │ ├── awssns │ ├── Makefile.inc │ └── README.md │ ├── discord │ ├── Makefile.inc │ └── README.md │ ├── email │ ├── Makefile.inc │ └── README.md │ ├── flock │ ├── Makefile.inc │ └── README.md │ ├── health_alarm_notify.conf │ ├── health_email_recipients.conf │ ├── irc │ ├── Makefile.inc │ └── README.md │ ├── kavenegar │ ├── Makefile.inc │ └── README.md │ ├── messagebird │ ├── Makefile.inc │ └── README.md │ ├── pagerduty │ ├── Makefile.inc │ └── README.md │ ├── prowl │ ├── Makefile.inc │ └── README.md │ ├── pushbullet │ ├── Makefile.inc │ └── README.md │ ├── pushover │ ├── Makefile.inc │ └── README.md │ ├── rocketchat │ ├── Makefile.inc │ └── README.md │ ├── slack │ ├── Makefile.inc │ └── README.md │ ├── syslog │ ├── Makefile.inc │ └── README.md │ ├── telegram │ ├── Makefile.inc │ └── README.md │ ├── twilio │ ├── Makefile.inc │ └── README.md │ └── web │ ├── Makefile.inc │ └── README.md ├── libnetdata ├── Makefile.am ├── README.md ├── adaptive_resortable_list │ ├── Makefile.am │ ├── README.md │ ├── adaptive_resortable_list.c │ └── adaptive_resortable_list.h ├── avl │ ├── Makefile.am │ ├── README.md │ ├── avl.c │ └── avl.h ├── buffer │ ├── Makefile.am │ ├── README.md │ ├── buffer.c │ └── buffer.h ├── clocks │ ├── Makefile.am │ ├── README.md │ ├── clocks.c │ └── clocks.h ├── config │ ├── Makefile.am │ ├── README.md │ ├── appconfig.c │ └── appconfig.h ├── dictionary │ ├── Makefile.am │ ├── README.md │ ├── dictionary.c │ └── dictionary.h ├── eval │ ├── Makefile.am │ ├── README.md │ ├── eval.c │ └── eval.h ├── inlined.h ├── libnetdata.c ├── libnetdata.h ├── locks │ ├── Makefile.am │ ├── README.md │ ├── locks.c │ └── locks.h ├── log │ ├── Makefile.am │ ├── README.md │ ├── log.c │ └── log.h ├── os.c ├── os.h ├── popen │ ├── Makefile.am │ ├── README.md │ ├── popen.c │ └── popen.h ├── procfile │ ├── Makefile.am │ ├── README.md │ ├── procfile.c │ └── procfile.h ├── simple_pattern │ ├── Makefile.am │ ├── README.md │ ├── simple_pattern.c │ └── simple_pattern.h ├── socket │ ├── Makefile.am │ ├── README.md │ ├── socket.c │ └── socket.h ├── statistical │ ├── Makefile.am │ ├── README.md │ ├── statistical.c │ └── statistical.h ├── storage_number │ ├── Makefile.am │ ├── README.md │ ├── storage_number.c │ └── storage_number.h ├── threads │ ├── Makefile.am │ ├── README.md │ ├── threads.c │ └── threads.h └── url │ ├── Makefile.am │ ├── README.md │ ├── url.c │ └── url.h ├── netdata-installer-zh.sh ├── netdata-installer.sh ├── netdata.cppcheck ├── netdata.spec.in ├── netlify.toml ├── package.json ├── packaging ├── docker │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ └── run.sh ├── installer │ ├── .keep │ ├── README.md │ ├── UNINSTALL.md │ ├── UPDATE.md │ ├── functions.sh │ ├── kickstart-static64.sh │ ├── kickstart.sh │ ├── netdata-uninstaller.sh │ └── netdata-updater.sh ├── maintainers │ └── README.md ├── makeself │ ├── README.md │ ├── build-x86_64-static.sh │ ├── build.sh │ ├── functions.sh │ ├── install-alpine-packages.sh │ ├── install-or-update.sh │ ├── jobs │ │ ├── 10-prepare-destination.install.sh │ │ ├── 50-bash-4.4.18.install.sh │ │ ├── 50-curl-7.60.0.install.sh │ │ ├── 50-fping-4.0.install.sh │ │ ├── 70-netdata-git.install.sh │ │ └── 99-makeself.install.sh │ ├── makeself-header.sh │ ├── makeself-help-header.txt │ ├── makeself-license.txt │ ├── makeself.lsm │ ├── makeself.sh │ ├── post-installer.sh │ └── run-all-jobs.sh └── version ├── registry ├── Makefile.am ├── README.md ├── registry.c ├── registry.h ├── registry_db.c ├── registry_init.c ├── registry_internals.c ├── registry_internals.h ├── registry_log.c ├── registry_machine.c ├── registry_machine.h ├── registry_person.c ├── registry_person.h ├── registry_url.c └── registry_url.h ├── streaming ├── Makefile.am ├── README.md ├── rrdpush.c ├── rrdpush.h └── stream.conf ├── system ├── Makefile.am ├── edit-config.in ├── netdata-freebsd.in ├── netdata-init-d.in ├── netdata-lsb.in ├── netdata-openrc.in ├── netdata.conf ├── netdata.logrotate.in ├── netdata.plist.in └── netdata.service.in ├── tests ├── Makefile.am ├── README.md ├── health_mgmtapi │ ├── README.md │ ├── health-cmdapi-test.sh.in │ └── python-example.conf ├── lifecycle.bats ├── node.d │ ├── fronius.chart.spec.js │ ├── fronius.parse.spec.js │ ├── fronius.process.spec.js │ └── fronius.validation.spec.js ├── profile │ ├── Makefile │ ├── benchmark-dictionary.c │ ├── benchmark-line-parsing.c │ ├── benchmark-procfile-parser.c │ ├── benchmark-registry.c │ ├── benchmark-value-pairs.c │ ├── statsd-stress.c │ └── test-eval.c ├── stress.sh └── web │ ├── easypiechart.chart.spec.js │ ├── easypiechart.percentage.spec.js │ ├── fixtures │ └── easypiechart.chart.fixture1.html │ ├── karma.conf.js │ └── lib │ └── jasmine-jquery.js └── web ├── Makefile.am ├── README.md ├── api ├── Makefile.am ├── README.md ├── badges │ ├── Makefile.am │ ├── README.md │ ├── web_buffer_svg.c │ └── web_buffer_svg.h ├── exporters │ ├── Makefile.am │ ├── README.md │ ├── allmetrics.c │ ├── allmetrics.h │ ├── prometheus │ │ ├── Makefile.am │ │ └── README.md │ └── shell │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── allmetrics_shell.c │ │ └── allmetrics_shell.h ├── formatters │ ├── Makefile.am │ ├── README.md │ ├── charts2json.c │ ├── charts2json.h │ ├── csv │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── csv.c │ │ └── csv.h │ ├── json │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── json.c │ │ └── json.h │ ├── json_wrapper.c │ ├── json_wrapper.h │ ├── rrd2json.c │ ├── rrd2json.h │ ├── rrdset2json.c │ ├── rrdset2json.h │ ├── ssv │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── ssv.c │ │ └── ssv.h │ └── value │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── value.c │ │ └── value.h ├── health │ ├── Makefile.am │ ├── README.md │ ├── health_cmdapi.c │ └── health_cmdapi.h ├── netdata-swagger.json ├── netdata-swagger.yaml ├── queries │ ├── Makefile.am │ ├── README.md │ ├── average │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── average.c │ │ └── average.h │ ├── des │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── des.c │ │ └── des.h │ ├── incremental_sum │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── incremental_sum.c │ │ └── incremental_sum.h │ ├── max │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── max.c │ │ └── max.h │ ├── median │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── median.c │ │ └── median.h │ ├── min │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── min.c │ │ └── min.h │ ├── query.c │ ├── query.h │ ├── rrdr.c │ ├── rrdr.h │ ├── ses │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── ses.c │ │ └── ses.h │ ├── stddev │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── stddev.c │ │ └── stddev.h │ └── sum │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── sum.c │ │ └── sum.h ├── web_api_v1.c └── web_api_v1.h ├── gui ├── .well-known │ └── dnt │ │ └── cookies ├── Makefile.am ├── README.md ├── browserconfig.xml ├── confluence │ └── README.md ├── css │ ├── bootstrap-3.3.7.css │ ├── bootstrap-slate-flat-3.3.7.css │ ├── bootstrap-slider-10.0.0.min.css │ ├── bootstrap-theme-3.3.7.min.css │ ├── bootstrap-toggle-2.2.2.min.css │ ├── c3-0.4.18.min.css │ └── morris-0.5.1.css ├── custom │ └── README.md ├── dashboard.css ├── dashboard.html ├── dashboard.js ├── dashboard.slate.css ├── dashboard_info.js ├── dashboard_info_custom_example.js ├── dashboard_info_zh.js ├── demo.html ├── demo2.html ├── demosites.html ├── demosites2.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── goto-host-from-alarm.html ├── images │ ├── alert-128-orange.png │ ├── alert-128-red.png │ ├── alert-multi-size-orange.ico │ ├── alert-multi-size-red.ico │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── animated.gif │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── banner-icon-144x144.png │ ├── check-mark-2-128-green.png │ ├── check-mark-2-multi-size-green.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ ├── ms-icon-70x70.png │ ├── netdata-logomark.svg │ ├── netdata.svg │ ├── post.png │ └── seo-performance-128.png ├── index.html ├── infographic.html ├── lib │ ├── bootstrap-3.3.7.min.js │ ├── bootstrap-slider-10.0.0.min.js │ ├── bootstrap-table-1.11.0.min.js │ ├── bootstrap-table-export-1.11.0.min.js │ ├── bootstrap-toggle-2.2.2.min.js │ ├── clipboard-polyfill-be05dad.js │ ├── d3-4.12.2.min.js │ ├── d3pie-0.2.1-netdata-3.js │ ├── dygraph-c91c859.min.js │ ├── dygraph-smooth-plotter-c91c859.js │ ├── fontawesome-all-5.0.1.min.js │ ├── gauge-1.3.2.min.js │ ├── jquery-2.2.4.min.js │ ├── jquery.easypiechart-97b5824.min.js │ ├── jquery.peity-3.2.0.min.js │ ├── jquery.sparkline-2.1.2.min.js │ ├── lz-string-1.4.4.min.js │ ├── pako-1.0.6.min.js │ ├── perfect-scrollbar-0.6.15.min.js │ └── tableExport-1.6.0.min.js ├── main.css ├── main.js ├── manifest.json ├── refresh-badges.js ├── robots.txt ├── sitemap.xml ├── src │ └── dashboard.js │ │ ├── alarms.js │ │ ├── boot.js │ │ ├── chart-registry.js │ │ ├── charting.js │ │ ├── charting │ │ ├── _c3.js │ │ ├── _morris.js │ │ ├── _raphael.js │ │ ├── d3.js │ │ ├── d3pie.js │ │ ├── dygraph.js │ │ ├── easy-pie-chart.js │ │ ├── gauge.js │ │ ├── google-charts.js │ │ ├── peity.js │ │ └── sparkline.js │ │ ├── colors.js │ │ ├── common.js │ │ ├── compatibility.js │ │ ├── dependencies.js │ │ ├── epilogue.js.inc │ │ ├── error-handling.js │ │ ├── localstorage.js │ │ ├── main.js │ │ ├── options.js │ │ ├── prologue.js.inc │ │ ├── registry.js │ │ ├── server-detection.js │ │ ├── themes.js │ │ ├── timeout.js │ │ ├── units-conversion.js │ │ ├── utils.js │ │ └── xss.js └── tv.html └── server ├── Makefile.am ├── README.md ├── static ├── Makefile.am ├── README.md ├── static-threaded.c └── static-threaded.h ├── web_client.c ├── web_client.h ├── web_client_cache.c ├── web_client_cache.h ├── web_server.c └── web_server.h /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.csslintrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/README.md -------------------------------------------------------------------------------- /.travis/create_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/create_artifacts.sh -------------------------------------------------------------------------------- /.travis/gcs-credentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/gcs-credentials.json.enc -------------------------------------------------------------------------------- /.travis/generate_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/generate_changelog.sh -------------------------------------------------------------------------------- /.travis/labeler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/labeler.sh -------------------------------------------------------------------------------- /.travis/nightlies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/nightlies.sh -------------------------------------------------------------------------------- /.travis/releaser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/releaser.sh -------------------------------------------------------------------------------- /.travis/tagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/.travis/tagger.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /HISTORICAL_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/HISTORICAL_CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/README.md -------------------------------------------------------------------------------- /REDISTRIBUTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/REDISTRIBUTED.md -------------------------------------------------------------------------------- /backends/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/Makefile.am -------------------------------------------------------------------------------- /backends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/README.md -------------------------------------------------------------------------------- /backends/WALKTHROUGH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/WALKTHROUGH.md -------------------------------------------------------------------------------- /backends/backends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/backends.c -------------------------------------------------------------------------------- /backends/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/backends.h -------------------------------------------------------------------------------- /backends/graphite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/graphite/Makefile.am -------------------------------------------------------------------------------- /backends/graphite/graphite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/graphite/graphite.c -------------------------------------------------------------------------------- /backends/graphite/graphite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/graphite/graphite.h -------------------------------------------------------------------------------- /backends/json/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/json/Makefile.am -------------------------------------------------------------------------------- /backends/json/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/json/json.c -------------------------------------------------------------------------------- /backends/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/json/json.h -------------------------------------------------------------------------------- /backends/nc-backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/nc-backend.sh -------------------------------------------------------------------------------- /backends/opentsdb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/opentsdb/Makefile.am -------------------------------------------------------------------------------- /backends/opentsdb/opentsdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/opentsdb/opentsdb.c -------------------------------------------------------------------------------- /backends/opentsdb/opentsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/opentsdb/opentsdb.h -------------------------------------------------------------------------------- /backends/prometheus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/prometheus/Makefile.am -------------------------------------------------------------------------------- /backends/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/prometheus/README.md -------------------------------------------------------------------------------- /backends/prometheus/backend_prometheus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/prometheus/backend_prometheus.c -------------------------------------------------------------------------------- /backends/prometheus/backend_prometheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/backends/prometheus/backend_prometheus.h -------------------------------------------------------------------------------- /collectors/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/Makefile.am -------------------------------------------------------------------------------- /collectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/README.md -------------------------------------------------------------------------------- /collectors/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/all.h -------------------------------------------------------------------------------- /collectors/apps.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/apps.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/apps.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/apps.plugin/README.md -------------------------------------------------------------------------------- /collectors/apps.plugin/apps_groups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/apps.plugin/apps_groups.conf -------------------------------------------------------------------------------- /collectors/apps.plugin/apps_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/apps.plugin/apps_plugin.c -------------------------------------------------------------------------------- /collectors/cgroups.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/cgroups.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/README.md -------------------------------------------------------------------------------- /collectors/cgroups.plugin/cgroup-name.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/cgroup-name.sh.in -------------------------------------------------------------------------------- /collectors/cgroups.plugin/cgroup-network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/cgroup-network.c -------------------------------------------------------------------------------- /collectors/cgroups.plugin/sys_fs_cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/sys_fs_cgroup.c -------------------------------------------------------------------------------- /collectors/cgroups.plugin/sys_fs_cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/cgroups.plugin/sys_fs_cgroup.h -------------------------------------------------------------------------------- /collectors/charts.d.plugin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/charts.d.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/charts.d.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/ap/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/ap/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/ap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/ap/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/ap/ap.chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/ap/ap.chart.sh -------------------------------------------------------------------------------- /collectors/charts.d.plugin/ap/ap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/ap/ap.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/apache/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/apache/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/apache/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/apache/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/apache/apache.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/apcupsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/apcupsd/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/charts.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/charts.d.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/charts.d.plugin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/charts.d.plugin.in -------------------------------------------------------------------------------- /collectors/charts.d.plugin/cpu_apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/cpu_apps/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/cpufreq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/cpufreq/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/example/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/exim/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/exim/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/exim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/exim/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/exim/exim.chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/exim/exim.chart.sh -------------------------------------------------------------------------------- /collectors/charts.d.plugin/exim/exim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/exim/exim.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/hddtemp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/hddtemp/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/libreswan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/libreswan/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/loopsleepms.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/loopsleepms.sh.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/mem_apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/mem_apps/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/mysql/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/mysql/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/mysql/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/mysql/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/mysql/mysql.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nginx/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nginx/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nginx/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nginx/nginx.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nut/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nut/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nut/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nut/nut.chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nut/nut.chart.sh -------------------------------------------------------------------------------- /collectors/charts.d.plugin/nut/nut.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/nut/nut.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/opensips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/opensips/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/phpfpm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/phpfpm/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/phpfpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/phpfpm/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/phpfpm/phpfpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/phpfpm/phpfpm.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/postfix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/postfix/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/sensors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/sensors/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/squid/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/squid/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/squid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/squid/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/squid/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/squid/squid.conf -------------------------------------------------------------------------------- /collectors/charts.d.plugin/tomcat/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/tomcat/Makefile.inc -------------------------------------------------------------------------------- /collectors/charts.d.plugin/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/tomcat/README.md -------------------------------------------------------------------------------- /collectors/charts.d.plugin/tomcat/tomcat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/charts.d.plugin/tomcat/tomcat.conf -------------------------------------------------------------------------------- /collectors/checks.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/checks.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/checks.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/checks.plugin/README.md -------------------------------------------------------------------------------- /collectors/checks.plugin/plugin_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/checks.plugin/plugin_checks.c -------------------------------------------------------------------------------- /collectors/checks.plugin/plugin_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/checks.plugin/plugin_checks.h -------------------------------------------------------------------------------- /collectors/diskspace.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/diskspace.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/diskspace.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/diskspace.plugin/README.md -------------------------------------------------------------------------------- /collectors/diskspace.plugin/plugin_diskspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/diskspace.plugin/plugin_diskspace.c -------------------------------------------------------------------------------- /collectors/diskspace.plugin/plugin_diskspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/diskspace.plugin/plugin_diskspace.h -------------------------------------------------------------------------------- /collectors/fping.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/fping.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/fping.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/fping.plugin/README.md -------------------------------------------------------------------------------- /collectors/fping.plugin/fping.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/fping.plugin/fping.conf -------------------------------------------------------------------------------- /collectors/fping.plugin/fping.plugin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/fping.plugin/fping.plugin.in -------------------------------------------------------------------------------- /collectors/freebsd.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/freebsd.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/README.md -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_devstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_devstat.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_getifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_getifaddrs.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_getmntinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_getmntinfo.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_ipfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_ipfw.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_kstat_zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_kstat_zfs.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/freebsd_sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/freebsd_sysctl.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/plugin_freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/plugin_freebsd.c -------------------------------------------------------------------------------- /collectors/freebsd.plugin/plugin_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freebsd.plugin/plugin_freebsd.h -------------------------------------------------------------------------------- /collectors/freeipmi.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freeipmi.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/freeipmi.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freeipmi.plugin/README.md -------------------------------------------------------------------------------- /collectors/freeipmi.plugin/freeipmi_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/freeipmi.plugin/freeipmi_plugin.c -------------------------------------------------------------------------------- /collectors/idlejitter.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/idlejitter.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/idlejitter.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/idlejitter.plugin/README.md -------------------------------------------------------------------------------- /collectors/macos.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/macos.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/README.md -------------------------------------------------------------------------------- /collectors/macos.plugin/macos_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/macos_fw.c -------------------------------------------------------------------------------- /collectors/macos.plugin/macos_mach_smi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/macos_mach_smi.c -------------------------------------------------------------------------------- /collectors/macos.plugin/macos_sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/macos_sysctl.c -------------------------------------------------------------------------------- /collectors/macos.plugin/plugin_macos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/plugin_macos.c -------------------------------------------------------------------------------- /collectors/macos.plugin/plugin_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/macos.plugin/plugin_macos.h -------------------------------------------------------------------------------- /collectors/nfacct.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/nfacct.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/nfacct.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/nfacct.plugin/README.md -------------------------------------------------------------------------------- /collectors/nfacct.plugin/plugin_nfacct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/nfacct.plugin/plugin_nfacct.c -------------------------------------------------------------------------------- /collectors/nfacct.plugin/plugin_nfacct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/nfacct.plugin/plugin_nfacct.h -------------------------------------------------------------------------------- /collectors/node.d.plugin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/node.d.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/node.d.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/README.md -------------------------------------------------------------------------------- /collectors/node.d.plugin/fronius/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/fronius/Makefile.inc -------------------------------------------------------------------------------- /collectors/node.d.plugin/fronius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/fronius/README.md -------------------------------------------------------------------------------- /collectors/node.d.plugin/named/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/named/Makefile.inc -------------------------------------------------------------------------------- /collectors/node.d.plugin/named/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/named/README.md -------------------------------------------------------------------------------- /collectors/node.d.plugin/named/named.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/named/named.node.js -------------------------------------------------------------------------------- /collectors/node.d.plugin/node.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/node.d.conf -------------------------------------------------------------------------------- /collectors/node.d.plugin/node.d.plugin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/node.d.plugin.in -------------------------------------------------------------------------------- /collectors/node.d.plugin/sma_webbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/sma_webbox/README.md -------------------------------------------------------------------------------- /collectors/node.d.plugin/snmp/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/snmp/Makefile.inc -------------------------------------------------------------------------------- /collectors/node.d.plugin/snmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/snmp/README.md -------------------------------------------------------------------------------- /collectors/node.d.plugin/snmp/snmp.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/node.d.plugin/snmp/snmp.node.js -------------------------------------------------------------------------------- /collectors/plugins.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/plugins.d/Makefile.am -------------------------------------------------------------------------------- /collectors/plugins.d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/plugins.d/README.md -------------------------------------------------------------------------------- /collectors/plugins.d/plugins_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/plugins.d/plugins_d.c -------------------------------------------------------------------------------- /collectors/plugins.d/plugins_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/plugins.d/plugins_d.h -------------------------------------------------------------------------------- /collectors/proc.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/proc.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/README.md -------------------------------------------------------------------------------- /collectors/proc.plugin/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/ipc.c -------------------------------------------------------------------------------- /collectors/proc.plugin/plugin_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/plugin_proc.c -------------------------------------------------------------------------------- /collectors/proc.plugin/plugin_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/plugin_proc.h -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_diskstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_diskstats.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_interrupts.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_loadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_loadavg.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_mdstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_mdstat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_meminfo.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_dev.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_ip_vs_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_ip_vs_stats.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_netstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_netstat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_rpc_nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_rpc_nfs.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_rpc_nfsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_rpc_nfsd.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_sctp_snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_sctp_snmp.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_snmp.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_snmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_snmp6.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_sockstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_sockstat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_sockstat6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_sockstat6.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_net_softnet_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_net_softnet_stat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_self_mountinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_self_mountinfo.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_self_mountinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_self_mountinfo.h -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_softirqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_softirqs.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_spl_kstat_zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_spl_kstat_zfs.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_stat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_uptime.c -------------------------------------------------------------------------------- /collectors/proc.plugin/proc_vmstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/proc_vmstat.c -------------------------------------------------------------------------------- /collectors/proc.plugin/sys_fs_btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/sys_fs_btrfs.c -------------------------------------------------------------------------------- /collectors/proc.plugin/sys_kernel_mm_ksm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/sys_kernel_mm_ksm.c -------------------------------------------------------------------------------- /collectors/proc.plugin/zfs_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/zfs_common.c -------------------------------------------------------------------------------- /collectors/proc.plugin/zfs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/proc.plugin/zfs_common.h -------------------------------------------------------------------------------- /collectors/python.d.plugin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/python.d.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/apache/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/apache/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/apache/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/apache/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/apache/apache.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/beanstalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/beanstalk/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/bind_rndc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/bind_rndc/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/boinc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/boinc/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/boinc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/boinc/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/boinc/boinc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/boinc/boinc.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/ceph/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ceph/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/ceph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ceph/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/ceph/ceph.chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ceph/ceph.chart.py -------------------------------------------------------------------------------- /collectors/python.d.plugin/ceph/ceph.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ceph/ceph.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/chrony/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/chrony/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/chrony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/chrony/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/chrony/chrony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/chrony/chrony.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/couchdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/couchdb/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/cpufreq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/cpufreq/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/cpuidle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/cpuidle/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/dnsdist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/dnsdist/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/dockerd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/dockerd/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/dovecot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/dovecot/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/example/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/exim/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/exim/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/exim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/exim/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/exim/exim.chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/exim/exim.chart.py -------------------------------------------------------------------------------- /collectors/python.d.plugin/exim/exim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/exim/exim.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/fail2ban/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/fail2ban/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/ipfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ipfs/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/ipfs/ipfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ipfs/ipfs.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/logind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/logind/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/mdstat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/mdstat/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/monit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/monit/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/monit/monit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/monit/monit.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/mysql/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/mysql/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/mysql/mysql.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nginx/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nginx/nginx.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/nsd/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nsd/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/nsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nsd/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/nsd/nsd.chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nsd/nsd.chart.py -------------------------------------------------------------------------------- /collectors/python.d.plugin/nsd/nsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/nsd/nsd.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/ntpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ntpd/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/ntpd/ntpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/ntpd/ntpd.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/phpfpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/phpfpm/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/puppet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/puppet/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/python.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/python.d.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/bases/FrameworkServices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/bases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/python_modules/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/python.d.plugin/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/redis/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/redis/redis.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/samba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/samba/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/samba/samba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/samba/samba.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/squid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/squid/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/squid/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/squid/squid.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/tomcat/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/tor/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/tor/Makefile.inc -------------------------------------------------------------------------------- /collectors/python.d.plugin/tor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/tor/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/tor/tor.chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/tor/tor.chart.py -------------------------------------------------------------------------------- /collectors/python.d.plugin/tor/tor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/tor/tor.conf -------------------------------------------------------------------------------- /collectors/python.d.plugin/uwsgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/uwsgi/README.md -------------------------------------------------------------------------------- /collectors/python.d.plugin/uwsgi/uwsgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/python.d.plugin/uwsgi/uwsgi.conf -------------------------------------------------------------------------------- /collectors/statsd.plugin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectors/statsd.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/statsd.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/statsd.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/statsd.plugin/README.md -------------------------------------------------------------------------------- /collectors/statsd.plugin/example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/statsd.plugin/example.conf -------------------------------------------------------------------------------- /collectors/statsd.plugin/statsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/statsd.plugin/statsd.c -------------------------------------------------------------------------------- /collectors/statsd.plugin/statsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/statsd.plugin/statsd.h -------------------------------------------------------------------------------- /collectors/tc.plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/tc.plugin/Makefile.am -------------------------------------------------------------------------------- /collectors/tc.plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/tc.plugin/README.md -------------------------------------------------------------------------------- /collectors/tc.plugin/plugin_tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/tc.plugin/plugin_tc.c -------------------------------------------------------------------------------- /collectors/tc.plugin/plugin_tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/tc.plugin/plugin_tc.h -------------------------------------------------------------------------------- /collectors/tc.plugin/tc-qos-helper.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/collectors/tc.plugin/tc-qos-helper.sh.in -------------------------------------------------------------------------------- /configs.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/configs.signatures -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/control.wheezy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/control.wheezy -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.conf -------------------------------------------------------------------------------- /contrib/debian/netdata.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.default -------------------------------------------------------------------------------- /contrib/debian/netdata.docs: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | -------------------------------------------------------------------------------- /contrib/debian/netdata.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.init -------------------------------------------------------------------------------- /contrib/debian/netdata.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.install -------------------------------------------------------------------------------- /contrib/debian/netdata.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.lintian-overrides -------------------------------------------------------------------------------- /contrib/debian/netdata.postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.postinst.in -------------------------------------------------------------------------------- /contrib/debian/netdata.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.postrm -------------------------------------------------------------------------------- /contrib/debian/netdata.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/netdata.service -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /contrib/rhel/build-netdata-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/rhel/build-netdata-rpm.sh -------------------------------------------------------------------------------- /contrib/sles11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/sles11/README.md -------------------------------------------------------------------------------- /contrib/sles11/alarm-notify-basic.bash3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/sles11/alarm-notify-basic.bash3.sh -------------------------------------------------------------------------------- /contrib/sles11/netdata-alarms-bash3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/sles11/netdata-alarms-bash3.patch -------------------------------------------------------------------------------- /contrib/sles11/netdata.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/contrib/sles11/netdata.init -------------------------------------------------------------------------------- /coverity-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/coverity-scan.sh -------------------------------------------------------------------------------- /cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/cppcheck.sh -------------------------------------------------------------------------------- /daemon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/Makefile.am -------------------------------------------------------------------------------- /daemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/README.md -------------------------------------------------------------------------------- /daemon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/common.c -------------------------------------------------------------------------------- /daemon/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/common.h -------------------------------------------------------------------------------- /daemon/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/config/README.md -------------------------------------------------------------------------------- /daemon/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/daemon.c -------------------------------------------------------------------------------- /daemon/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/daemon.h -------------------------------------------------------------------------------- /daemon/global_statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/global_statistics.c -------------------------------------------------------------------------------- /daemon/global_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/global_statistics.h -------------------------------------------------------------------------------- /daemon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/main.c -------------------------------------------------------------------------------- /daemon/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/main.h -------------------------------------------------------------------------------- /daemon/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/signals.c -------------------------------------------------------------------------------- /daemon/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/signals.h -------------------------------------------------------------------------------- /daemon/unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/unit_test.c -------------------------------------------------------------------------------- /daemon/unit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/daemon/unit_test.h -------------------------------------------------------------------------------- /database/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/Makefile.am -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/README.md -------------------------------------------------------------------------------- /database/rrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrd.c -------------------------------------------------------------------------------- /database/rrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrd.h -------------------------------------------------------------------------------- /database/rrdcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdcalc.c -------------------------------------------------------------------------------- /database/rrdcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdcalc.h -------------------------------------------------------------------------------- /database/rrdcalctemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdcalctemplate.c -------------------------------------------------------------------------------- /database/rrdcalctemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdcalctemplate.h -------------------------------------------------------------------------------- /database/rrddim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrddim.c -------------------------------------------------------------------------------- /database/rrddimvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrddimvar.c -------------------------------------------------------------------------------- /database/rrddimvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrddimvar.h -------------------------------------------------------------------------------- /database/rrdfamily.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdfamily.c -------------------------------------------------------------------------------- /database/rrdhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdhost.c -------------------------------------------------------------------------------- /database/rrdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdset.c -------------------------------------------------------------------------------- /database/rrdsetvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdsetvar.c -------------------------------------------------------------------------------- /database/rrdsetvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdsetvar.h -------------------------------------------------------------------------------- /database/rrdvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdvar.c -------------------------------------------------------------------------------- /database/rrdvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/database/rrdvar.h -------------------------------------------------------------------------------- /diagrams/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/Makefile.am -------------------------------------------------------------------------------- /diagrams/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/build.sh -------------------------------------------------------------------------------- /diagrams/config.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/config.puml -------------------------------------------------------------------------------- /diagrams/data_structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/README.md -------------------------------------------------------------------------------- /diagrams/data_structures/netdata_config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/netdata_config.svg -------------------------------------------------------------------------------- /diagrams/data_structures/registry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/registry.svg -------------------------------------------------------------------------------- /diagrams/data_structures/rrd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/rrd.svg -------------------------------------------------------------------------------- /diagrams/data_structures/src/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/src/registry.xml -------------------------------------------------------------------------------- /diagrams/data_structures/src/rrd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/src/rrd.xml -------------------------------------------------------------------------------- /diagrams/data_structures/src/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/src/web.xml -------------------------------------------------------------------------------- /diagrams/data_structures/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/data_structures/web.svg -------------------------------------------------------------------------------- /diagrams/netdata-for-ephemeral-nodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/netdata-for-ephemeral-nodes.xml -------------------------------------------------------------------------------- /diagrams/netdata-overview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/netdata-overview.xml -------------------------------------------------------------------------------- /diagrams/netdata-proxies-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/netdata-proxies-example.xml -------------------------------------------------------------------------------- /diagrams/registry.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/diagrams/registry.puml -------------------------------------------------------------------------------- /docs/Add-more-charts-to-netdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Add-more-charts-to-netdata.md -------------------------------------------------------------------------------- /docs/Charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Charts.md -------------------------------------------------------------------------------- /docs/Demo-Sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Demo-Sites.md -------------------------------------------------------------------------------- /docs/Donations-netdata-has-received.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Donations-netdata-has-received.md -------------------------------------------------------------------------------- /docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/GettingStarted.md -------------------------------------------------------------------------------- /docs/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Performance.md -------------------------------------------------------------------------------- /docs/Running-behind-apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Running-behind-apache.md -------------------------------------------------------------------------------- /docs/Running-behind-caddy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Running-behind-caddy.md -------------------------------------------------------------------------------- /docs/Running-behind-lighttpd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Running-behind-lighttpd.md -------------------------------------------------------------------------------- /docs/Running-behind-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Running-behind-nginx.md -------------------------------------------------------------------------------- /docs/Third-Party-Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/Third-Party-Plugins.md -------------------------------------------------------------------------------- /docs/a-github-star-is-important.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/a-github-star-is-important.md -------------------------------------------------------------------------------- /docs/configuration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/configuration-guide.md -------------------------------------------------------------------------------- /docs/generator/buildhtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/generator/buildhtml.sh -------------------------------------------------------------------------------- /docs/generator/buildyaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/generator/buildyaml.sh -------------------------------------------------------------------------------- /docs/generator/checklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/generator/checklinks.sh -------------------------------------------------------------------------------- /docs/generator/custom/css/netdata.css: -------------------------------------------------------------------------------- 1 | .md-nav__link { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /docs/generator/custom/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/generator/custom/img/favicon.ico -------------------------------------------------------------------------------- /docs/generator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/generator/requirements.txt -------------------------------------------------------------------------------- /docs/generator/runtime.txt: -------------------------------------------------------------------------------- 1 | 3.6 2 | -------------------------------------------------------------------------------- /docs/high-performance-netdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/high-performance-netdata.md -------------------------------------------------------------------------------- /docs/netdata-for-IoT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/netdata-for-IoT.md -------------------------------------------------------------------------------- /docs/netdata-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/netdata-security.md -------------------------------------------------------------------------------- /docs/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/privacy-policy.md -------------------------------------------------------------------------------- /docs/terms-of-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/terms-of-use.md -------------------------------------------------------------------------------- /docs/why-netdata/1s-granularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/why-netdata/1s-granularity.md -------------------------------------------------------------------------------- /docs/why-netdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/why-netdata/README.md -------------------------------------------------------------------------------- /docs/why-netdata/immediate-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/why-netdata/immediate-results.md -------------------------------------------------------------------------------- /docs/why-netdata/meaningful-presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/why-netdata/meaningful-presentation.md -------------------------------------------------------------------------------- /docs/why-netdata/unlimited-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/docs/why-netdata/unlimited-metrics.md -------------------------------------------------------------------------------- /health/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /health/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/Makefile.am -------------------------------------------------------------------------------- /health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/README.md -------------------------------------------------------------------------------- /health/health.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.c -------------------------------------------------------------------------------- /health/health.d/adaptec_raid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/adaptec_raid.conf -------------------------------------------------------------------------------- /health/health.d/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/apache.conf -------------------------------------------------------------------------------- /health/health.d/apcupsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/apcupsd.conf -------------------------------------------------------------------------------- /health/health.d/backend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/backend.conf -------------------------------------------------------------------------------- /health/health.d/bcache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/bcache.conf -------------------------------------------------------------------------------- /health/health.d/beanstalkd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/beanstalkd.conf -------------------------------------------------------------------------------- /health/health.d/bind_rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/bind_rndc.conf -------------------------------------------------------------------------------- /health/health.d/boinc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/boinc.conf -------------------------------------------------------------------------------- /health/health.d/btrfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/btrfs.conf -------------------------------------------------------------------------------- /health/health.d/ceph.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/ceph.conf -------------------------------------------------------------------------------- /health/health.d/couchdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/couchdb.conf -------------------------------------------------------------------------------- /health/health.d/cpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/cpu.conf -------------------------------------------------------------------------------- /health/health.d/disks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/disks.conf -------------------------------------------------------------------------------- /health/health.d/dockerd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/dockerd.conf -------------------------------------------------------------------------------- /health/health.d/elasticsearch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/elasticsearch.conf -------------------------------------------------------------------------------- /health/health.d/entropy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/entropy.conf -------------------------------------------------------------------------------- /health/health.d/fping.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/fping.conf -------------------------------------------------------------------------------- /health/health.d/fronius.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/fronius.conf -------------------------------------------------------------------------------- /health/health.d/haproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/haproxy.conf -------------------------------------------------------------------------------- /health/health.d/httpcheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/httpcheck.conf -------------------------------------------------------------------------------- /health/health.d/ipc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/ipc.conf -------------------------------------------------------------------------------- /health/health.d/ipfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/ipfs.conf -------------------------------------------------------------------------------- /health/health.d/ipmi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/ipmi.conf -------------------------------------------------------------------------------- /health/health.d/isc_dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/isc_dhcpd.conf -------------------------------------------------------------------------------- /health/health.d/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/lighttpd.conf -------------------------------------------------------------------------------- /health/health.d/linux_power_supply.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/linux_power_supply.conf -------------------------------------------------------------------------------- /health/health.d/load.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/load.conf -------------------------------------------------------------------------------- /health/health.d/mdstat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/mdstat.conf -------------------------------------------------------------------------------- /health/health.d/megacli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/megacli.conf -------------------------------------------------------------------------------- /health/health.d/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/memcached.conf -------------------------------------------------------------------------------- /health/health.d/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/memory.conf -------------------------------------------------------------------------------- /health/health.d/mongodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/mongodb.conf -------------------------------------------------------------------------------- /health/health.d/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/mysql.conf -------------------------------------------------------------------------------- /health/health.d/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/named.conf -------------------------------------------------------------------------------- /health/health.d/net.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/net.conf -------------------------------------------------------------------------------- /health/health.d/netfilter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/netfilter.conf -------------------------------------------------------------------------------- /health/health.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/nginx.conf -------------------------------------------------------------------------------- /health/health.d/nginx_plus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/nginx_plus.conf -------------------------------------------------------------------------------- /health/health.d/portcheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/portcheck.conf -------------------------------------------------------------------------------- /health/health.d/postgres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/postgres.conf -------------------------------------------------------------------------------- /health/health.d/qos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/qos.conf -------------------------------------------------------------------------------- /health/health.d/ram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/ram.conf -------------------------------------------------------------------------------- /health/health.d/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/redis.conf -------------------------------------------------------------------------------- /health/health.d/retroshare.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/retroshare.conf -------------------------------------------------------------------------------- /health/health.d/softnet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/softnet.conf -------------------------------------------------------------------------------- /health/health.d/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/squid.conf -------------------------------------------------------------------------------- /health/health.d/stiebeleltron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/stiebeleltron.conf -------------------------------------------------------------------------------- /health/health.d/swap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/swap.conf -------------------------------------------------------------------------------- /health/health.d/tcp_conn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/tcp_conn.conf -------------------------------------------------------------------------------- /health/health.d/tcp_listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/tcp_listen.conf -------------------------------------------------------------------------------- /health/health.d/tcp_mem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/tcp_mem.conf -------------------------------------------------------------------------------- /health/health.d/tcp_orphans.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/tcp_orphans.conf -------------------------------------------------------------------------------- /health/health.d/tcp_resets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/tcp_resets.conf -------------------------------------------------------------------------------- /health/health.d/udp_errors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/udp_errors.conf -------------------------------------------------------------------------------- /health/health.d/varnish.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/varnish.conf -------------------------------------------------------------------------------- /health/health.d/web_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/web_log.conf -------------------------------------------------------------------------------- /health/health.d/zfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.d/zfs.conf -------------------------------------------------------------------------------- /health/health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health.h -------------------------------------------------------------------------------- /health/health_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health_config.c -------------------------------------------------------------------------------- /health/health_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health_json.c -------------------------------------------------------------------------------- /health/health_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/health_log.c -------------------------------------------------------------------------------- /health/notifications/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/Makefile.am -------------------------------------------------------------------------------- /health/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/README.md -------------------------------------------------------------------------------- /health/notifications/alarm-email.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/alarm-email.sh -------------------------------------------------------------------------------- /health/notifications/alarm-notify.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/alarm-notify.sh.in -------------------------------------------------------------------------------- /health/notifications/alarm-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/alarm-test.sh -------------------------------------------------------------------------------- /health/notifications/alerta/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/alerta/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/alerta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/alerta/README.md -------------------------------------------------------------------------------- /health/notifications/awssns/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/awssns/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/awssns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/awssns/README.md -------------------------------------------------------------------------------- /health/notifications/discord/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/discord/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/discord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/discord/README.md -------------------------------------------------------------------------------- /health/notifications/email/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/email/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/email/README.md -------------------------------------------------------------------------------- /health/notifications/flock/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/flock/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/flock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/flock/README.md -------------------------------------------------------------------------------- /health/notifications/health_email_recipients.conf: -------------------------------------------------------------------------------- 1 | # OBSOLETE FILE 2 | # REPLACED WITH health_alarm_notify.conf 3 | -------------------------------------------------------------------------------- /health/notifications/irc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/irc/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/irc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/irc/README.md -------------------------------------------------------------------------------- /health/notifications/kavenegar/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/kavenegar/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/kavenegar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/kavenegar/README.md -------------------------------------------------------------------------------- /health/notifications/messagebird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/messagebird/README.md -------------------------------------------------------------------------------- /health/notifications/pagerduty/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/pagerduty/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/pagerduty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/pagerduty/README.md -------------------------------------------------------------------------------- /health/notifications/prowl/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/prowl/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/prowl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/prowl/README.md -------------------------------------------------------------------------------- /health/notifications/pushbullet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/pushbullet/README.md -------------------------------------------------------------------------------- /health/notifications/pushover/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/pushover/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/pushover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/pushover/README.md -------------------------------------------------------------------------------- /health/notifications/rocketchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/rocketchat/README.md -------------------------------------------------------------------------------- /health/notifications/slack/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/slack/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/slack/README.md -------------------------------------------------------------------------------- /health/notifications/syslog/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/syslog/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/syslog/README.md -------------------------------------------------------------------------------- /health/notifications/telegram/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/telegram/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/telegram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/telegram/README.md -------------------------------------------------------------------------------- /health/notifications/twilio/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/twilio/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/twilio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/twilio/README.md -------------------------------------------------------------------------------- /health/notifications/web/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/web/Makefile.inc -------------------------------------------------------------------------------- /health/notifications/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/health/notifications/web/README.md -------------------------------------------------------------------------------- /libnetdata/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/Makefile.am -------------------------------------------------------------------------------- /libnetdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/README.md -------------------------------------------------------------------------------- /libnetdata/avl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/avl/Makefile.am -------------------------------------------------------------------------------- /libnetdata/avl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/avl/README.md -------------------------------------------------------------------------------- /libnetdata/avl/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/avl/avl.c -------------------------------------------------------------------------------- /libnetdata/avl/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/avl/avl.h -------------------------------------------------------------------------------- /libnetdata/buffer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/buffer/Makefile.am -------------------------------------------------------------------------------- /libnetdata/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/buffer/README.md -------------------------------------------------------------------------------- /libnetdata/buffer/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/buffer/buffer.c -------------------------------------------------------------------------------- /libnetdata/buffer/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/buffer/buffer.h -------------------------------------------------------------------------------- /libnetdata/clocks/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/clocks/Makefile.am -------------------------------------------------------------------------------- /libnetdata/clocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/clocks/README.md -------------------------------------------------------------------------------- /libnetdata/clocks/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/clocks/clocks.c -------------------------------------------------------------------------------- /libnetdata/clocks/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/clocks/clocks.h -------------------------------------------------------------------------------- /libnetdata/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/config/Makefile.am -------------------------------------------------------------------------------- /libnetdata/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/config/README.md -------------------------------------------------------------------------------- /libnetdata/config/appconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/config/appconfig.c -------------------------------------------------------------------------------- /libnetdata/config/appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/config/appconfig.h -------------------------------------------------------------------------------- /libnetdata/dictionary/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/dictionary/Makefile.am -------------------------------------------------------------------------------- /libnetdata/dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/dictionary/README.md -------------------------------------------------------------------------------- /libnetdata/dictionary/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/dictionary/dictionary.c -------------------------------------------------------------------------------- /libnetdata/dictionary/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/dictionary/dictionary.h -------------------------------------------------------------------------------- /libnetdata/eval/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/eval/Makefile.am -------------------------------------------------------------------------------- /libnetdata/eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/eval/README.md -------------------------------------------------------------------------------- /libnetdata/eval/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/eval/eval.c -------------------------------------------------------------------------------- /libnetdata/eval/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/eval/eval.h -------------------------------------------------------------------------------- /libnetdata/inlined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/inlined.h -------------------------------------------------------------------------------- /libnetdata/libnetdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/libnetdata.c -------------------------------------------------------------------------------- /libnetdata/libnetdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/libnetdata.h -------------------------------------------------------------------------------- /libnetdata/locks/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/locks/Makefile.am -------------------------------------------------------------------------------- /libnetdata/locks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/locks/README.md -------------------------------------------------------------------------------- /libnetdata/locks/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/locks/locks.c -------------------------------------------------------------------------------- /libnetdata/locks/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/locks/locks.h -------------------------------------------------------------------------------- /libnetdata/log/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/log/Makefile.am -------------------------------------------------------------------------------- /libnetdata/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/log/README.md -------------------------------------------------------------------------------- /libnetdata/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/log/log.c -------------------------------------------------------------------------------- /libnetdata/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/log/log.h -------------------------------------------------------------------------------- /libnetdata/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/os.c -------------------------------------------------------------------------------- /libnetdata/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/os.h -------------------------------------------------------------------------------- /libnetdata/popen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/popen/Makefile.am -------------------------------------------------------------------------------- /libnetdata/popen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/popen/README.md -------------------------------------------------------------------------------- /libnetdata/popen/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/popen/popen.c -------------------------------------------------------------------------------- /libnetdata/popen/popen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/popen/popen.h -------------------------------------------------------------------------------- /libnetdata/procfile/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/procfile/Makefile.am -------------------------------------------------------------------------------- /libnetdata/procfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/procfile/README.md -------------------------------------------------------------------------------- /libnetdata/procfile/procfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/procfile/procfile.c -------------------------------------------------------------------------------- /libnetdata/procfile/procfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/procfile/procfile.h -------------------------------------------------------------------------------- /libnetdata/simple_pattern/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/simple_pattern/Makefile.am -------------------------------------------------------------------------------- /libnetdata/simple_pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/simple_pattern/README.md -------------------------------------------------------------------------------- /libnetdata/simple_pattern/simple_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/simple_pattern/simple_pattern.c -------------------------------------------------------------------------------- /libnetdata/simple_pattern/simple_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/simple_pattern/simple_pattern.h -------------------------------------------------------------------------------- /libnetdata/socket/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/socket/Makefile.am -------------------------------------------------------------------------------- /libnetdata/socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/socket/README.md -------------------------------------------------------------------------------- /libnetdata/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/socket/socket.c -------------------------------------------------------------------------------- /libnetdata/socket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/socket/socket.h -------------------------------------------------------------------------------- /libnetdata/statistical/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/statistical/Makefile.am -------------------------------------------------------------------------------- /libnetdata/statistical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/statistical/README.md -------------------------------------------------------------------------------- /libnetdata/statistical/statistical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/statistical/statistical.c -------------------------------------------------------------------------------- /libnetdata/statistical/statistical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/statistical/statistical.h -------------------------------------------------------------------------------- /libnetdata/storage_number/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/storage_number/Makefile.am -------------------------------------------------------------------------------- /libnetdata/storage_number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/storage_number/README.md -------------------------------------------------------------------------------- /libnetdata/storage_number/storage_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/storage_number/storage_number.c -------------------------------------------------------------------------------- /libnetdata/storage_number/storage_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/storage_number/storage_number.h -------------------------------------------------------------------------------- /libnetdata/threads/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/threads/Makefile.am -------------------------------------------------------------------------------- /libnetdata/threads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/threads/README.md -------------------------------------------------------------------------------- /libnetdata/threads/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/threads/threads.c -------------------------------------------------------------------------------- /libnetdata/threads/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/threads/threads.h -------------------------------------------------------------------------------- /libnetdata/url/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/url/Makefile.am -------------------------------------------------------------------------------- /libnetdata/url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/url/README.md -------------------------------------------------------------------------------- /libnetdata/url/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/url/url.c -------------------------------------------------------------------------------- /libnetdata/url/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/libnetdata/url/url.h -------------------------------------------------------------------------------- /netdata-installer-zh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/netdata-installer-zh.sh -------------------------------------------------------------------------------- /netdata-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/netdata-installer.sh -------------------------------------------------------------------------------- /netdata.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/netdata.cppcheck -------------------------------------------------------------------------------- /netdata.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/netdata.spec.in -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/package.json -------------------------------------------------------------------------------- /packaging/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/docker/Dockerfile -------------------------------------------------------------------------------- /packaging/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/docker/README.md -------------------------------------------------------------------------------- /packaging/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/docker/build.sh -------------------------------------------------------------------------------- /packaging/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/docker/run.sh -------------------------------------------------------------------------------- /packaging/installer/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/README.md -------------------------------------------------------------------------------- /packaging/installer/UNINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/UNINSTALL.md -------------------------------------------------------------------------------- /packaging/installer/UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/UPDATE.md -------------------------------------------------------------------------------- /packaging/installer/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/functions.sh -------------------------------------------------------------------------------- /packaging/installer/kickstart-static64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/kickstart-static64.sh -------------------------------------------------------------------------------- /packaging/installer/kickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/kickstart.sh -------------------------------------------------------------------------------- /packaging/installer/netdata-uninstaller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/netdata-uninstaller.sh -------------------------------------------------------------------------------- /packaging/installer/netdata-updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/installer/netdata-updater.sh -------------------------------------------------------------------------------- /packaging/maintainers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/maintainers/README.md -------------------------------------------------------------------------------- /packaging/makeself/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/README.md -------------------------------------------------------------------------------- /packaging/makeself/build-x86_64-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/build-x86_64-static.sh -------------------------------------------------------------------------------- /packaging/makeself/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/build.sh -------------------------------------------------------------------------------- /packaging/makeself/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/functions.sh -------------------------------------------------------------------------------- /packaging/makeself/install-or-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/install-or-update.sh -------------------------------------------------------------------------------- /packaging/makeself/makeself-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/makeself-header.sh -------------------------------------------------------------------------------- /packaging/makeself/makeself-help-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/makeself-help-header.txt -------------------------------------------------------------------------------- /packaging/makeself/makeself-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/makeself-license.txt -------------------------------------------------------------------------------- /packaging/makeself/makeself.lsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/makeself.lsm -------------------------------------------------------------------------------- /packaging/makeself/makeself.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/makeself.sh -------------------------------------------------------------------------------- /packaging/makeself/post-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/post-installer.sh -------------------------------------------------------------------------------- /packaging/makeself/run-all-jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/packaging/makeself/run-all-jobs.sh -------------------------------------------------------------------------------- /packaging/version: -------------------------------------------------------------------------------- 1 | v1.12.0-rc3-24-nightly 2 | -------------------------------------------------------------------------------- /registry/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/Makefile.am -------------------------------------------------------------------------------- /registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/README.md -------------------------------------------------------------------------------- /registry/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry.c -------------------------------------------------------------------------------- /registry/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry.h -------------------------------------------------------------------------------- /registry/registry_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_db.c -------------------------------------------------------------------------------- /registry/registry_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_init.c -------------------------------------------------------------------------------- /registry/registry_internals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_internals.c -------------------------------------------------------------------------------- /registry/registry_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_internals.h -------------------------------------------------------------------------------- /registry/registry_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_log.c -------------------------------------------------------------------------------- /registry/registry_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_machine.c -------------------------------------------------------------------------------- /registry/registry_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_machine.h -------------------------------------------------------------------------------- /registry/registry_person.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_person.c -------------------------------------------------------------------------------- /registry/registry_person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_person.h -------------------------------------------------------------------------------- /registry/registry_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_url.c -------------------------------------------------------------------------------- /registry/registry_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/registry/registry_url.h -------------------------------------------------------------------------------- /streaming/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/streaming/Makefile.am -------------------------------------------------------------------------------- /streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/streaming/README.md -------------------------------------------------------------------------------- /streaming/rrdpush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/streaming/rrdpush.c -------------------------------------------------------------------------------- /streaming/rrdpush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/streaming/rrdpush.h -------------------------------------------------------------------------------- /streaming/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/streaming/stream.conf -------------------------------------------------------------------------------- /system/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/Makefile.am -------------------------------------------------------------------------------- /system/edit-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/edit-config.in -------------------------------------------------------------------------------- /system/netdata-freebsd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata-freebsd.in -------------------------------------------------------------------------------- /system/netdata-init-d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata-init-d.in -------------------------------------------------------------------------------- /system/netdata-lsb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata-lsb.in -------------------------------------------------------------------------------- /system/netdata-openrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata-openrc.in -------------------------------------------------------------------------------- /system/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata.conf -------------------------------------------------------------------------------- /system/netdata.logrotate.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata.logrotate.in -------------------------------------------------------------------------------- /system/netdata.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata.plist.in -------------------------------------------------------------------------------- /system/netdata.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/system/netdata.service.in -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/health_mgmtapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/health_mgmtapi/README.md -------------------------------------------------------------------------------- /tests/health_mgmtapi/python-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/health_mgmtapi/python-example.conf -------------------------------------------------------------------------------- /tests/lifecycle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/lifecycle.bats -------------------------------------------------------------------------------- /tests/node.d/fronius.chart.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/node.d/fronius.chart.spec.js -------------------------------------------------------------------------------- /tests/node.d/fronius.parse.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/node.d/fronius.parse.spec.js -------------------------------------------------------------------------------- /tests/node.d/fronius.process.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/node.d/fronius.process.spec.js -------------------------------------------------------------------------------- /tests/node.d/fronius.validation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/node.d/fronius.validation.spec.js -------------------------------------------------------------------------------- /tests/profile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/Makefile -------------------------------------------------------------------------------- /tests/profile/benchmark-dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/benchmark-dictionary.c -------------------------------------------------------------------------------- /tests/profile/benchmark-line-parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/benchmark-line-parsing.c -------------------------------------------------------------------------------- /tests/profile/benchmark-procfile-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/benchmark-procfile-parser.c -------------------------------------------------------------------------------- /tests/profile/benchmark-registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/benchmark-registry.c -------------------------------------------------------------------------------- /tests/profile/benchmark-value-pairs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/benchmark-value-pairs.c -------------------------------------------------------------------------------- /tests/profile/statsd-stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/statsd-stress.c -------------------------------------------------------------------------------- /tests/profile/test-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/profile/test-eval.c -------------------------------------------------------------------------------- /tests/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/stress.sh -------------------------------------------------------------------------------- /tests/web/easypiechart.chart.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/web/easypiechart.chart.spec.js -------------------------------------------------------------------------------- /tests/web/easypiechart.percentage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/web/easypiechart.percentage.spec.js -------------------------------------------------------------------------------- /tests/web/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/web/karma.conf.js -------------------------------------------------------------------------------- /tests/web/lib/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/tests/web/lib/jasmine-jquery.js -------------------------------------------------------------------------------- /web/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/Makefile.am -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/README.md -------------------------------------------------------------------------------- /web/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/Makefile.am -------------------------------------------------------------------------------- /web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/README.md -------------------------------------------------------------------------------- /web/api/badges/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/badges/Makefile.am -------------------------------------------------------------------------------- /web/api/badges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/badges/README.md -------------------------------------------------------------------------------- /web/api/badges/web_buffer_svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/badges/web_buffer_svg.c -------------------------------------------------------------------------------- /web/api/badges/web_buffer_svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/badges/web_buffer_svg.h -------------------------------------------------------------------------------- /web/api/exporters/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/Makefile.am -------------------------------------------------------------------------------- /web/api/exporters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/README.md -------------------------------------------------------------------------------- /web/api/exporters/allmetrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/allmetrics.c -------------------------------------------------------------------------------- /web/api/exporters/allmetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/allmetrics.h -------------------------------------------------------------------------------- /web/api/exporters/prometheus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/prometheus/Makefile.am -------------------------------------------------------------------------------- /web/api/exporters/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/prometheus/README.md -------------------------------------------------------------------------------- /web/api/exporters/shell/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/shell/Makefile.am -------------------------------------------------------------------------------- /web/api/exporters/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/shell/README.md -------------------------------------------------------------------------------- /web/api/exporters/shell/allmetrics_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/shell/allmetrics_shell.c -------------------------------------------------------------------------------- /web/api/exporters/shell/allmetrics_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/exporters/shell/allmetrics_shell.h -------------------------------------------------------------------------------- /web/api/formatters/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/Makefile.am -------------------------------------------------------------------------------- /web/api/formatters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/README.md -------------------------------------------------------------------------------- /web/api/formatters/charts2json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/charts2json.c -------------------------------------------------------------------------------- /web/api/formatters/charts2json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/charts2json.h -------------------------------------------------------------------------------- /web/api/formatters/csv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/csv/Makefile.am -------------------------------------------------------------------------------- /web/api/formatters/csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/csv/README.md -------------------------------------------------------------------------------- /web/api/formatters/csv/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/csv/csv.c -------------------------------------------------------------------------------- /web/api/formatters/csv/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/csv/csv.h -------------------------------------------------------------------------------- /web/api/formatters/json/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json/Makefile.am -------------------------------------------------------------------------------- /web/api/formatters/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json/README.md -------------------------------------------------------------------------------- /web/api/formatters/json/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json/json.c -------------------------------------------------------------------------------- /web/api/formatters/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json/json.h -------------------------------------------------------------------------------- /web/api/formatters/json_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json_wrapper.c -------------------------------------------------------------------------------- /web/api/formatters/json_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/json_wrapper.h -------------------------------------------------------------------------------- /web/api/formatters/rrd2json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/rrd2json.c -------------------------------------------------------------------------------- /web/api/formatters/rrd2json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/rrd2json.h -------------------------------------------------------------------------------- /web/api/formatters/rrdset2json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/rrdset2json.c -------------------------------------------------------------------------------- /web/api/formatters/rrdset2json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/rrdset2json.h -------------------------------------------------------------------------------- /web/api/formatters/ssv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/ssv/Makefile.am -------------------------------------------------------------------------------- /web/api/formatters/ssv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/ssv/README.md -------------------------------------------------------------------------------- /web/api/formatters/ssv/ssv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/ssv/ssv.c -------------------------------------------------------------------------------- /web/api/formatters/ssv/ssv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/ssv/ssv.h -------------------------------------------------------------------------------- /web/api/formatters/value/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/value/Makefile.am -------------------------------------------------------------------------------- /web/api/formatters/value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/value/README.md -------------------------------------------------------------------------------- /web/api/formatters/value/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/value/value.c -------------------------------------------------------------------------------- /web/api/formatters/value/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/formatters/value/value.h -------------------------------------------------------------------------------- /web/api/health/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/health/Makefile.am -------------------------------------------------------------------------------- /web/api/health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/health/README.md -------------------------------------------------------------------------------- /web/api/health/health_cmdapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/health/health_cmdapi.c -------------------------------------------------------------------------------- /web/api/health/health_cmdapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/health/health_cmdapi.h -------------------------------------------------------------------------------- /web/api/netdata-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/netdata-swagger.json -------------------------------------------------------------------------------- /web/api/netdata-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/netdata-swagger.yaml -------------------------------------------------------------------------------- /web/api/queries/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/README.md -------------------------------------------------------------------------------- /web/api/queries/average/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/average/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/average/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/average/README.md -------------------------------------------------------------------------------- /web/api/queries/average/average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/average/average.c -------------------------------------------------------------------------------- /web/api/queries/average/average.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/average/average.h -------------------------------------------------------------------------------- /web/api/queries/des/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/des/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/des/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/des/README.md -------------------------------------------------------------------------------- /web/api/queries/des/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/des/des.c -------------------------------------------------------------------------------- /web/api/queries/des/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/des/des.h -------------------------------------------------------------------------------- /web/api/queries/incremental_sum/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/incremental_sum/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/incremental_sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/incremental_sum/README.md -------------------------------------------------------------------------------- /web/api/queries/max/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/max/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/max/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/max/README.md -------------------------------------------------------------------------------- /web/api/queries/max/max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/max/max.c -------------------------------------------------------------------------------- /web/api/queries/max/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/max/max.h -------------------------------------------------------------------------------- /web/api/queries/median/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/median/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/median/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/median/README.md -------------------------------------------------------------------------------- /web/api/queries/median/median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/median/median.c -------------------------------------------------------------------------------- /web/api/queries/median/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/median/median.h -------------------------------------------------------------------------------- /web/api/queries/min/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/min/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/min/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/min/README.md -------------------------------------------------------------------------------- /web/api/queries/min/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/min/min.c -------------------------------------------------------------------------------- /web/api/queries/min/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/min/min.h -------------------------------------------------------------------------------- /web/api/queries/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/query.c -------------------------------------------------------------------------------- /web/api/queries/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/query.h -------------------------------------------------------------------------------- /web/api/queries/rrdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/rrdr.c -------------------------------------------------------------------------------- /web/api/queries/rrdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/rrdr.h -------------------------------------------------------------------------------- /web/api/queries/ses/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/ses/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/ses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/ses/README.md -------------------------------------------------------------------------------- /web/api/queries/ses/ses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/ses/ses.c -------------------------------------------------------------------------------- /web/api/queries/ses/ses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/ses/ses.h -------------------------------------------------------------------------------- /web/api/queries/stddev/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/stddev/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/stddev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/stddev/README.md -------------------------------------------------------------------------------- /web/api/queries/stddev/stddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/stddev/stddev.c -------------------------------------------------------------------------------- /web/api/queries/stddev/stddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/stddev/stddev.h -------------------------------------------------------------------------------- /web/api/queries/sum/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/sum/Makefile.am -------------------------------------------------------------------------------- /web/api/queries/sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/sum/README.md -------------------------------------------------------------------------------- /web/api/queries/sum/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/sum/sum.c -------------------------------------------------------------------------------- /web/api/queries/sum/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/queries/sum/sum.h -------------------------------------------------------------------------------- /web/api/web_api_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/web_api_v1.c -------------------------------------------------------------------------------- /web/api/web_api_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/api/web_api_v1.h -------------------------------------------------------------------------------- /web/gui/.well-known/dnt/cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/.well-known/dnt/cookies -------------------------------------------------------------------------------- /web/gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/Makefile.am -------------------------------------------------------------------------------- /web/gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/README.md -------------------------------------------------------------------------------- /web/gui/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/browserconfig.xml -------------------------------------------------------------------------------- /web/gui/confluence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/confluence/README.md -------------------------------------------------------------------------------- /web/gui/css/bootstrap-3.3.7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/bootstrap-3.3.7.css -------------------------------------------------------------------------------- /web/gui/css/bootstrap-slate-flat-3.3.7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/bootstrap-slate-flat-3.3.7.css -------------------------------------------------------------------------------- /web/gui/css/bootstrap-slider-10.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/bootstrap-slider-10.0.0.min.css -------------------------------------------------------------------------------- /web/gui/css/bootstrap-theme-3.3.7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/bootstrap-theme-3.3.7.min.css -------------------------------------------------------------------------------- /web/gui/css/bootstrap-toggle-2.2.2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/bootstrap-toggle-2.2.2.min.css -------------------------------------------------------------------------------- /web/gui/css/c3-0.4.18.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/c3-0.4.18.min.css -------------------------------------------------------------------------------- /web/gui/css/morris-0.5.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/css/morris-0.5.1.css -------------------------------------------------------------------------------- /web/gui/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/custom/README.md -------------------------------------------------------------------------------- /web/gui/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard.css -------------------------------------------------------------------------------- /web/gui/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard.html -------------------------------------------------------------------------------- /web/gui/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard.js -------------------------------------------------------------------------------- /web/gui/dashboard.slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard.slate.css -------------------------------------------------------------------------------- /web/gui/dashboard_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard_info.js -------------------------------------------------------------------------------- /web/gui/dashboard_info_custom_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard_info_custom_example.js -------------------------------------------------------------------------------- /web/gui/dashboard_info_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/dashboard_info_zh.js -------------------------------------------------------------------------------- /web/gui/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/demo.html -------------------------------------------------------------------------------- /web/gui/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/demo2.html -------------------------------------------------------------------------------- /web/gui/demosites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/demosites.html -------------------------------------------------------------------------------- /web/gui/demosites2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/demosites2.html -------------------------------------------------------------------------------- /web/gui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/favicon.ico -------------------------------------------------------------------------------- /web/gui/goto-host-from-alarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/goto-host-from-alarm.html -------------------------------------------------------------------------------- /web/gui/images/alert-128-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/alert-128-orange.png -------------------------------------------------------------------------------- /web/gui/images/alert-128-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/alert-128-red.png -------------------------------------------------------------------------------- /web/gui/images/alert-multi-size-orange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/alert-multi-size-orange.ico -------------------------------------------------------------------------------- /web/gui/images/alert-multi-size-red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/alert-multi-size-red.ico -------------------------------------------------------------------------------- /web/gui/images/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-144x144.png -------------------------------------------------------------------------------- /web/gui/images/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-192x192.png -------------------------------------------------------------------------------- /web/gui/images/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-36x36.png -------------------------------------------------------------------------------- /web/gui/images/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-48x48.png -------------------------------------------------------------------------------- /web/gui/images/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-72x72.png -------------------------------------------------------------------------------- /web/gui/images/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/android-icon-96x96.png -------------------------------------------------------------------------------- /web/gui/images/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/animated.gif -------------------------------------------------------------------------------- /web/gui/images/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-114x114.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-120x120.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-144x144.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-152x152.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-180x180.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-57x57.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-60x60.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-72x72.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-76x76.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon-precomposed.png -------------------------------------------------------------------------------- /web/gui/images/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/apple-icon.png -------------------------------------------------------------------------------- /web/gui/images/banner-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/banner-icon-144x144.png -------------------------------------------------------------------------------- /web/gui/images/check-mark-2-128-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/check-mark-2-128-green.png -------------------------------------------------------------------------------- /web/gui/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/favicon-16x16.png -------------------------------------------------------------------------------- /web/gui/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/favicon-32x32.png -------------------------------------------------------------------------------- /web/gui/images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/favicon-96x96.png -------------------------------------------------------------------------------- /web/gui/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/favicon.ico -------------------------------------------------------------------------------- /web/gui/images/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/ms-icon-144x144.png -------------------------------------------------------------------------------- /web/gui/images/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/ms-icon-150x150.png -------------------------------------------------------------------------------- /web/gui/images/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/ms-icon-310x310.png -------------------------------------------------------------------------------- /web/gui/images/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/ms-icon-70x70.png -------------------------------------------------------------------------------- /web/gui/images/netdata-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/netdata-logomark.svg -------------------------------------------------------------------------------- /web/gui/images/netdata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/netdata.svg -------------------------------------------------------------------------------- /web/gui/images/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/post.png -------------------------------------------------------------------------------- /web/gui/images/seo-performance-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/images/seo-performance-128.png -------------------------------------------------------------------------------- /web/gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/index.html -------------------------------------------------------------------------------- /web/gui/infographic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/infographic.html -------------------------------------------------------------------------------- /web/gui/lib/bootstrap-3.3.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/bootstrap-3.3.7.min.js -------------------------------------------------------------------------------- /web/gui/lib/bootstrap-slider-10.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/bootstrap-slider-10.0.0.min.js -------------------------------------------------------------------------------- /web/gui/lib/bootstrap-table-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/bootstrap-table-1.11.0.min.js -------------------------------------------------------------------------------- /web/gui/lib/bootstrap-toggle-2.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/bootstrap-toggle-2.2.2.min.js -------------------------------------------------------------------------------- /web/gui/lib/clipboard-polyfill-be05dad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/clipboard-polyfill-be05dad.js -------------------------------------------------------------------------------- /web/gui/lib/d3-4.12.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/d3-4.12.2.min.js -------------------------------------------------------------------------------- /web/gui/lib/d3pie-0.2.1-netdata-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/d3pie-0.2.1-netdata-3.js -------------------------------------------------------------------------------- /web/gui/lib/dygraph-c91c859.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/dygraph-c91c859.min.js -------------------------------------------------------------------------------- /web/gui/lib/fontawesome-all-5.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/fontawesome-all-5.0.1.min.js -------------------------------------------------------------------------------- /web/gui/lib/gauge-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/gauge-1.3.2.min.js -------------------------------------------------------------------------------- /web/gui/lib/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /web/gui/lib/jquery.peity-3.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/jquery.peity-3.2.0.min.js -------------------------------------------------------------------------------- /web/gui/lib/jquery.sparkline-2.1.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/jquery.sparkline-2.1.2.min.js -------------------------------------------------------------------------------- /web/gui/lib/lz-string-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/lz-string-1.4.4.min.js -------------------------------------------------------------------------------- /web/gui/lib/pako-1.0.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/pako-1.0.6.min.js -------------------------------------------------------------------------------- /web/gui/lib/perfect-scrollbar-0.6.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/perfect-scrollbar-0.6.15.min.js -------------------------------------------------------------------------------- /web/gui/lib/tableExport-1.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/lib/tableExport-1.6.0.min.js -------------------------------------------------------------------------------- /web/gui/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/main.css -------------------------------------------------------------------------------- /web/gui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/main.js -------------------------------------------------------------------------------- /web/gui/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/manifest.json -------------------------------------------------------------------------------- /web/gui/refresh-badges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/refresh-badges.js -------------------------------------------------------------------------------- /web/gui/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/robots.txt -------------------------------------------------------------------------------- /web/gui/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/sitemap.xml -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/alarms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/alarms.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/boot.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/chart-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/chart-registry.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting/_c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting/_c3.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting/d3.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting/d3pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting/d3pie.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting/gauge.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/charting/peity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/charting/peity.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/colors.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/common.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/compatibility.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/dependencies.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/epilogue.js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/epilogue.js.inc -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/error-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/error-handling.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/localstorage.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/main.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/options.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/prologue.js.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/prologue.js.inc -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/registry.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/themes.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/timeout.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/utils.js -------------------------------------------------------------------------------- /web/gui/src/dashboard.js/xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/src/dashboard.js/xss.js -------------------------------------------------------------------------------- /web/gui/tv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/gui/tv.html -------------------------------------------------------------------------------- /web/server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/Makefile.am -------------------------------------------------------------------------------- /web/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/README.md -------------------------------------------------------------------------------- /web/server/static/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/static/Makefile.am -------------------------------------------------------------------------------- /web/server/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/static/README.md -------------------------------------------------------------------------------- /web/server/static/static-threaded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/static/static-threaded.c -------------------------------------------------------------------------------- /web/server/static/static-threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/static/static-threaded.h -------------------------------------------------------------------------------- /web/server/web_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_client.c -------------------------------------------------------------------------------- /web/server/web_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_client.h -------------------------------------------------------------------------------- /web/server/web_client_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_client_cache.c -------------------------------------------------------------------------------- /web/server/web_client_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_client_cache.h -------------------------------------------------------------------------------- /web/server/web_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_server.c -------------------------------------------------------------------------------- /web/server/web_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunTester-OK/netdata/HEAD/web/server/web_server.h --------------------------------------------------------------------------------