Bug 811288

Summary: [as7] create RHQ resources for metrics of managed servers
Product: [Other] RHQ Project Reporter: Heiko W. Rupp <hrupp>
Component: PluginsAssignee: Stefan Negrea <snegrea>
Status: CLOSED UPSTREAM QA Contact: Mike Foley <mfoley>
Severity: unspecified Docs Contact:
Priority: urgent    
Version: 4.3CC: hrupp, jsanda, snegrea
Target Milestone: ---   
Target Release: JON 3.1.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of:
: 826074 (view as bug list) Environment:
Last Closed: 2013-09-05 16:27:53 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 824853, 825379    
Bug Blocks: 707223, 826074    

Description Heiko W. Rupp 2012-04-10 15:55:31 UTC
In domain mode, metrics are not obtained on the RHQ resources that are taken for configuration (at /profile=x level ) but at /host=y/server=x/ level).

We need to create a "shadow tree" that lists all the stuff, but only has metrics enabled (except for a hand full of stuff like "flush data source" operation.

The code should be mostly the same (except to determine the base path of /host=y/server=x  instead of /host=y/server-config=x , which is used to detect managed servers ), so this is a matter of creating RHQ resource types and only copying over the <metrics> but not e.g. <resource-config>

Comment 1 Stefan Negrea 2012-04-11 11:09:05 UTC
Here is an example of such update for the Transactions subsystem:

http://git.fedorahosted.org/git/?p=rhq/rhq.git;a=commit;h=fabb16c3db53fe24ca82af7577a0912f91b09b2d

Comment 2 Charles Crouch 2012-04-23 14:34:26 UTC
not a blocker for RHQ4.4

Comment 3 Charles Crouch 2012-05-18 10:23:54 UTC
Targetting this correctly

Comment 4 Stefan Negrea 2012-05-22 12:39:26 UTC
All subsystems have now been added to managed server type resource. The only one missing was the web subsystem, but it was resolved by bug 821878. 

Most of the subsystem can be found in three locations: standalone, profile and managed servers. For any subsystem, standalone is a superset of profile and managed server operations, metrics and properties; managed servers and profile have disjoint sets. With the current AS7 plugin descriptor, when a resource is discovered for managed servers or profile it will have available extra operations and/or properties. There is currently no solution for this due to plugin platform limitations (it was never designed for such complex inheritance model).

There are currently two subsystem with separate descriptors for the three types of server resources: transactions and data sources. The transactions subsystem was split into three descriptors as a proof of concept to see how feasible this solution would be. Unfortunately, following this pattern will lead to a three fold increase in the number of resource descriptors (three for each subsystem - one for each server type), it will slow down discovery, and it will make the resource descriptor unreadable. For data sources, the split was necessary because of the subsystem complexity (large number of properties and metrics). This is captured by bug 806240. 

A different (and more generic) solution will need to be implemented and applied for the rest of the subsystems.

In conclusion, metrics are correctly captured for managed servers' subsystems. However, extra operations and/or properties might be available through the RHQ interface that are not available on the actual AS7 subsystem.