Comment 6 for bug 1584190

Revision history for this message
Illia Polliul (ipolliul) wrote :

Hi, looks like problem is here:

root@node-3:~# cat /etc/ceilometer/pipeline.yaml
---
sources:
    - name: meter_source
      interval: 600
      meters:
            - "*"
            - "!volume.create.*"
            - "!volume.delete.*"
            - "!volume.update.*"
            - "!volume.resize.*"
            - "!volume.attach.*"
            - "!volume.detach.*"
            - "!snapshot.create.*"
            - "!snapshot.delete.*"
            - "!identity.authenticate.*"
            - "!storage.api.request"
      sinks:
          - meter_sink
sinks:
    - name: meter_sink
      transformers:
      publishers:
          - notifier://

So polling interval on computes is 10 minutes, while heat template expects some meters to change during 1 minute.

https://github.com/openstack/fuel-ostf/blob/stable/mitaka/fuel_health/etc/heat_autoscaling_neutron.yaml#L55

Need to adjust either one or another.