Reputation: 45
Is there a way to get the query execution time for SPARQL queries running in Jena Fuseki?
Upvotes: 0
Views: 415
Reputation: 56
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
Upvotes: 1
Reputation: 16700
The log file has start and store entries with timestamps, and the last entry of a request is the time taken.
Upvotes: 1