Skip to content

Commit 81aadd1

Browse files
FEATURE (docs): Update contribution priorities
1 parent 432bdce commit 81aadd1

File tree

2 files changed

+0
-32
lines changed

2 files changed

+0
-32
lines changed

contribute/README.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,8 @@ If you need to add some explanation, do it in appropriate place in the code. Or
7272
Before taking anything more than a couple of lines of code, please write Rostislav via Telegram (@rostislav_dugin) and confirm priority. It is possible that we already have something in the works, it is not needed or it's not project priority.
7373

7474
Nearsest features:
75-
- add system metrics (CPU, RAM, disk, IO) (in progress by Rostislav Dugin)
7675
- add copying of databases
7776
- add API keys and API actions
78-
- add UI component of backups lazy loaded
7977

8078
Backups flow:
8179

@@ -102,29 +100,6 @@ Extra:
102100

103101
Monitoring flow:
104102

105-
106103
- add queries stats (slowest, most frequent, etc. via pg_stat_statements)
107104
- add DB size distribution chart (tables, indexes, etc.)
108-
- add alerting for slow queries (listen for slow query and if they reach >100ms - send message)
109-
- add alerting for high resource usage (listen for high resource usage and if they reach >90% - send message)
110-
- add performance test for DB (to compare DBs on different clouds and VPS)
111-
- add DB metrics (pg_stat_activity, pg_locks, pg_stat_database)
112105
- add chart of connections (from IPs, apps names, etc.)
113-
- add chart of transactions (TPS)
114-
- deadlocks chart
115-
- chart of connection attempts (to see crash loops)
116-
- add chart of IDLE transactions VS executing transactions
117-
- show queries that take the most IO time (suboptimal indexes)
118-
- show chart by top IO / CPU queries usage (see page 90 of the PostgreSQL monitoring book)
119-
120-
```
121-
exec_time | IO | CPU | query
122-
105 hrs | 73% | 27% | SELECT * FROM users;
123-
```
124-
125-
- chart of read / update / delete / insert queries
126-
- chart with deadlocks, conflicts, rollbacks (see page 115 of the PostgreSQL monitoring book)
127-
- stats of buffer usage
128-
- status of IO (DB, indexes, sequences)
129-
- % of cache hit
130-
- replication stats

frontend/src/features/databases/ui/DatabaseComponent.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@ export const DatabaseComponent = ({
5656
>
5757
Backups
5858
</div>
59-
60-
<div
61-
className={`cursor-pointer rounded-tl-md rounded-tr-md px-6 py-2 ${currentTab === 'metrics' ? 'bg-white' : 'bg-gray-200'}`}
62-
onClick={() => setCurrentTab('metrics')}
63-
>
64-
Metrics
65-
</div>
6659
</div>
6760

6861
{currentTab === 'config' && (

0 commit comments

Comments
 (0)