We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de38ad commit 2bc0e56Copy full SHA for 2bc0e56
README.md
@@ -112,6 +112,21 @@ Run
112
python3 delta.py --db mysql --interval 5 --period 60 --csvoutput mysql_latency.csv
113
```
114
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
130
131
# Calculate URL Latency
132
0 commit comments