Update notes for 2019-03-26

This commit is contained in:
2019-03-26 09:09:19 +02:00
parent 41adbab750
commit 3a69beea2b
4 changed files with 35 additions and 14 deletions

View File

@ -854,5 +854,15 @@ $ psql -c 'select * from pg_stat_activity' | grep -o -E '(dspaceWeb|dspaceApi|ds
- `216.244.66.198` is DotBot
- `93.179.69.74` is some IP in Ukraine, which I will add to the list of bot IPs in nginx
- I can only hope that this helps the load go down because all this traffic is disrupting the service for normal users and well-behaved bots (and interrupting my dinner and breakfast)
- Looking at the database usage I'm wondering why there are so many connections from the DSpace CLI:
```
$ psql -c 'select * from pg_stat_activity' | grep -o -E '(dspaceWeb|dspaceApi|dspaceCli)' | sort | uniq -c
5 dspaceApi
10 dspaceCli
13 dspaceWeb
```
- Looking closer I see they are all idle... so at least I know the load isn't coming from some background nightly task or something
<!-- vim: set sw=2 ts=2: -->