0

I've migrated my openstack lab from kolla-ansible and have deployed 3 ceilometer and one gnocchi units using juju. And this is my ceilometer pipeline.yaml file:

sources:
  - name: meter_source
    meters:
     - "*"
     sinks:
      - meter_sink
sinks:
  - name: meter_sink
    publishers:
     - gnocchi://
     - https://example.com/post
export pipeline=$(cat ./pipeline.yaml)
juju config ceilometer pipeline-yaml=$pipeline
juju config ceilometer enable-all-pollsters=true
juju config ceilometer-agent enable-all-pollsters=true
juju run-action ceilometer/leader ceilometer-upgrade

everything seems ok but there's no my pipeline configurations inside ceilometer machines when accessing to /etc/ceilometer inside them (using juju ssh command). And the publisher endpoint won't receive any data. Is there anything which I've forgot to do?

0 Answers0