[Ovirt-devel] [PATCH] Adds max/min methods to StatsDataList. Limited cleanup in graph_controller.rb. First stab at stats data retrieval for new graphing approach.

Jim Meyering meyering at redhat.com
Thu Aug 7 15:31:42 UTC 2008


Steve Linabery <slinabery at redhat.com> wrote:
> Sorry for the attachment; haven't set up my esmtp yet.
>
> I didn't clean up a great deal of the existing code in graph_controller because I suspect most of it will be removed. I did edit that loop on total_memory so that it wouldn't make mongrel time out.
>
> Some whitespace cleanup in graph_controller.
>
> Main thing for review is the new method I wrote in graph_controller to retrieve stats in either xml or json (the generation of which is yet to be implemented) for a single host or vm. I want to avoid these big long lists of stats requests to Stats.rb, because a) there's no performance hit AFAICT in breaking them up into smaller requests, and b) the graph (or whatever walks the tree and assembles the data lists for the graph) needs to make more precise requests for data.

Hi Steve,

A fine net change, overall.

It's great to do whitespace clean-up, but please keep that sort of change
separate from anything substantial.  Otherwise, it's more work for the
reviewer to separate the trivially-ignorable whitespace changes from
the ones that are significant.

If you run this, it'll make git colorize diff output:
(it modifies settings in ~/.gitconfig)

  git config --global color.ui auto

Then do "git log -p -1" (but don't pipe it into anything) and you'll
see the most recent commit.  If it's this one, you should see dark
red rectangles marking the offending white spaces on lines added by
that commit.

When I applied that change set via "git am FILE", I saw these warnings:

    $ g am r
    Applying: Adds max/min methods to StatsDataList. Limited cleanup in graph_controller.rb. First stab at stats data retrieval for new graphing approach.
    /home/meyering/work/co/ovirt/.git/rebase-apply/patch:173: space before tab in indent.
         scale.push((counter * tick / 1024).to_s) # divide by 1024 to convert to MB /home/meyering/work/co/ovirt/.git/rebase-apply/patch:338: space before tab in indent.
                  times.push _time_long_format(time)
    /home/meyering/work/co/ovirt/.git/rebase-apply/patch:345: space before tab in indent.
                  time = now - x * 28800
    /home/meyering/work/co/ovirt/.git/rebase-apply/patch:346: space before tab in indent.
                  times.push _time_short_format(time)
    /home/meyering/work/co/ovirt/.git/rebase-apply/patch:535: trailing whitespace.

    warning: squelched 8 whitespace errors
    warning: 13 lines add whitespace errors.

-----------------------
Another nit-picky, but important detail:
Note your long subject line.  It seems rude of git to concatenate things
like that, but that's the way it works.  You can accommodate it by
changing the log (git commit --amend) to have a single empty
line after the first "summary" line:

    --------
    Add max/min methods to StatsDataList.

    Limited cleanup in graph_controller.rb.
    First stab at stats data retrieval for new graphing approach.
    ----------------

[with this next bit, we're getting really minor, but comments/logs matter, too]
Also, note that "Add ..." is recommended over "Adds ..."
in all types of documentation (active voice vs passive, direct vs
indirect).

Another example: I'd change this comment:

  -  # returns data for one pool/host/vm, one target
  +  # return data for one pool/host/vm, one target

====================================================
On to the more substantial:
In Stats.rb, there are four blocks nearly identical to this one:

         if ( final > my_max )
            my_max = final
         end
         if ( final < my_min )
            my_min = final
         end

This is more concise and equivalent:

         my_min = [my_min, final].min
         my_max = [my_max, final].max

Also, I noticed that the pre-existing style is to initialize variables at
the top of a block or function.  It's better to avoid that style, and
instead to place any initialization as near as possible to the first use.
For example, if you move the initializations of my_max and my_min down
so they're nearer their first uses, readers don't have to worry about
whether they're used uninitialized (now the initialization is just before
the loop), or if the values are modified between initialization and
whatever use the reader is looking at.

===================

I like your peak_history and _time_short_format changes.
Much more readable that way.  I.e., when the resulting lines
fit in 80-columns, side-by-side diffs are more useful.

===================

In graph_controller.rb,

+      megabyte = 1024
+      totalMemory = @pool.hosts.total_memory
+      tick = megabyte
+      if totalMemory >= 10 * megabyte && totalMemory < 100 * megabyte
+        tick = 10 * megabyte
+      elsif totalMemory >= 100 * megabyte && totalMemory < 1024 * megabyte
+        tick = 100 * megabyte
+      else
+        tick = 1024 * megabyte
+      end
+
+      counter = 0
+      while counter * tick < totalMemory do
+        counter += 1 #this gives us one tick mark beyond totalMemory
+   	scale.push((counter * tick / 1024).to_s) # divide by 1024 to convert to MB
+      end

Maybe that while loop test should be "<=", in case
totalMemory is exactly 100*1024 or 1024*1024?
Otherwise, it looks like there will be no ticks
for those two edge cases.




More information about the ovirt-devel mailing list