summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-08-11 19:23:38 +0300
committerGitHub <noreply@github.com>2022-08-11 19:23:38 +0300
commit9bd7528dbc3a9462899b1abf4549c31ba541a67f (patch)
tree58976af65c29694134a53165de74ac4d67c1ffe5 /web
parent80e9a6992f315deb196c9726ed6303aefeac9ebd (diff)
chore(python.d): remove python.d/* announced in v1.36.0 deprecation notice (#13503)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js84
1 files changed, 0 insertions, 84 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index db60fd8133..7a8b9fecd2 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -3802,90 +3802,6 @@ netdataDashboard.context = {
// ------------------------------------------------------------------------
// POSTGRESQL
-
- // python version start
- 'postgres.db_stat_blks': {
- info: 'Blocks reads from disk or cache.<ul>' +
- '<li><strong>blks_read:</strong> number of disk blocks read in this database.</li>' +
- '<li><strong>blks_hit:</strong> number of times disk blocks were found already in the buffer cache, so that a read was not necessary (this only includes hits in the PostgreSQL buffer cache, not the operating system&#39;s file system cache)</li>' +
- '</ul>'
- },
- 'postgres.db_stat_tuple_write': {
- info: '<ul><li>Number of rows inserted/updated/deleted.</li>' +
- '<li><strong>conflicts:</strong> number of queries canceled due to conflicts with recovery in this database. (Conflicts occur only on standby servers; see <a href="https://www.postgresql.org/docs/10/static/monitoring-stats.html#PG-STAT-DATABASE-CONFLICTS-VIEW" target="_blank">pg_stat_database_conflicts</a> for details.)</li>' +
- '</ul>'
- },
- 'postgres.db_stat_temp_bytes': {
- info: 'Temporary files can be created on disk for sorts, hashes, and temporary query results.'
- },
- 'postgres.db_stat_temp_files': {
- info: '<ul>' +
- '<li><strong>files:</strong> number of temporary files created by queries. All temporary files are counted, regardless of why the temporary file was created (e.g., sorting or hashing).</li>' +
- '</ul>'
- },
- 'postgres.archive_wal': {
- info: 'WAL archiving.<ul>' +
- '<li><strong>total:</strong> total files.</li>' +
- '<li><strong>ready:</strong> WAL waiting to be archived.</li>' +
- '<li><strong>done:</strong> WAL successfully archived. ' +
- 'Ready WAL can indicate archive_command is in error, see <a href="https://www.postgresql.org/docs/current/static/continuous-archiving.html" target="_blank">Continuous Archiving and Point-in-Time Recovery</a>.</li>' +
- '</ul>'
- },
- 'postgres.checkpointer': {
- info: 'Number of checkpoints.<ul>' +
- '<li><strong>scheduled:</strong> when checkpoint_timeout is reached.</li>' +
- '<li><strong>requested:</strong> when max_wal_size is reached.</li>' +
- '</ul>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/static/wal-configuration.html" target="_blank">WAL Configuration</a>.'
- },
- 'postgres.autovacuum': {
- info: 'PostgreSQL databases require periodic maintenance known as vacuuming. For many installations, it is sufficient to let vacuuming be performed by the autovacuum daemon. ' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/static/routine-vacuuming.html#AUTOVACUUM" target="_blank">The Autovacuum Daemon</a>.'
- },
- 'postgres.standby_delta': {
- info: 'Streaming replication delta.<ul>' +
- '<li><strong>sent_delta:</strong> replication delta sent to standby.</li>' +
- '<li><strong>write_delta:</strong> replication delta written to disk by this standby.</li>' +
- '<li><strong>flush_delta:</strong> replication delta flushed to disk by this standby server.</li>' +
- '<li><strong>replay_delta:</strong> replication delta replayed into the database on this standby server.</li>' +
- '</ul>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/static/warm-standby.html#SYNCHRONOUS-REPLICATION" target="_blank">Synchronous Replication</a>.'
- },
- 'postgres.replication_slot': {
- info: 'Replication slot files.<ul>' +
- '<li><strong>wal_keeped:</strong> WAL files retained by each replication slots.</li>' +
- '<li><strong>pg_replslot_files:</strong> files present in pg_replslot.</li>' +
- '</ul>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/static/warm-standby.html#STREAMING-REPLICATION-SLOTS" target="_blank">Replication Slots</a>.'
- },
- 'postgres.backend_usage': {
- info: 'Connections usage against maximum connections allowed, as defined in the <i>max_connections</i> setting.<ul>' +
- '<li><strong>available:</strong> maximum new connections allowed.</li>' +
- '<li><strong>used:</strong> connections currently in use.</li>' +
- '</ul>' +
- 'Assuming non-superuser accounts are being used to connect to Postgres (so <i>superuser_reserved_connections</i> are subtracted from <i>max_connections</i>).<br/>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/runtime-config-connection.html" target="_blank">Connections and Authentication</a>.'
- },
- 'postgres.forced_autovacuum': {
- info: 'Percent towards forced autovacuum for one or more tables.<ul>' +
- '<li><strong>percent_towards_forced_autovacuum:</strong> a forced autovacuum will run once this value reaches 100.</li>' +
- '</ul>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/routine-vacuuming.html" target="_blank">Preventing Transaction ID Wraparound Failures</a>.'
- },
- 'postgres.tx_wraparound_oldest_current_xid': {
- info: 'The oldest current transaction id (xid).<ul>' +
- '<li><strong>oldest_current_xid:</strong> oldest current transaction id.</li>' +
- '</ul>' +
- 'If for some reason autovacuum fails to clear old XIDs from a table, the system will begin to emit warning messages when the database\'s oldest XIDs reach eleven million transactions from the wraparound point.<br/>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/routine-vacuuming.html" target="_blank">Preventing Transaction ID Wraparound Failures</a>.'
- },
- 'postgres.percent_towards_wraparound': {
- info: 'Percent towards transaction wraparound.<ul>' +
- '<li><strong>percent_towards_wraparound:</strong> transaction wraparound may occur when this value reaches 100.</li>' +
- '</ul>' +
- 'For more information see <a href="https://www.postgresql.org/docs/current/routine-vacuuming.html" target="_blank">Preventing Transaction ID Wraparound Failures</a>.'
- },
- // python version end
'postgres.connections_utilization': {
info: 'Connections in use as percentage of <i>max_connections</i>. Connection "slots" that are reserved for superusers (<i>superuser_reserved_connections</i>) are subtracted from the limit. If the utilization is 100% new connections will be accepted only for superusers, and no new replication connections will be accepted.'
},