Last change
on this file since 15296 was
12761,
checked in by dglaser, 9 years ago
|
#2429: Worked on the maintenance WebApp plugin:
- Space Usage Page: Displays the number of rows and allocated disk space for every database table
- Plugin Page: Shows unused plugins and provides functionality to delete all and specific plugins
- FactTask Page: Allows to aggregate all Job Tasks to a single task for a given job or jobs within an selected time period
- FactClientInfo Page: Allows to aggregate consecutive FactClientInfo entries with the same state and isallowedtocalculate flag
|
File size:
585 bytes
|
Line | |
---|
1 | (function () {
|
---|
2 | var module = appMaintenancePlugin.getAngularModule();
|
---|
3 | var apiUrl = 'api/Maintenance/SpaceUsage/';
|
---|
4 | module.factory('app.maintenance.spaceUsageService',
|
---|
5 | ['$resource', function ($resource) {
|
---|
6 | return $resource(apiUrl + ':action', {}, {
|
---|
7 | getHiveTableInformation: { method: 'GET', params: { action: 'GetHiveTableInformation' }, isArray: true },
|
---|
8 | getStatisticsTableInformation: { method: 'GET', params: { action: 'GetStatisticsTableInformation' }, isArray: true }
|
---|
9 | });
|
---|
10 | }]
|
---|
11 | );
|
---|
12 | })(); |
---|
Note: See
TracBrowser
for help on using the repository browser.