Help me graph lab utilization
April 22, 2009 5:14 PM   Subscribe

Please help me make more meaningful graphs for my boss! Our department runs computer labs on campus, and being the end of the school year we're looking at utilization rates. I can give him: number of users served per hour; number of machines used per hour; and average session time per hour. What he also wants is some sort of utilization, or fill factor graph. But none of us can really figure out what formula to use.

What do I mean by utilization/fill factor? Consider this example: Suppose a lab has 60 seats. Just by chance, 30 users come in sequentially, each using a different machine, for 2 minutes. That is:

* 00:00 - 00:02: user A uses machine01.
* 00:02 - 00:04: user B uses machine02.
* 00:04 - 00:06: user C uses machine03.

etc. Now, obviously the lab wasn't very utilized. But the graph will show we serviced 30 people in that hour, using 30 machines! We could have happily serviced all 30 people with one machine, however, the you can't see that from the graph.

That's a pathological case, but I think it illustrates what I mean. How do we measure this in a meaningful way? It seems to me that with the variables I have (login_count, login_average, host_count) I should be able to somehow derive a utilization but I'm stuck.

Note: I also have complete control over the data source and how these variables are built. So if I need to get a different number, or generate numbers a different way, please let me know!
posted by sbutler to Computers & Internet (9 answers total) 1 user marked this as a favorite
 
Best answer: utilisation = (average session time) * (sessions per hour) / (computer count)
posted by polyglot at 5:30 PM on April 22, 2009


You used one computer hour of a total of thirty hours available. polyglot's formula then works.
posted by kcm at 5:38 PM on April 22, 2009


Best answer: Have you thought about making your denominator the total number of user-minutes available? So if you have 60 seats, and your lab is open 8 hours per day, you would have a total of 28,800 user minutes available.

Or: Number of seats in the lab x number of minutes the lab is open per day

In your example of 30 people using machines for 2 minutes each, they took up 60 user-minutes. So your fill graph would show that day had a "fill factor" of 0.2%.

Or: (Sum of each users time on each computer/Total number of user-minutes) x 100

This can be adapted for whichever length of time your supervisor wants it reported (weekly, monthly, etc. ) by calculating the number of minutes in that timeframe.
posted by jeoc at 5:42 PM on April 22, 2009


What are the figures for? If they are for convincing outside funders the importance of what your office does, use a formula likely to provide data supporting your case.
posted by Ironmouth at 5:59 PM on April 22, 2009


Best answer: jeoc's formula is the same as mine just rearranged. You can rearrange it as much as you want and in terms of absolute utilisation or in terms of utilisation rates.

utilisation = (total session time) / (computer-time available)
(sessions per hour) = (session count) / hours
(average session time) = (total session time) / (session count)
(total session time) = (average session time) * (session count)
(computer-time available) = (computer count) * hours
utilisation = (average session time) * (session count) / ((computer count) * hours) =
= (average session time) * (sessions per hour) / (computer count)

You can cut it any which way you want.
posted by polyglot at 6:00 PM on April 22, 2009 [1 favorite]


Your manager cares about costs. The drivers of cost are
a) number of computers (capital expense)
b) hours that they are on (electricity)
c) hours that the lab is open (electricity, lab worker costs)

Does he need to buy more computers? Should he shift computers from lab A to lab B? Can he get rid of some computers? Should he develop some way to turn off computers to save on power, since 90% of them are not being used at any given time? Should he close the lab at some times?

Y-axis: users at time t
X-axis: time (daily, weekly, monthly, quarterly, yearly - take your pics as to what looks best)

line 1: simultaneous users at time t
line 2: capacity of that lab (horizontal line)

Continue pulling on the thread - there's lots of ways to push deeper on this.
posted by nyc_consultant at 6:59 PM on April 22, 2009


Best answer: (Minutes used/Total number of available minutes) is a good statistic, and probably the main one that you're going to want to use, but I think it might be useful to break it down by hour as well as by a larger increment (that is, usage from 4:00 to 5:00, usage from 5:00 to 6:00, etc.) If your computer lab is utterly overflowing at 4:30 in the afternoon, it doesn't matter that there's a stretch from 8:00 to 10:00 in the morning when nobody was using the computers. My experience with public library computer labs is that, in terms of customer service, the problem isn't the average wait time to get a computer; the problem is the worst wait time to get a computer.
posted by Jeanne at 7:30 PM on April 22, 2009


Best answer: Besides occupied/available user-minutes, you also want to look at trends in simultaneous use. If a lab is hosting classes with x students, it doesn't matter if only 3 students, on average, use it the rest of the time, you still need x computers in that lab.
posted by Gyan at 7:35 PM on April 22, 2009


Response by poster: Ahh... thanks guys! Total computer time available is the part I was missing. I'll probably be graphing it on a per hour basis since that's the kind of breakdown we're interested in for the other parts.

To answer some other questions:

- I'm already graphing users served per hour and computers in use per hour.

- We're using the graphs for multiple purposes/multiple audiences. Mostly to justify lab expenses, decide lab hours, and staffing level (some labs are double staffed).
posted by sbutler at 9:12 PM on April 22, 2009


« Older Buying a car to drive round Australia (ish), any...   |   Nike Frees--a worthy investment? Newer »
This thread is closed to new comments.