Is there a way to get the query execution time for SPARQL queries running in Jena Fuseki?
Asked
Active
Viewed 395 times
2 Answers
1
The log file has start and store entries with timestamps, and the last entry of a request is the time taken.

AndyS
- 16,345
- 17
- 21
1
Check your fuseki print out, you will see:
13:03:59 INFO [1] Query = XXX
13:04:00 INFO [1] exec/select
13:04:00 INFO [1] 200 OK (467 ms)
The last line (467 ms) is the execution time

ssttddo
- 56
- 6