VMware Cloud Community
laullon
VMware Employee
VMware Employee

HQU Plugin

I'm trying develop a HQU plugin, but I can't attach it to Masthead Attach Point.

This is my Plugin.groovy
--------------------------------------
import org.hyperic.hq.hqu.rendit.HQUPlugin

class Plugin extends HQUPlugin {
Plugin() {
addView(description: 'WLS Thread Dump',
attachType: 'masthead',
controller: WlsLiveController,
action: 'index',
category: 'tracker')
}
}
--------------------------------------

I've tried with different values in 'category' and 'attachType' props.
Reply
0 Kudos
2 Replies
admin
Immortal
Immortal

Have you re-deployed your plugin?

Are you using the plugin_mon plugin detacher as well?

-- Jon



On Feb 11, 2008, at 2:12 PM, German Laullon wrote:

> I'm trying develop a HQU plugin, but I can't attach it to Masthead
> Attach Point.
>
> This is my Plugin.groovy
> --------------------------------------
> import org.hyperic.hq.hqu.rendit.HQUPlugin
>
> class Plugin extends HQUPlugin {
> Plugin() {
> addView(description: 'WLS Thread Dump',
> attachType: 'masthead',
> controller: WlsLiveController,
> action: 'index',
> category: 'tracker')
> }
> }
> --------------------------------------
>
> I've tried with different values in 'category' and 'attachType' props.


Reply
0 Kudos
laullon
VMware Employee
VMware Employee

Have you re-deployed your plugin?

Yes, i've used ant to do this.


Are you using the plugin_mon plugin detacher as well?

How it work?
http://support.hyperic.com/confluence/display/hypcomm/HQU+Plugin+Mon
Reply
0 Kudos