This patch implements devstack plugin for logging api. The logging api service base on logging api spec [1]. [1] https://specs.openstack.org/openstack/neutron-specs/specs/pike/logging-API-for-security-group-rules.html Change-Id: Ib86535ad24319cb0e10a48df50651264201673c3 Depends-On: Ib8668dd25ee7c5000a6dafcc7db3dbc33ad190be Partially-implements: blueprint security-group-logging Related-Bug: #1468366changes/16/396116/36
parent
081870b1a5
commit
b27164f0a8
@ -0,0 +1,12 @@
|
||||
function configure_log_service_plugin {
|
||||
neutron_service_plugin_class_add "log"
|
||||
}
|
||||
|
||||
function configure_log_extension {
|
||||
plugin_agent_add_l2_agent_extension "log"
|
||||
}
|
||||
|
||||
function configure_log {
|
||||
configure_log_service_plugin
|
||||
configure_log_extension
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
enable_service neutron-log
|
||||
|
||||
[[post-config|/$NEUTRON_CORE_PLUGIN_CONF]]
|
||||
|
||||
[network_log]
|
||||
local_output_log_base = /tmp/test_log.log
|
Loading…
Reference in new issue