...
- user_barcodes.scv: a list of barcodes of actual patron IDs that will be used to check in/out with.
Monitoring Pick Slips Requests (MPS)
The following data files are needed to support the Jmeter script during its execution.
- servicepoints.csv: a list of service point ids. It will be used to execute /circulation/pick-slips/<servicepointId> requests.
Code Block | ||
---|---|---|
| ||
select jsonb->>'barcode' from fs09000000_mod_users.users where jsonb->'active' = 'true' and jsonb->>'barcode' is not null and jsonb->>'type' = 'patron' limit 3000 |
...
Monitoring Pick Slips Requests (MPS)
The following data files are needed to support the Jmeter script during its execution.
- servicepoints.csv: a list of service point ids. It will be used to execute /circulation/pick-slips/<servicepointId> requests.
Data export (DE)
The following data files are needed to support the Jmeter script during its execution.
...
ULR_users.csv: a list of user IDs that will be used to execute the script, users should be with previously generated loans.
Code Block | ||
---|---|---|
| ||
select fs09000000_mod_circulation_storage.loan.jsonb->>'userId' as user, fs09000000_mod_inventory_storage.item.jsonb->>'barcode' as itemBarcode
from fs09000000_mod_inventory_storage.item join fs09000000_mod_circulation_storage.loan
ON fs09000000_mod_inventory_storage.item.id = (fs09000000_mod_circulation_storage.loan.jsonb->>'itemId')::uuid
limit 4000 |
View MARC Tag Table (VTT)
...