<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>Hi Nadya</p>
    uou!, that sounds pretty complicated :)<br>
    <br>
    Is there any simple workaround for a running environment? AFAIK
    plugins cannot be installed on running environment, resetting is
    needed, isn't it?<br>
    <br>
    J.<br>
    <br>
    <div class="moz-cite-prefix">On 18/05/16 11:59, Nadya Shakhat wrote:<br>
    </div>
    <blockquote
cite="mid:CAKWrcJcBh9AccUPk2C-9iKqNbxygtQ6DAoXm932-fC5keiPx4A@mail.gmail.com"
      type="cite">
      <div dir="ltr">Hi!
        <div>Yes, I know :)</div>
        <div><br>
        </div>
        <div>In Liberty (MOS 8.0) notification agents should be
          coordinated to work properly with transformers (cpu_util is
          based on transformers). Coordination is done using tooz. Tooz
          uses Redis or Zookeeper as a  backend. So, neither Redis nor
          Zookeeper is installed by default in MOS 8.0. It may be
          installed using a special Fuel plugin [1].  After it is
          installed, you may change pipeline.yaml back and use cpu_util.
          Or you can leave only one notification agent per cloud and
          change pipeline.yaml back too, without coordination. </div>
        <div><br>
        </div>
        <div>[1] <a moz-do-not-send="true"
href="https://github.com/openstack/fuel-plugin-ceilometer-redis/blob/master/doc/content/installation.rst">https://github.com/openstack/fuel-plugin-ceilometer-redis/blob/master/doc/content/installation.rst</a></div>
        <div><br>
        </div>
        <div>Nadya</div>
        <div><br>
        </div>
        <div><br>
        </div>
      </div>
      <div class="gmail_extra"><br>
        <div class="gmail_quote">On Wed, May 18, 2016 at 12:14 PM, <a
            moz-do-not-send="true" href="mailto:magicboiz@hotmail.com"><a class="moz-txt-link-abbreviated" href="mailto:magicboiz@hotmail.com">magicboiz@hotmail.com</a></a>
          <span dir="ltr"><<a moz-do-not-send="true"
              href="mailto:magicboiz@hotmail.com" target="_blank">magicboiz@hotmail.com</a>></span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">
            <div bgcolor="#FFFFFF" text="#000000">
              <p>Hi</p>
              <p>anybody knows why FUEL 8.0 deploys this simple
                pipeline.yaml <br>
              </p>
              <p><font size="-2">---<br>
                  sources:<br>
                      - name: meter_source<br>
                        interval: 600<br>
                        meters:<br>
                              - "*"<br>
                              - "!volume.create.*"<br>
                              - "!volume.delete.*"<br>
                              - "!volume.update.*"<br>
                              - "!volume.resize.*"<br>
                              - "!volume.attach.*"<br>
                              - "!volume.detach.*"<br>
                              - "!snapshot.create.*"<br>
                              - "!snapshot.delete.*"<br>
                              - "!identity.authenticate.*"<br>
                              - "!storage.api.request"<br>
                        sinks:<br>
                            - meter_sink<br>
                  sinks:<br>
                      - name: meter_sink<br>
                        transformers:<br>
                        publishers:<br>
                            - notifier://</font><br>
                <br>
              </p>
              <p>while DEVSTACK deploys this pipeline.yaml??</p>
              <p><font size="-2">---<br>
                  sources:<br>
                      - name: meter_source<br>
                        interval: 600<br>
                        meters:<br>
                            - "*"<br>
                        sinks:<br>
                            - meter_sink<br>
                      - name: cpu_source<br>
                        interval: 600<br>
                        meters:<br>
                            - "cpu"<br>
                        sinks:<br>
                            - cpu_sink<br>
                            - cpu_delta_sink<br>
                      - name: disk_source<br>
                        interval: 600<br>
                        meters:<br>
                            - "disk.read.bytes"<br>
                            - "disk.read.requests"<br>
                            - "disk.write.bytes"<br>
                            - "disk.write.requests"<br>
                            - "disk.device.read.bytes"<br>
                            - "disk.device.read.requests"<br>
                            - "disk.device.write.bytes"<br>
                            - "disk.device.write.requests"<br>
                        sinks:<br>
                            - disk_sink<br>
                      - name: network_source<br>
                        interval: 600<br>
                        meters:<br>
                            - "network.incoming.bytes"<br>
                            - "network.incoming.packets"<br>
                            - "network.outgoing.bytes"<br>
                            - "network.outgoing.packets"<br>
                        sinks:<br>
                            - network_sink<br>
                  sinks:<br>
                      - name: meter_sink<br>
                        transformers:<br>
                        publishers:<br>
                            - notifier://<br>
                      - name: cpu_sink<br>
                        transformers:<br>
                            - name: "rate_of_change"<br>
                              parameters:<br>
                                  target:<br>
                                      name: "cpu_util"<br>
                                      unit: "%"<br>
                                      type: "gauge"<br>
                                      scale: "100.0 / (10**9 *
                  (resource_metadata.cpu_number or 1))"<br>
                        publishers:<br>
                            - notifier://<br>
                      - name: cpu_delta_sink<br>
                        transformers:<br>
                            - name: "delta"<br>
                              parameters:<br>
                                  target:<br>
                                      name: "cpu.delta"<br>
                                  growth_only: True<br>
                        publishers:<br>
                            - notifier://<br>
                      - name: disk_sink<br>
                        transformers:<br>
                            - name: "rate_of_change"<br>
                              parameters:<br>
                                  source:<br>
                                      map_from:<br>
                                          name:
                  "(disk\\.device|disk)\\.(read|write)\\.(bytes|requests)"<br>
                                          unit: "(B|request)"<br>
                                  target:<br>
                                      map_to:<br>
                                          name: "\\1.\\2.\\3.rate"<br>
                                          unit: "\\1/s"<br>
                                      type: "gauge"<br>
                        publishers:<br>
                            - notifier://<br>
                      - name: network_sink<br>
                        transformers:<br>
                            - name: "rate_of_change"<br>
                              parameters:<br>
                                  source:<br>
                                     map_from:<br>
                                         name:
                  "network\\.(incoming|outgoing)\\.(bytes|packets)"<br>
                                         unit: "(B|packet)"<br>
                                  target:<br>
                                      map_to:<br>
                                          name: "network.\\1.\\2.rate"<br>
                                          unit: "\\1/s"<br>
                                      type: "gauge"<br>
                        publishers:<br>
                            - notifier://</font><br>
                <br>
              </p>
              <p><br>
              </p>
              <p> I wonder why FUEL deploys such a simple pipeline.yaml.
                AFAIK this pipeline definition doesn't include meters
                like "cpu_util" which are very common when defining
                alarms....</p>
              <p><br>
              </p>
              <p>J.<br>
              </p>
              <p><br>
              </p>
              <br>
              <div>On 17/05/16 22:01, Ja. C.A. wrote:<br>
              </div>
              <blockquote type="cite">
                <div dir="ltr">
                  <div><br>
                  </div>
                  <div>Hi</div>
                  <div><br>
                  </div>
                  <div>I think I have the same problem: I've deployed
                    Openstack Liberty with Mirantis FUEL 8.0, and it
                    looks like some meters are missing, for example, I
                    cannot see "cpu_util" meter anywhere. I tried
                    defining  "<code style="font-size:13px">compute_monitors</code><span
style="font-family:Verdana,Geneva,sans-serif;font-size:13px"> = </span><span
style="font-family:Verdana,Geneva,sans-serif;font-size:13px">cpu.virt_driver</span><span
                      style="font-size:12pt">" in compute node nova.conf
                      but  it doesn't seem to work :(</span></div>
                  <div><br>
                  </div>
                  <div>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>user1@ubuntu:~$
                        nova list</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+--------------------------------------+------+--------+------------+-------------+------------------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ID                                   | Name |
                        Status | Task State | Power State | Networks    
                            |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+--------------------------------------+------+--------+------------+-------------+------------------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        5ae2a69d-0004-4973-8f07-9b35464ec23c | i1   |
                        ACTIVE | -          | Running     |
                        red01=10.0.1.140 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+--------------------------------------+------+--------+------------+-------------+------------------+</span></p>
                  </div>
                  <div><br>
                  </div>
                  <div>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>user1@ubuntu:~$
                        ceilometer sample-list -m cpu_util -l 1</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        Resource ID | Name | Type | Volume | Unit |
                        Timestamp |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span><br>
                      </span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>user1@ubuntu:~$
                        ceilometer sample-list -m cpu_util </span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        Resource ID | Name | Type | Volume | Unit |
                        Timestamp |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------+------+------+--------+------+-----------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>user1@ubuntu:~$
                        ceilometer meter-list</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------------------------------------+------------+----------------+-----------------------------------------------------------------------+----------------------------------+----------------------------------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        Name                                      | Type
                              | Unit           | Resource ID            
                                                                      |
                        User ID                          | Project ID  
                                            |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------------------------------------+------------+----------------+-----------------------------------------------------------------------+----------------------------------+----------------------------------+</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        cpu                                       |
                        cumulative | ns             |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        cpu                                       |
                        cumulative | ns             |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.read.bytes                    |
                        cumulative | B              |
                        0e550a24-13c8-42e5-8336-f5789bff54c2-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.read.bytes                    |
                        cumulative | B              |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.read.requests                 |
                        cumulative | request        |
                        0e550a24-13c8-42e5-8336-f5789bff54c2-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.read.requests                 |
                        cumulative | request        |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.write.bytes                   |
                        cumulative | B              |
                        0e550a24-13c8-42e5-8336-f5789bff54c2-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.write.bytes                   |
                        cumulative | B              |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.write.requests                |
                        cumulative | request        |
                        0e550a24-13c8-42e5-8336-f5789bff54c2-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.device.write.requests                |
                        cumulative | request        |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4-vda       
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        4132d909-3bc5-4bbc-9466-96082b2570a7           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        93e044f1-e10c-4a66-9a8b-101c680f905e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        bedd0a72-d7c7-4109-a274-f041dee8caa8           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.ephemeral.size                       |
                        gauge      | GB             |
                        edba0fff-5a09-44de-93fc-39dd73e61eb6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.read.bytes                           |
                        cumulative | B              |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.read.bytes                           |
                        cumulative | B              |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.read.requests                        |
                        cumulative | request        |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.read.requests                        |
                        cumulative | request        |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        4132d909-3bc5-4bbc-9466-96082b2570a7           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        93e044f1-e10c-4a66-9a8b-101c680f905e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        bedd0a72-d7c7-4109-a274-f041dee8caa8           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.root.size                            |
                        gauge      | GB             |
                        edba0fff-5a09-44de-93fc-39dd73e61eb6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.write.bytes                          |
                        cumulative | B              |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.write.bytes                          |
                        cumulative | B              |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.write.requests                       |
                        cumulative | request        |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        disk.write.requests                       |
                        cumulative | request        |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        identity.project.created                  |
                        delta      | project        |
                        65f8d3591f2c478e8373cbabcdcd2302               
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        4132d909-3bc5-4bbc-9466-96082b2570a7           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        93e044f1-e10c-4a66-9a8b-101c680f905e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        bedd0a72-d7c7-4109-a274-f041dee8caa8           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        instance                                  |
                        gauge      | instance       |
                        edba0fff-5a09-44de-93fc-39dd73e61eb6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating                               |
                        gauge      | ip             |
                        117bf9d3-ebec-4751-b2f3-d02f2392cdff           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating                               |
                        gauge      | ip             |
                        21f6a9ec-3e70-4ba8-b179-e7ff6f3e723c           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating                               |
                        gauge      | ip             |
                        6fb4f7d4-43b3-41ed-8ac1-7173e3b64430           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating.create                        |
                        delta      | ip             |
                        117bf9d3-ebec-4751-b2f3-d02f2392cdff           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating.create                        |
                        delta      | ip             |
                        21f6a9ec-3e70-4ba8-b179-e7ff6f3e723c           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating.create                        |
                        delta      | ip             |
                        6fb4f7d4-43b3-41ed-8ac1-7173e3b64430           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        ip.floating.update                        |
                        delta      | ip             |
                        6fb4f7d4-43b3-41ed-8ac1-7173e3b64430           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        4132d909-3bc5-4bbc-9466-96082b2570a7           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        93e044f1-e10c-4a66-9a8b-101c680f905e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        bedd0a72-d7c7-4109-a274-f041dee8caa8           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory                                    |
                        gauge      | MB             |
                        edba0fff-5a09-44de-93fc-39dd73e61eb6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory.resident                           |
                        gauge      | MB             |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        memory.resident                           |
                        gauge      | MB             |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.bytes                    |
                        cumulative | B              |
                        instance-000000bb-0e550a24-13c8-42e5-8336-f5789bff54c2-tap6d670b7b-ad
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.bytes                    |
                        cumulative | B              |
                        instance-00000118-c152ac71-5451-4bec-be0c-5e6532ac83b4-tap59902f39-cc
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.bytes                    |
                        cumulative | B              |
                        instance-00000121-319cfa2a-8922-43ff-836b-d4c31c22f30c-tapd0125b25-8c
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.packets                  |
                        cumulative | packet         |
                        instance-000000bb-0e550a24-13c8-42e5-8336-f5789bff54c2-tap6d670b7b-ad
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.packets                  |
                        cumulative | packet         |
                        instance-00000118-c152ac71-5451-4bec-be0c-5e6532ac83b4-tap59902f39-cc
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.incoming.packets                  |
                        cumulative | packet         |
                        instance-00000121-319cfa2a-8922-43ff-836b-d4c31c22f30c-tapd0125b25-8c
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.bytes                    |
                        cumulative | B              |
                        instance-000000bb-0e550a24-13c8-42e5-8336-f5789bff54c2-tap6d670b7b-ad
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.bytes                    |
                        cumulative | B              |
                        instance-00000118-c152ac71-5451-4bec-be0c-5e6532ac83b4-tap59902f39-cc
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.bytes                    |
                        cumulative | B              |
                        instance-00000121-319cfa2a-8922-43ff-836b-d4c31c22f30c-tapd0125b25-8c
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.packets                  |
                        cumulative | packet         |
                        instance-000000bb-0e550a24-13c8-42e5-8336-f5789bff54c2-tap6d670b7b-ad
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.packets                  |
                        cumulative | packet         |
                        instance-00000118-c152ac71-5451-4bec-be0c-5e6532ac83b4-tap59902f39-cc
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.outgoing.packets                  |
                        cumulative | packet         |
                        instance-00000121-319cfa2a-8922-43ff-836b-d4c31c22f30c-tapd0125b25-8c
                        | 202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor        |
                        gauge      | health_monitor |
                        3d5f6aff-baf7-4122-91d2-811dfe7b027b           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor        |
                        gauge      | health_monitor |
                        6811d51e-48ec-4260-826f-6d3dc1465137           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor        |
                        gauge      | health_monitor |
                        f7419594-8ead-4ca4-b5fd-466065c46074           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor.create |
                        delta      | health_monitor |
                        3d5f6aff-baf7-4122-91d2-811dfe7b027b           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor.create |
                        delta      | health_monitor |
                        6811d51e-48ec-4260-826f-6d3dc1465137           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.health_monitor.create |
                        delta      | health_monitor |
                        f7419594-8ead-4ca4-b5fd-466065c46074           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.member                |
                        gauge      | member         |
                        b77ab8f2-849e-4db6-bd2c-183b1c68a41a           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.member                |
                        gauge      | member         |
                        d5c93d24-75c3-4683-8c6c-65525f0d8f1c           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.member.create         |
                        delta      | member         |
                        b77ab8f2-849e-4db6-bd2c-183b1c68a41a           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.member.create         |
                        delta      | member         |
                        d5c93d24-75c3-4683-8c6c-65525f0d8f1c           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.pool                  |
                        gauge      | pool           |
                        c2ff0a2d-ffab-460b-90c8-270f48d20c1b           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.pool                  |
                        gauge      | pool           |
                        e2d77c3c-d82b-47cb-8175-2aa77bf1454e           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.pool.create           |
                        delta      | pool           |
                        c2ff0a2d-ffab-460b-90c8-270f48d20c1b           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.pool.create           |
                        delta      | pool           |
                        e2d77c3c-d82b-47cb-8175-2aa77bf1454e           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.vip                   |
                        gauge      | vip            |
                        beac3248-1419-4b40-a061-9e48e4548927           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.vip                   |
                        gauge      | vip            |
                        e073a33e-90ff-4372-bd0f-0b113999640b           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.vip.create            |
                        delta      | vip            |
                        beac3248-1419-4b40-a061-9e48e4548927           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        network.services.lb.vip.create            |
                        delta      | vip            |
                        e073a33e-90ff-4372-bd0f-0b113999640b           
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.create                              |
                        delta      | stack          |
                        1178e76b-c38c-4681-96cf-f8fb07fcf662           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.create                              |
                        delta      | stack          |
                        384f932c-d556-41fb-9d9b-ece97207cfa6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.create                              |
                        delta      | stack          |
                        3fa099ee-1a5f-46f4-906d-e789d56a1e9e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.create                              |
                        delta      | stack          |
                        bf22277f-ec82-41b0-9d6f-caeda74d6fb5           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.delete                              |
                        delta      | stack          |
                        1178e76b-c38c-4681-96cf-f8fb07fcf662           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.delete                              |
                        delta      | stack          |
                        384f932c-d556-41fb-9d9b-ece97207cfa6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.delete                              |
                        delta      | stack          |
                        bf22277f-ec82-41b0-9d6f-caeda74d6fb5           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.delete                              |
                        delta      | stack          |
                        cca8d147-d57e-4167-8dd0-1644ec6d4a7b           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        stack.delete                              |
                        delta      | stack          |
                        fc1d7841-3dbf-4cfb-abe0-871e4931922a           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        storage.objects                           |
                        gauge      | object         |
                        65f8d3591f2c478e8373cbabcdcd2302               
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        storage.objects.containers                |
                        gauge      | container      |
                        65f8d3591f2c478e8373cbabcdcd2302               
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        storage.objects.size                      |
                        gauge      | B              |
                        65f8d3591f2c478e8373cbabcdcd2302               
                                              | None                    
                                | 65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        0e550a24-13c8-42e5-8336-f5789bff54c2           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        4132d909-3bc5-4bbc-9466-96082b2570a7           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        93e044f1-e10c-4a66-9a8b-101c680f905e           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        bedd0a72-d7c7-4109-a274-f041dee8caa8           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        c152ac71-5451-4bec-be0c-5e6532ac83b4           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>|
                        vcpus                                     |
                        gauge      | vcpu           |
                        edba0fff-5a09-44de-93fc-39dd73e61eb6           
                                              |
                        202e3502ad9d486b9b403ffe60dc2bf1 |
                        65f8d3591f2c478e8373cbabcdcd2302 |</span></p>
                    <p
                      style="font-size:11px;line-height:normal;font-family:Menlo"><span>+-------------------------------------------+------------+----------------+-----------------------------------------------------------------------+----------------------------------+----------------------------------+</span></p>
                  </div>
                  <div><br>
                  </div>
                  <div><br>
                  </div>
                  <div>J.</div>
                  <div><br>
                  </div>
                  <div><span
style="font-family:Verdana,Arial,Helvetica;font-size:10pt;background-color:rgb(255,255,255)">On
                      Fri, Apr 29, 2016 at 2:24 PM, Florian Rommel < </span><br
                      style="font-family:Verdana,Arial,Helvetica">
                    <span
style="font-family:Verdana,Arial,Helvetica;font-size:10pt;background-color:rgb(255,255,255)">florian.rommel
                      [at] datalounges> wrote: </span><br
                      style="font-family:Verdana,Arial,Helvetica">
                    <br style="font-family:Verdana,Arial,Helvetica">
                    <font style="font-family:Verdana,Arial,Helvetica"
                      color="#660066">> Hi, they are started and
                      nothing in the logs.. actually… <br>
                      > <br>
                      > thats the weird part and there are about 450
                      VMs running currently in this <br>
                      > environment. <br>
                      > <br>
                      > //Florian <br>
                      > <br>
                      > <br>
                      > <br>
                      > <br>
                      > On 29 Apr 2016, at 13:25, Nadya Shakhat
                      <nprivalova [at] mirantis> wrote: <br>
                      > <br>
                      > OK, so as you see there are no cpu-samples
                      from computes. Make sure that <br>
                      > Ceilometer compute service is running. If it
                      is, I would recommend to check <br>
                      > the logs on compute nodes. I assume that
                      there is at least one instance <br>
                      > running, is that right? <br>
                      > <br>
                      > Nadya <br>
                      > <br>
                      > On Fri, Apr 29, 2016 at 1:12 PM, Florian
                      Rommel < <br>
                      > florian.rommel [at] datalounges> wrote: <br>
                      > <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>> Hi Nadya, here it is: <br>
                      >> <br>
                      >> <br>
                      >> output from ceilometer sample-list -m
                      cpu_util -l 1 <br>
                      >> <br>
                      >>
                      +-------------+------+------+--------+------+-----------+ <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | Resource ID | Name |
                      Type | Volume | Unit | Timestamp | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      +-------------+------+------+--------+------+-----------+ <br>
                      >>
                      +-------------+------+------+--------+------+—————+ <br>
                      >> <br>
                      >> <br>
                      >> ceilometer sample-list -m cpu -l 1 <br>
                      >> <br>
                      >>
                      +-------------+------+------+--------+------+-----------+ <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | Resource ID | Name |
                      Type | Volume | Unit | Timestamp | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      +-------------+------+------+--------+------+—————+ <br>
                      >> <br>
                      >> ceilometer meter-list <br>
                      >> <br>
                      >> <br>
                      >>
+----------------------------+-------+----------+--------------------------------------+----------------------------------+----------------------------------+ <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | Name | Type | Unit |
                      Resource ID <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | User ID | Project ID <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>> <br>
                      >>
+----------------------------+-------+----------+--------------------------------------+----------------------------------+----------------------------------+ <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      28416826-40ad-461f-83ef-e65f1a20b9c6 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2e0ec95f-5913-4ccf-8dbf-ba65ad945a11 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      34bec683-d39a-4864-98d4-c7928013ef63 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      35e50ca2-837f-4329-af54-b109df225fd8 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      53a31ee4-715b-4203-9064-3b2ab6627ae4 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      55cb856b-574b-4df5-b201-a968527e6db8 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      62d78d3c-d64c-46af-9339-de5edc352c93 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6d6c87da-61fa-4a7c-ab18-d138618a9942 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      73b93665-d85d-4c7d-b2ef-6a22c87483fa |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      77643571-6810-4c74-8d24-9aaca94a7462 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      9dff99cb-82b5-4eca-81bc-8e180ad21a8f |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      a060375e-f612-497a-aeed-d78fb412128e |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      a988ed89-5f09-42a1-97ac-f6faa1fec630 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      b34cb74c-b0c0-4be9-b222-0d86ede60ff2 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      b7e75cba-5973-4125-b8cb-238fca3902b9 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      c59b1c87-d28e-487c-8360-50c0bd52cce9 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      dc91422d-5e91-427f-9bc2-176370c08eab |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      e23e5f91-f483-4118-877e-ac6be55c55bb |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      eef0d66e-ba26-458d-a23c-91190c22f8da |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      ef4920fa-1742-492d-a85a-bb0a3d26ebde |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.ephemeral.size |
                      gauge | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      f6576e3b-a06d-4884-ba47-58c76e72da17 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      0b083b95-5af1-4284-950a-15a8683d55e6 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2c068d9a-60b4-43cd-ac07-cff02b592489 |
                      35b5095d906e4e9fb3e6d9b2beb7b0ad | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2f835e80-5332-415b-b7ac-ccdb52a67917 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      3396079a-2406-4c94-954a-45963283a2c2 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      33b6396b-66c1-4824-9818-1b49f5fe0ee9 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      3fe3ae42-d469-4112-928a-558e8c8be00d |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      4566833c-a5c4-459d-ab55-63f7e78d13d3 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      5011a803-8047-4397-a192-3c6de96fdeec |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      5dba27df-33d5-480a-a185-6d0fe56b1069 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      5ed82ec0-029e-49c3-bc14-883440ce1dcb |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6885f937-6d35-4355-ad67-4b7397b98704 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      90b8dfe5-feb4-43e1-a8ee-b28748c53a01 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      bb70ebcd-4b0d-4b30-910a-3d6b2834e64c |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      bc51a7d6-2e12-4bf2-b248-ee54b9e8f18a |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      bf6ad10a-7cb5-44fe-bc72-448c95f7c231 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      cb10f551-e89e-40f3-a329-ee76d1e7ecf1 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      cbe43a24-e462-4b4b-8d09-0235e0ed38f7 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      cfe52014-cad2-4fcf-8cb7-1f24abf2d0ab |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      d6889e34-e574-4f9d-a2bb-43b63b088773 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      da8cde97-33fc-48c5-b9cf-34ed972cad76 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      dc902946-e1fe-4fc0-9b6b-0f79522b6054 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      ef1f7108-ed52-47ae-bd74-deabc65918b7 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | disk.root.size | gauge
                      | GB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      fe149eb8-e61f-42ba-8efa-629fdc82a60e |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image | gauge | image
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      1d5c8056-a076-4644-9ba8-e7ef5835f393 | None | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image | gauge | image
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      305102c0-6a3c-401e-8429-f147a1fea242 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image | gauge | image
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      9010365c-de4d-4638-8597-1e0b44af32d8 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image | gauge | image
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      c23cac6c-e6be-45ae-875a-cb65c6fada32 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.download | delta
                      | B | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      118e9b63-b00f-4ba3-8ee8-6ab2c8bc24e6 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.download | delta
                      | B | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6b1ca679-5ee6-46bd-9070-067d11269dc7 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.download | delta
                      | B | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      e9eeea79-ac2f-4200-956b-4e14704a52a3 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.serve | delta | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      118e9b63-b00f-4ba3-8ee8-6ab2c8bc24e6 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.serve | delta | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6b1ca679-5ee6-46bd-9070-067d11269dc7 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.serve | delta | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      e9eeea79-ac2f-4200-956b-4e14704a52a3 | None | <br>
                      >> 4d23b8565cef4cc09e7db09b38ae2b9b | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.size | gauge | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2535b6f2-0757-4d1d-900e-3ffc9c0fda69 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.size | gauge | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      551e92f8-ca2e-41b7-9fc4-99f8d472303c | None | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.size | gauge | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6b1ca679-5ee6-46bd-9070-067d11269dc7 | None | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | image.size | gauge | B
                      | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      8ecc70a1-0590-4d88-a265-390f1cbd24d4 | None | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2c068d9a-60b4-43cd-ac07-cff02b592489 |
                      35b5095d906e4e9fb3e6d9b2beb7b0ad | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2d37f35a-f6f3-4ad2-9162-2fe8d80962da |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      3282ff7d-5325-48c7-b512-950174691424 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      5011a803-8047-4397-a192-3c6de96fdeec |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      608a41a4-1cff-4d94-9db5-20bda396db22 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6475ad9f-d096-41b7-9133-de166f8883b0 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      7f49d869-4a65-4a2a-a20d-bf9496af9a9b |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      bc51a7d6-2e12-4bf2-b248-ee54b9e8f18a |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      c3014a7b-8b51-46a2-9877-195c95b7cbb4 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      d0b635f6-7ea4-43d1-b6bc-56eccec9e16a |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      d444f9b3-f401-4fa2-a2a6-cebc8ffa7f01 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      d5f06e19-dbc9-41bf-9f6b-811f8e39792e |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      df180a4e-7c90-446f-aca1-34b3fa6e5ceb |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      e76b38ac-5fc8-4991-b2b1-a28720805f9a |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      f98bf0da-c22e-44d1-ab5c-fa02ba25ad69 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      fa80f135-2489-4c3e-9a42-cc92e836303d |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      fb303e03-b242-445c-b77a-bf394721b6fd |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | memory | gauge | MB | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      fdaccef8-a49c-42a4-86d1-b0fc2adc3591 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> |
                      network.services.firewall | gauge | firewall | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2ae6b094-e1ea-42d4-8c5e-e6d140279edb | None | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> |
                      network.services.lb.member | gauge | member | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      a51c6b35-73ad-494d-965d-9fec46a45480 | None | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      28416826-40ad-461f-83ef-e65f1a20b9c6 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      2e0ec95f-5913-4ccf-8dbf-ba65ad945a11 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      34bec683-d39a-4864-98d4-c7928013ef63 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      35e50ca2-837f-4329-af54-b109df225fd8 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      53a31ee4-715b-4203-9064-3b2ab6627ae4 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      55cb856b-574b-4df5-b201-a968527e6db8 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      62d78d3c-d64c-46af-9339-de5edc352c93 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      6d6c87da-61fa-4a7c-ab18-d138618a9942 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      73b93665-d85d-4c7d-b2ef-6a22c87483fa |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      77643571-6810-4c74-8d24-9aaca94a7462 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      9dff99cb-82b5-4eca-81bc-8e180ad21a8f |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      a060375e-f612-497a-aeed-d78fb412128e |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      a988ed89-5f09-42a1-97ac-f6faa1fec630 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      b30d5135-1094-4a42-b6a0-502ebe719a98 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      b34cb74c-b0c0-4be9-b222-0d86ede60ff2 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d3fe7f1438454e37b9a15b3b45b068f0 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      b7e75cba-5973-4125-b8cb-238fca3902b9 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      c59b1c87-d28e-487c-8360-50c0bd52cce9 |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      dc91422d-5e91-427f-9bc2-176370c08eab |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      e23e5f91-f483-4118-877e-ac6be55c55bb |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> d946410f309b4f5885ba0148f882eb2d | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      eef0d66e-ba26-458d-a23c-91190c22f8da |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> 21ca93d41f924d4eabba7e8dc16a7f71 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      ef4920fa-1742-492d-a85a-bb0a3d26ebde |
                      17dbc503de764278a06f21951e324f60 | <br>
                      >> e1c59ee813f4434686c8a7cde41d0f91 | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#990000">>> | vcpus | gauge | vcpu | <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#007777">>>
                      f6576e3b-a06d-4884-ba47-58c76e72da17 |
                      331c8e3c04d843caa6c7d27248ffcb4c | <br>
                      >> 34bc60174c1a4ee2a2872e52326fd658 | <br>
                      >> <br>
                      >>
+----------------------------+-------+----------+--------------------------------------+----------------------------------+—————————————————+ <br>
                      >> <br>
                      >> <br>
                      >> <br>
                      >> If you need more info, please let know
                      :) <br>
                      >> <br>
                      >> Thank you <br>
                      >> //florian <br>
                    </font><font
                      style="font-family:Verdana,Arial,Helvetica"
                      color="#660066">> <br>
                      > <br>
                      > <br>
                      > </font></div>
                </div>
                <br>
                <fieldset></fieldset>
                <br>
                <pre>_______________________________________________
Mailing list: <a moz-do-not-send="true" href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a>
Post to     : <a moz-do-not-send="true" href="mailto:openstack@lists.openstack.org" target="_blank">openstack@lists.openstack.org</a>
Unsubscribe : <a moz-do-not-send="true" href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a>
</pre>
              </blockquote>
              <br>
            </div>
            <br>
            _______________________________________________<br>
            Mailing list: <a moz-do-not-send="true"
              href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack"
              rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
            Post to     : <a moz-do-not-send="true"
              href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
            Unsubscribe : <a moz-do-not-send="true"
              href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack"
              rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
            <br>
          </blockquote>
        </div>
        <br>
      </div>
    </blockquote>
    <br>
  </body>
</html>