Skip to Main Content

Enterprise Manager

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Different Day/Night Thresholds in EM12c?

Don SeilerApr 8 2014 — edited Apr 14 2014

Hello,

I'm looking to have different thresholds for certain metrics depending on day/night (or peak/off-peak) hours in EM12c (12.1.0.3). I'm not having any luck clicking around the UI or googling for how this can be done within the EM12c UI framework. Is anyone doing anything like this?

An example is that the Average Active Sessions critical threshold can be 120 during the day, but overnight we're OK with it going up to 300.

Don.

Comments

794342
import javax.swing.*;
class Testing
{
  public static void main(String[] args)
  {
    String message = "Hello World";
    JOptionPane.showMessageDialog(null,message);
    JOptionPane.showMessageDialog(null,new JLabel(message,JLabel.CENTER));
    JOptionPane.showMessageDialog(null,new JLabel(message,JLabel.CENTER),"",-1);
    System.exit(0);
  }
}
843806
String msg = "<html><body>The aim of the game is to get the highest number from all three rounds.<br>"+
"A dice is lost at the end of each round.<br>"+
"You are able to roll the dices agian at the end of each round but only ones at the end of each round.<br>"+
"<center>Click on 'Ok' button to start the game.</center></body></html>";
JOptionPane.showMessageDialog(null,msg);

Regards
vivek
843806
String msg = "<html><body>The aim of the game is to get the highest number from all three rounds.<br>"+
"A dice is lost at the end of each round.<br>"+
"You are able to roll the dices agian at the end of each round but only ones at the end of each round.<br>"+
"<center>Click on 'Ok' button to start the game.</center></body></html>";
JOptionPane.showMessageDialog(null,msg);


this must work

regards
tigerkumar

Edited by: tigerkumar on Oct 4, 2007 9:55 AM
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on May 12 2014
Added on Apr 8 2014
3 comments
1,715 views