Comment 1 for bug 1781619

Revision history for this message
Kevin Carter (kevin-carter) wrote :

Once https://review.openstack.org/#/c/573511/ is merged this should be resolved. Users wanting to enable this for neutron can do so with a config_template override:

``` yaml

profiler_overrides: &os_profiler
  profiler:
    enabled: true
    trace_sqlalchemy: true
    hmac_keys: "UNIQUE_HMACKEY" # This needs to be set consistently throughout the deployment
    connection_string: "Elasticsearch://{{ internal_lb_vip_address }}:9201"
    es_doc_type: "notification"
    es_scroll_time: "2m"
    es_scroll_size: "10000"
    filter_error_trace: "false"

neutron_neutron_conf_overrides: *os_profiler

```