<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi - I have been using ceilometer in devstack for a while, and what
    I used to be able to do is modify pipeline.yaml to set the polling
    interval for "name: cpu_source" to 60, and then publish it using
    udp. The diff for the changes are below for the Liberty
    pipeline.yaml:<br>
    <blockquote><small><i>stack@vlab:/etc/ceilometer$ diff
          pipeline.yaml.bak pipeline.yaml</i><i><br>
        </i><i>10c10</i><i><br>
        </i><i><       interval: 600</i><i><br>
        </i><i>---</i><i><br>
        </i><i>>       interval: 60</i><i><br>
        </i><i>53c53</i><i><br>
        </i><i><           - notifier://</i><i><br>
        </i><i>---</i><i><br>
        </i><i>>           - udp://127.0.0.1:4952</i><i><br>
        </i></small></blockquote>
    The desired and net effect of these changes in Juno was the I would
    get cpu_util samples every minute, but cpu meters every 10 minute,
    in the Juno release.<br>
    <br>
    These same changes in Liberty are not having the same effect. I get
    cpu, cpu_util, and cpu.delta every 1 minute. Why are cpu samples
    arriving every minute?<br>
    <br>
    <blockquote><i><small>stack@lab:~$ ceilometer sample-list -m cpu |
          head</small></i><i><br>
      </i><i><small>+--------------------------------------+------+------------+------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| Resource ID                          | Name |
          Type       | Volume     | Unit | Timestamp                  |</small></i><i><br>
      </i><i><small>+--------------------------------------+------+------------+------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0746e+11 | ns   | 2016-04-08T13:48:17.380281 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0739e+11 | ns   | 2016-04-08T13:47:17.357667 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.073e+11  | ns   | 2016-04-08T13:46:17.414188 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0723e+11 | ns   | 2016-04-08T13:45:17.356869 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0715e+11 | ns   | 2016-04-08T13:44:17.357771 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0707e+11 | ns   | 2016-04-08T13:43:17.349820 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu  |
          cumulative | 1.0699e+11 | ns   | 2016-04-08T13:42:17.348110 |</small></i><i><br>
      </i><i><br>
      </i><i><small>stack@lab:~$ ceilometer sample-list -m cpu.delta |
          head</small></i><i><br>
      </i><i><small>+--------------------------------------+-----------+-------+-------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| Resource ID                          | Name      |
          Type  | Volume      | Unit | Timestamp                  |</small></i><i><br>
      </i><i><small>+--------------------------------------+-----------+-------+-------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 70000000.0  | ns   | 2016-04-08T13:48:17.380281 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 90000000.0  | ns   | 2016-04-08T13:47:17.357667 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 70000000.0  | ns   | 2016-04-08T13:46:17.414188 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 80000000.0  | ns   | 2016-04-08T13:45:17.356869 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 80000000.0  | ns   | 2016-04-08T13:44:17.357771 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 80000000.0  | ns   | 2016-04-08T13:43:17.349820 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu.delta |
          delta | 80000000.0  | ns   | 2016-04-08T13:42:17.348110 |</small></i><i><br>
      </i><i><br>
      </i><i><small>stack@lab:~$ ceilometer sample-list -m cpu_util |
          head</small></i><i><br>
      </i><i><small>+--------------------------------------+----------+-------+----------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| Resource ID                          | Name     |
          Type  | Volume         | Unit | Timestamp                  |</small></i><i><br>
      </i><i><small>+--------------------------------------+----------+-------+----------------+------+----------------------------+</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.116622711567 | %    | 2016-04-08T13:48:17.380281 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.150141435735 | %    | 2016-04-08T13:47:17.357667 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.116555319427 | %    | 2016-04-08T13:46:17.414188 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.133335337808 | %    | 2016-04-08T13:45:17.356869 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.133315666786 | %    | 2016-04-08T13:44:17.357771 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.133329533442 | %    | 2016-04-08T13:43:17.349820 |</small></i><i><br>
      </i><i><small>| 6c4d5e4c-066e-4e98-b728-caaa66d8bf3b | cpu_util |
          gauge | 0.133329311232 | %    | 2016-04-08T13:42:17.348110 |</small></i><br>
    </blockquote>
    Is this a ceilometer bug, or change? Is my understanding of the
    desired effect incorrect?<br>
    Thanks,<br>
    Reza<br>
  </body>
</html>