summaryrefslogtreecommitdiff
path: root/requirements.txt
diff options
context:
space:
mode:
authorPetr Malik <pmalik@tesora.com>2016-02-28 16:21:00 -0500
committerPetr Malik <pmalik@tesora.com>2016-08-14 17:45:02 +0000
commite586638991720011007c09b124d221a6b282da6b (patch)
treeba18e1717f67816c43b90489331f124af2793e59 /requirements.txt
parent54c4a31b3d2461f87d868d5ab68dd5d087f2f850 (diff)
downloadtrove-e586638991720011007c09b124d221a6b282da6b.tar.gz
Add log retrieval to Cassandra
Add system.log retrieval. The Cassandra's system/general log is located in the cassandra log directory and is by default called system.log. Cassandra 2.1 and higher uses 'SLF4J' with 'logback' backend. Logging properties can be configured at runtime via the nodetool utility (setlogginglevel) and/or persisted in 'logback.xml' configuration file. Logging can be enabled on per-module/class basis with configurable verbosity levels. The logging in Trove is configured globally (on the root level) - i.e. for all application modules. A new configuration property 'system_log_level' was added to control the log verbosity. It allows the operator define the log level that will be set when the logging is enabled on an instance. All logging will be turned off when disabled. Note: The log level is not changed during prepare. The instances will be provisioned with the default logging setting (INFO level). Note: An XML codec was added to allow parsing XML files into/from Python dicts. Change-Id: Ia57587bf557771ea6d7f00e2fe9d674789b98559 Depends-On: I4a088b7a541c35a6c32d6985727bad65ff491815 Depends-On: I254b81b45e44aeda3049865bee76cd9075312761 Closes-Bug: 1550557
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index f6ba8195..ff86fec8 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -44,3 +44,4 @@ osprofiler>=1.3.0 # Apache-2.0
oslo.log>=1.14.0 # Apache-2.0
oslo.db>=4.10.0 # Apache-2.0
enum34;python_version=='2.7' or python_version=='2.6' or python_version=='3.3' # BSD
+xmltodict>=0.10.1 # MIT