0

Is there a way to get the query execution time for SPARQL queries running in Jena Fuseki?

GStone
  • 45
  • 4

2 Answers2

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