Skip to content

Commit 2bc0e56

Browse files
Update README.md
1 parent 4de38ad commit 2bc0e56

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,21 @@ Run
112112
python3 delta.py --db mysql --interval 5 --period 60 --csvoutput mysql_latency.csv
113113
```
114114

115+
# Calculate Latency for PostgreSQL
116+
117+
Set the below credentials in the delta.py script
118+
```
119+
pgsql_un = 'postgres'
120+
pgsql_pw = 'your_password'
121+
pgsql_host = 'localhost'
122+
pgsql_port = '5432'
123+
pgsql_db = 'postgres'
124+
```
125+
Run
126+
```
127+
python3 delta.py --db postgresql --interval 5 --period 60 --csvoutput postgres_latency.csv
128+
```
129+
115130

116131
# Calculate URL Latency
117132

0 commit comments

Comments
 (0)