summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports
Commit message (Collapse)AuthorAgeFilesLines
* Fix compatibility with Django 1.6.Simon Ruderich2013-11-111-4/+6
|
* add old schema to migrationTim Laszlo2013-01-291-0/+5
|
* Reporting: Merge new reporting dataTim Laszlo2012-10-0830-2486/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* various pylint fixesChris St. Pierre2012-09-251-3/+2
|
* run pylint for errors on almost everything, full runs on some selected stuffChris St. Pierre2012-09-256-9/+12
|
* Web Reports: Remove unnecessary comparison in config_items/item.htmlTim Laszlo2012-09-211-1/+1
| | | | The != operator isn't really necessary for unpruned. Also breaks compatability with older versions of django.
* Version bump to 1.3.0pre1Sol Jerome2012-08-311-1/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* renamed Bcfg2Py3k to CompatChris St. Pierre2012-08-272-2/+2
|
* lots of various py3k fixesChris St. Pierre2012-08-211-3/+2
|
* div tag ended in the wrong blockTim Laszlo2012-08-211-1/+1
|
* Reports: quiet debugging info from importscript.pyChris St. Pierre2012-08-161-1/+1
|
* Version bump to 1.2.3Sol Jerome2012-08-151-1/+1
| | | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> Conflicts: misc/bcfg2.spec setup.py
* removed print statementsChris St. Pierre2012-08-151-1/+1
|
* Merge reporting configuration with main server configurationTim Laszlo2012-08-0710-818/+5
| | | | | | Admin/Syncdb: Use SchemaUpdater Move the schema update routines from reports to Bcfg2.Server Move Reports.settings into Bcfg2.settings
* Metadata and other improvements:Chris St. Pierre2012-07-301-1/+1
| | | | | | | | | | * Added support for Client tag in groups.xml * Added support for nested Group tags in groups.xml * Added support for negated groups in groups.xml * Added DatabaseBacked plugin mixin to easily allow plugins to connect to a database specified in global database settings in bcfg2.conf * Added DBMetadata plugin that uses relational DB to store client records instead of writing to clients.xml
* DBStats: Load entries in bulkTim Laszlo2012-06-151-4/+13
| | | | | Improve load time by fetching all entries at once instead of individually.
* DBStats: remove vlevel from _fetch_reasonTim Laszlo2012-06-151-2/+1
|
* DBStats: add unique contraints for entriesTim Laszlo2012-06-151-0/+3
| | | | In the Entries model, name and kind should be unique.
* DBStats: make imports transactionalTim Laszlo2012-06-151-6/+11
| | | | | | For databases that support transactions, this will prevent incomplete intractions from being loaded into the database. Add logger to _fetch_reason.
* web_reports: add links to entry viewTim Laszlo2012-06-141-3/+3
|
* web_reports: add entry linksTim Laszlo2012-06-142-2/+2
|
* web_reports: Add entry viewTim Laszlo2012-06-143-0/+57
|
* web_reports: Make reasons clickable in entry listingsTim Laszlo2012-06-143-2/+4
|
* DBStats: Start loading good entries into the dbTim Laszlo2012-06-143-29/+51
|
* web_reports: add a helper function for in_bulkTim Laszlo2012-06-141-6/+27
| | | | | | Some databases will raise a DatabaseError if the in set is too long. If a DatabaseError is raised, fetch all objects and create the set we need using python.
* web_reports: group filtering for <type> element viewsTim Laszlo2012-06-143-4/+7
|
* web_reports: remove :Tim Laszlo2012-06-071-1/+1
|
* web_reports: Improve element listsTim Laszlo2012-06-062-24/+34
| | | | | Faster page loads. More details in the listings.
* web_reports: speed up client detail viewTim Laszlo2012-06-063-63/+29
|
* Reports: add group relationshipsTim Laszlo2012-06-061-0/+3
|
* web_reports: add group filtering logic to grid and detailed listTim Laszlo2012-06-063-3/+31
|
* web_reports: add filters to the grid viewTim Laszlo2012-06-062-5/+5
|
* web_reports: filter by groupTim Laszlo2012-06-062-5/+29
|
* web_reports: show filter list when no records are returnedTim Laszlo2012-06-061-1/+1
|
* web_reports: Show client profile, groups, and bundles in detailed viewTim Laszlo2012-06-061-0/+35
|
* DBStats: Save interaction metadataTim Laszlo2012-06-062-1/+80
| | | | Start saving group and bundle membership for interactions
* Reports: remove unused functionTim Laszlo2012-06-061-10/+0
|
* PY3K: Refactor input codeSol Jerome2012-06-051-8/+2
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* web_reports: Trap KeyError from duplicate metricsTim Laszlo2012-06-051-1/+5
| | | | | | In the unlikely event two interactions point to the same Metric, we could get a key error if they aren't in the same interaction set.
* web_reports: added a view to show the most common configuration problemsTim Laszlo2012-06-056-2/+119
|
* Replace UpdaterError with UpdaterRoutineExceptionTim Laszlo2012-06-051-1/+1
|
* importscript: Fix client added message and log levelTim Laszlo2012-06-051-3/+3
|
* DBStats: Remove clients.xml from the import processTim Laszlo2012-06-051-20/+5
|
* DBStats: Stop building a ConfigStatistics xmlTim Laszlo2012-06-051-84/+82
| | | | | | Created a load_stat method in impot script. Pass the Statistic data to load_stat instead of building a ConfigStatistics/Node XML root.
* DBStats: drop database table for pingTim Laszlo2012-06-042-1/+23
|
* DBStats: Remove ping dataTim Laszlo2012-06-041-16/+0
|
* DBStats: Stop loading ping dataTim Laszlo2012-06-041-26/+0
|
* web_reports: Remove ping data from summary viewTim Laszlo2012-06-041-11/+1
|
* web_reports: display_summary executes query twiceTim Laszlo2012-06-041-3/+3
|
* web_reports: select_related for all render_history_view callsTim Laszlo2012-06-041-1/+2
|