7

When I'm profiling I can see some data with ms (for milliseconds) but I also see μs. What does μs mean in JProfiler?

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
sproketboy
  • 8,967
  • 18
  • 65
  • 95

3 Answers3

14

It means microseconds, which is 1/1000th of a millisecond (1000 μs = 1 ms). The Greek letter mu (μ) is the SI prefix for micro-.

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
  • Ahh, Thanks. Here's the wikipedia link for those interested. http://en.wikipedia.org/wiki/Microsecond Is there a way to show ms for everything? – sproketboy Mar 15 '12 at 13:10
  • No idea about that, as I don't use JProfiler (not really a Java programmer here ;) – BoltClock Mar 15 '12 at 13:16
  • 1
    @DanHoward You can open the view settings (View->View settings in the menu or the corresponding tool bar button) to change the way times are displayed in JProfiler. – Ingo Kegel Mar 15 '12 at 20:18
4

As others have said it's 1000 times smaller than a millisecond, and is a standard measurement (not just for jprofiler.)

There's a nice table here that lists the various units, microseconds included!

Michael Berry
  • 70,193
  • 21
  • 157
  • 216
0

Micro seconds = 1000th of a milli second

Heiko Rupp
  • 30,426
  • 13
  • 82
  • 119