summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/Transport
Commit message (Collapse)AuthorAgeFilesLines
* Reporting: Add back TransportError importSol Jerome2013-04-241-1/+2
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Reporting: better error messages when transport fails to loadChris St. Pierre2013-04-241-9/+8
|
* LocalFilesystem: Use binary data formatSol Jerome2013-04-081-2/+2
| | | | | | | The pickle class returns 'bytes' objects in python 3 instead of 'str' objects which were returned in python2. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* fixed various debugging bitsChris St. Pierre2013-03-211-2/+4
|
* made Reporting plugin and transports debuggable, respond to ↵Chris St. Pierre2012-11-273-15/+33
| | | | set_debug/toggle_debug RMI
* create data directory for reporting TransportsChris St. Pierre2012-11-261-2/+14
|
* validate storage backend with DirectStore reporting TransportChris St. Pierre2012-11-261-0/+3
|
* Switch redis transport to use pubsub()Tim Laszlo2012-10-191-3/+5
|
* Reporting: add an experimental redis transportTim Laszlo2012-10-161-0/+194
|
* log imports when DirectStore is usedTim Laszlo2012-10-151-0/+5
|
* Reporting: Make transport configurableTim Laszlo2012-10-101-1/+4
| | | | | | | Add routines to the setup to handle alternate transports. Make the default for new installs LocalFilesystem and existing installs DirectStore. Raise an error is DirectStore is used when loading bcfg-report-collector
* Reporting: all Transports use subdirectories of Reporting plugin directory ↵Chris St. Pierre2012-10-091-1/+1
| | | | instead of creating their own plugin directories
* Reporting: added DirectStore transport that stores interactions directly in ↵Chris St. Pierre2012-10-092-1/+119
| | | | the storage backend
* Reporting: move pickling from base transport to LocalFilesystem transportChris St. Pierre2012-10-092-13/+20
|
* Reporting: Merge new reporting dataTim Laszlo2012-10-083-0/+240
Move reporting data to a new schema Use south for django migrations Add bcfg2-report-collector daemon Conflicts: doc/development/index.txt doc/server/plugins/connectors/properties.txt doc/server/plugins/generators/packages.txt setup.py src/lib/Bcfg2/Client/Tools/SELinux.py src/lib/Bcfg2/Compat.py src/lib/Bcfg2/Encryption.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Init.py src/lib/Bcfg2/Server/Admin/Reports.py src/lib/Bcfg2/Server/BuiltinCore.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/FileMonitor/Inotify.py src/lib/Bcfg2/Server/Plugin/base.py src/lib/Bcfg2/Server/Plugin/interfaces.py src/lib/Bcfg2/Server/Plugins/Cfg/CfgEncryptedGenerator.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/Ohai.py src/lib/Bcfg2/Server/Plugins/Packages/Collection.py src/lib/Bcfg2/Server/Plugins/Packages/Source.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py src/lib/Bcfg2/Server/Plugins/Probes.py src/lib/Bcfg2/Server/Plugins/Properties.py src/lib/Bcfg2/Server/Reports/backends.py src/lib/Bcfg2/Server/Reports/manage.py src/lib/Bcfg2/Server/Reports/nisauth.py src/lib/Bcfg2/settings.py src/sbin/bcfg2-crypt src/sbin/bcfg2-yum-helper testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestSEModules.py