Browse Community
Help
Log In
Responses(3)
Solutions(0)
kfosburg
1 Rookie
•
18 Posts
0
September 22nd, 2011 07:00
The short answer is Yes, but it's not trivial. I will attempt to post a series over the next week on a step by step process...
Karl
Christian4
30 Posts
September 22nd, 2011 21:00
The answer is:
interface System_SC_Nexus_Performance:ICF_Setting{
/* some thresholds */
refine stored Type = "THRESHOLD";
}
Regards,
Christian
Hemulll
2 Intern
138 Posts
September 23rd, 2011 05:00
Example of threshold and polling setting
interface Bras_Dhcp_PPPoE_Polling_Setting : ICF_PollingSetting {
refine stored DisplayName = "description";
refine stored RuleSet = "xSettings/xBras_Dhcp_PPPoE-setting.asl";
refine stored TargetClass = "ICIM_UnitaryComputerSystem";
};
//Threshold Settings
interface Bras_Dhcp_PPPoE_Setting : ICF_Setting {
refine stored DisplayName = "Monitoring of Bras sessions";
attribute unsigned [0 .. 128000] HighThreshold
"High threshold"
= 1000;
attribute unsigned [0 .. 128000] LowThreshold
"Low threshold"
= 10;
attribute unsigned [0 .. 128000] DeltaThreshold
"Delta threshold"
= 100;
Dell Support Resources
View All
Top
kfosburg
1 Rookie
•
18 Posts
0
September 22nd, 2011 07:00
The short answer is Yes, but it's not trivial. I will attempt to post a series over the next week on a step by step process...
Karl
Christian4
30 Posts
0
September 22nd, 2011 21:00
The answer is:
interface System_SC_Nexus_Performance:ICF_Setting{
/* some thresholds */
refine stored Type = "THRESHOLD";
}
Regards,
Christian
Hemulll
2 Intern
•
138 Posts
0
September 23rd, 2011 05:00
Example of threshold and polling setting
interface Bras_Dhcp_PPPoE_Polling_Setting : ICF_PollingSetting {
refine stored DisplayName = "description";
refine stored RuleSet = "xSettings/xBras_Dhcp_PPPoE-setting.asl";
refine stored TargetClass = "ICIM_UnitaryComputerSystem";
};
//Threshold Settings
interface Bras_Dhcp_PPPoE_Setting : ICF_Setting {
refine stored DisplayName = "Monitoring of Bras sessions";
refine stored TargetClass = "ICIM_UnitaryComputerSystem";
attribute unsigned [0 .. 128000] HighThreshold
"High threshold"
= 1000;
attribute unsigned [0 .. 128000] LowThreshold
"Low threshold"
= 10;
attribute unsigned [0 .. 128000] DeltaThreshold
"Delta threshold"
= 100;
};