summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting
Commit message (Collapse)AuthorAgeFilesLines
...
* validate storage backend with DirectStore reporting TransportChris St. Pierre2012-11-261-0/+3
|
* Check if linkentry is not noneTim Laszlo2012-11-071-1/+1
|
* Version bump to 1.3.0pre2v1.3.0pre2Sol Jerome2012-10-301-1/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Reporting: Only display profile if presentTim Laszlo2012-10-291-0/+2
|
* Reporting: Allow interactions without a profileTim Laszlo2012-10-293-2/+161
|
* replace modes_problem with correct modes_problemTim Laszlo2012-10-251-1/+1
|
* Reduce verbose sync output from bcfg2-report-collectorTim Laszlo2012-10-191-1/+3
|
* Switch redis transport to use pubsub()Tim Laszlo2012-10-191-3/+5
|
* Properly handle a client with no interations in GetExtraTim Laszlo2012-10-191-0/+3
|
* add query string to filter removalTim Laszlo2012-10-181-3/+8
|
* fix lockfile imports for pyhton-daemon >= 1.6Tim Laszlo2012-10-181-1/+2
|
* ty daemon.pidlock before pidlockfileTim Laszlo2012-10-181-1/+7
|
* Switch from lockfile to PIDLockFileTim Laszlo2012-10-181-3/+9
|
* Append query string to erver/state filters so sort parameters followTim Laszlo2012-10-181-0/+3
|
* Sort links were referencing the old schemaTim Laszlo2012-10-181-4/+2
|
* add group filter for common problemsTim Laszlo2012-10-173-2/+11
|
* add missing server, group viewsTim Laszlo2012-10-171-1/+3
|
* add a higher timeout for caching certain objectsTim Laszlo2012-10-171-1/+1
|
* Revert "migrate_db: skip db lookup since all should be known"Tim Laszlo2012-10-171-6/+3
| | | | | | | | | This caused data duplication on migration. This reverts commit 9707ee8e4c495133f329000d3e5b89d8b84e5998. Conflicts: src/lib/Bcfg2/Reporting/models.py
* expand hash_key to a large intTim Laszlo2012-10-172-1/+181
|
* Reporting: add an experimental redis transportTim Laszlo2012-10-161-0/+194
|
* ignore unsupported create_unique for sqliteTim Laszlo2012-10-161-4/+7
|
* Reporting: use mode instead of permsTim Laszlo2012-10-164-13/+181
|
* Reporting: Use the new mode attributeTim Laszlo2012-10-151-2/+3
|
* POSIX: Switch from perms to modeSol Jerome2012-10-151-2/+2
| | | | | | | | Bcfg2 has traditionally used the 'perms' attribute to specify the file mode for POSIX entries. Switching to a 'mode' attribute will allow us to be more consistent with other tools as well as POSIX itself. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* log imports when DirectStore is usedTim Laszlo2012-10-151-0/+5
|
* bcfg2-reports: updated to new schemaTim Laszlo2012-10-151-0/+9
|
* migrate_db: skip db lookup since all should be knownTim Laszlo2012-10-151-3/+6
|
* Reporting: Make transport configurableTim Laszlo2012-10-102-1/+11
| | | | | | | 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
|
* Add prune routinesTim Laszlo2012-10-091-1/+18
|
* Admin.Reports: stop calling __call__ in parent classTim Laszlo2012-10-081-230/+0
|
* Remove reference to InteractionMetadataTim Laszlo2012-10-081-1/+1
|
* Reporting: add 500 handler backTim Laszlo2012-10-081-0/+2
|
* Reporting: Fix size optionTim Laszlo2012-10-081-1/+1
|
* Reporting: Merge new reporting dataTim Laszlo2012-10-0837-0/+4084
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