Heartbeat failure monitor - how to adjust for specific agent

hi guys,
in our environment we put the default heartbeat settings to 10 samples and 60 seconds intervals. 
i have a customer asking for different values on a specific machine hs is the owner of. i looked around and found this:
http://technet.microsoft.com/en-us/library/cc540380.aspx
acording to this article, i can change the interval for a specific agent but i can't do the same for the amount of samples (it says i can only control the amount of samples at the MS level). is that indeed correct? i mean, if i want all my environment to
have a value of 10 samples and 1 specific server to have the value of 5 samples, it can't be done?
thanks a lot,
Uri

Hi,
You could change the Global Heartbeat Settings,it change the heartbeat interval at the global level. Changes made in this procedure affect all the agents in the management group.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Time Characteristics: MTD  and Yesterday (How to adjust for different times

    Hi,
    I have this report which runs daily without any user input based on
    Current Calendar Day (SAP Exit)-1  [for column 1 on the report]
    and
    Current Calendar Month  [for column 2 on the report]
    If today I want to run this report for the Jan 20, 2006 how best can this be done without the need for writing ABAP code?
    i.e. I want on the report,  column 1 as Yesterday(Jan 19, 2006)
    and column 2 MTD (Jan 20, 2006)
    Any help?

    Dear Amanda,
    The restriction on key figures is done in a similar way as the restriction on characteristics.
    I guess that you have a characteristic 0CALDAY "Calendar Day", which is restricted by variable 0DAT. By this you have defined the subset of your InfoProvider, on which you want to report.
    Now, add the key figure which you want to restrict by a fixed date. Select "Edit" from the key figure's context menu and drag 0CALDAY upon the key figure. Restrict 0CALDAY by "January, 29th 2006". Add the same key figure a second time and restrict it by variable 0CALMONTH. Add the same key figure a third time and restrict it by the fixed time frame "January, 1 2006" to "January, 20th 2006".
    This should work as you intended. If you have more than one key figure which has to be restricted in this way, it could be more appropriate to create a second structure with the above mentioned restrictions instead of restricting the key figures directly.
    Greetings,
    Stefan

  • How to adjust for different numbers of components on a JTabbedPane

    Hi,
    I have five panels on a JTabbedPane. On one, I have six components, with each being an array of five (in other words, I have six "columns" of five "rows" each). On another pane, I have only two components (not arrays). I understand that the JTabbedPane will be as large as the largest panel. In my case, the panel with two components is as large as the one with the arrays and the two components take up the entire panel. I have tried to adjust this by using the createGlue(), createHorizontalStrut(), and createVerticalStrut() methods, but it is somewhat "ugly." I am also using the Box layout. Is there a better way to do this? I have included some of my code for reference; (sorry for its length; I am including the code for only two of the five panels). Any assistance would be appreciated.
    TIA,
    Jeff
    Here is the code that creates the panel with the "columns" and "rows":
    public MailGen construct()
        //- create the controls for the emocPanel
        JLabel emocActionLabel = new JLabel( "ACTION" );
        emocActionLabel.setHorizontalAlignment( JLabel.CENTER );
        JLabel emocOrgIdLabel = new JLabel( "ORGANIZATION" );
        emocOrgIdLabel.setHorizontalAlignment( JLabel.CENTER );
        JLabel emocAircraftLabel = new JLabel( "AIRCRAFT" );
        emocAircraftLabel.setHorizontalAlignment( JLabel.CENTER );
        JLabel emocCatLabel = new JLabel( "CAT." );
        emocCatLabel.setHorizontalAlignment( JLabel.CENTER );
        JLabel emocSequenceLabel = new JLabel( "SEQ. # STARTS WITH" );
        emocSequenceLabel.setHorizontalAlignment( JLabel.CENTER );
        JLabel emocQuantityLabel = new JLabel( "QTY OF EMAILS" );
        emocQuantityLabel.setHorizontalAlignment( JLabel.CENTER );
        JComboBox emocActionComboBox;
        JTextField emocOrgTextField;
        JTextField emocAircraftTextField;
        JComboBox emocCategoriesComboBox;
        JTextField emocSequenceTextField;
        JTextField emocQuantityTextField;
        //- create the boxes that will contain the EMOC labels and controls
        Box northEmocBox = new Box( BoxLayout.X_AXIS );
        Box centerEmocBox = new Box( BoxLayout.X_AXIS );
        Box southEmocBox = new Box( BoxLayout.X_AXIS );
        //- add the EMOC labels to the northEmocBox
        //- HERE I AM USING STRUTS
        northEmocBox = Box.createHorizontalBox();
        northEmocBox.add( Box.createHorizontalStrut( 15 ) );
        northEmocBox.add( emocActionLabel );
        northEmocBox.add( Box.createHorizontalStrut( 40 ) );
        northEmocBox.add( Box.createVerticalStrut( 25 ) );
        northEmocBox.add( emocOrgIdLabel );
        northEmocBox.add( Box.createHorizontalStrut( 40 ) );
        northEmocBox.add( Box.createVerticalStrut( 25 ) );
        northEmocBox.add( emocAircraftLabel );
        northEmocBox.add( Box.createHorizontalStrut( 40 ) );
        northEmocBox.add( Box.createVerticalStrut( 25 ) );
        northEmocBox.add( emocCatLabel );
        northEmocBox.add( Box.createHorizontalStrut( 5 ) );
        northEmocBox.add( Box.createVerticalStrut( 25 ) );
        northEmocBox.add( emocSequenceLabel );
        northEmocBox.add( Box.createHorizontalStrut( 15 ) );
        northEmocBox.add( Box.createVerticalStrut( 25 ) );
        northEmocBox.add( emocQuantityLabel );
        northEmocBox.add( Box.createHorizontalStrut( 15 ) );
        JPanel mainEmocPanel = new JPanel();
        mainEmocPanel.setLayout( new BoxLayout( mainEmocPanel, BoxLayout.Y_AXIS ) );
        mainEmocPanel.add( northEmocBox );
        //- add the EMOC controls to the centerEmocBox
        Object[][] emocFieldTable = new Object[5][6];
        for ( int index = 0; index < 5; index++ )
          centerEmocBox = Box.createHorizontalBox();
          emocFieldTable[index][0] = new JComboBox( actions );
          ( ( JComboBox ) emocFieldTable[index][0] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          emocFieldTable[index][1] = new JTextField( 3 );
          ( ( JTextField ) emocFieldTable[index][1] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          emocFieldTable[index][2] = new JTextField( 3 );
          ( ( JTextField ) emocFieldTable[index][2] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          emocFieldTable[index][3] = new JComboBox( categories );
          ( ( JComboBox ) emocFieldTable[index][3] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          emocFieldTable[index][4] = new JTextField( 3 );
          ( ( JTextField ) emocFieldTable[index][4] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          emocFieldTable[index][5] = new JTextField( 3 );
          ( ( JTextField ) emocFieldTable[index][5] ).setBorder(
          BorderFactory.createLineBorder( Color.BLACK, 1 ) );
          centerEmocBox.add( ( JComboBox )emocFieldTable[index][0] );
          centerEmocBox.add( ( JTextField )emocFieldTable[index][1] );
          centerEmocBox.add( ( JTextField )emocFieldTable[index][2] );
          centerEmocBox.add( ( JComboBox )emocFieldTable[index][3] );
          centerEmocBox.add( ( JTextField )emocFieldTable[index][4] );
          centerEmocBox.add( ( JTextField )emocFieldTable[index][5] );
          mainEmocPanel.add( centerEmocBox );
        //- create the SEND and CANCEL buttons
        JButton emocSendButton = new JButton( "SEND EMAIL" );
        emocSendButton.setBackground( Color.white );
        emocSendButton.setBorder( raisedBevel );
        JButton emocCancelButton = new JButton( "CANCEL" );
        emocCancelButton.setBackground( Color.white );
        emocCancelButton.setBorder( raisedBevel );
        //- add the buttons to the southEmocBox
        southEmocBox = Box.createHorizontalBox();
        southEmocBox.add( emocSendButton );
        southEmocBox.add( emocCancelButton );
        mainEmocPanel.add( southEmocBox );Here is the code that creates the panel with only two components:
    //- create the controls for preguardPanel
        JLabel preguardActionLabel = new JLabel( "SELECT ACTION" );
        preguardActionLabel.setHorizontalAlignment( JLabel.CENTER );
        preguardActionLabel.setPreferredSize( new Dimension( 100, 10 ) );
        JComboBox preguardActionComboBox = new JComboBox( actions );
        preguardActionComboBox.setBorder( BorderFactory.createLineBorder(
            Color.BLACK, 1 ) );
        preguardActionComboBox.setPreferredSize( new Dimension( 30, 10 ) );
        //- create the SEND and CANCEL buttons
        JButton preguardSendButton = new JButton( "SEND ACTION" );
        preguardSendButton.setBackground( Color.white );
        preguardSendButton.setBorder( raisedBevel );
        JButton preguardCancelButton = new JButton( "CANCEL" );
        preguardCancelButton.setBackground( Color.white );
        preguardCancelButton.setBorder( raisedBevel );
        //- create the boxes that will contain the preguard label and control
        Box northPreguardBox = new Box( BoxLayout.X_AXIS );
        Box centerPreguardBox = new Box( BoxLayout.X_AXIS );
        Box southPreguardBox = new Box( BoxLayout.X_AXIS );
        //- add the preguard label to the northPreguardBox
        northPreguardBox = Box.createHorizontalBox();
        northPreguardBox.add( Box.createGlue() );
        //northPreguardBox.add( Box.createGlue() );
        northPreguardBox.add( preguardActionLabel );
        //northPreguardBox.add( Box.createGlue() );
        northPreguardBox.add( Box.createGlue() );
        JPanel mainPreguardPanel = new JPanel();
        mainPreguardPanel.setLayout( new BoxLayout(
            mainPreguardPanel, BoxLayout.Y_AXIS ) );
        mainPreguardPanel.add( northPreguardBox );
        //- add the preguard control to the centerPreguardBox
        //- HERE IS THE "GLUE" I AM USING
        centerPreguardBox = Box.createHorizontalBox();
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( preguardActionComboBox );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        centerPreguardBox.add( Box.createGlue() );
        mainPreguardPanel.add( centerPreguardBox );
        //- add the buttons to the southPreguardBox
        southPreguardBox = Box.createHorizontalBox();
        southPreguardBox.add( Box.createHorizontalStrut( 10 ) );
        southPreguardBox.add( preguardSendButton );
        southPreguardBox.add( preguardCancelButton );
        mainPreguardPanel.add( southPreguardBox );Here, I am adding the panels to the JTabbedPane:
    //- add the panels to the tabbed pane
       JTabbedPane pane = new JTabbedPane();
       pane.add( "EMOC", mainEmocPanel );
       pane.add( "PREGUARD", mainPreguardPanel );
    }

    This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
    You can find the Commercial Designjet board here:
    http://h30499.www3.hp.com/t5/Printers-Designjet-Large-Format/bd-p/bsc-414
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • How to query for specific filename

    I'm using a modified folder_action script to ftp files up to a server once they're finished being created.
    Is there a way to query for a specific filename to be present in the folder prior to passing it to the actual ftp function? The catch is that the filename will always be in the format of <mmddyy>.mp4. During the process that is creating the actual file to be ftp'd, various temp files are created prior. I'd like to ensure that only the final version of the mp4 is acted upon, which is the one with the mmddyy as the filename.

    The folder action already has the folder and the item paths passed to it, so you can get the individual file name by using something like:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on adding folder items to this_folder after receiving added_items
    repeat with AnItem in added_items
    if text (count (this_folder as text)) thru -1 of (AnItem as text) is "<mmddyy>.mp4" then
    -- whatever
    end if
    end repeat
    end adding folder items to
    </pre>
    There are also temporary folders that the system provides, so you shouldn't have to use the folder with the attached action at all:
    get path to temporary items
    get path to temporary items from user domain

  • How to SEARCH for specific file TYPES, e.g. PDF?

    If I know the title has in it "resume" and I know it's a PDF, how do you search for all PDF files that have the word "resume" in the title?
    AND..
    How would you search all PDF files that had the word "supervisor" inside the document?
    Thanks

    Command F should do it. Once the search window appears, you should see a drop down box headed kind and next to it one headed any. Select PDF from the any one. Click the plus button, and another field will appear and you can see again more drop down boxes. You just want to set these up so you end up with name and contains, you can then add your text to the remaining field.
    Also see [this|http://apps.tempel.org/FindAnyFile/index.html]
    Message was edited by: gumsie

  • How to search for specific match from an array?

    Hi Mike,
    Thanks for the reply.
    I am reading a position of switches whether ON/OFF. It is nothing but the digital inputs status from the field. I am Indexing that array, and connect it to the LED indicators to show the relevant status. Also I want to raise an alarm  once, for the ON switches.  By using Search 1D array, I got the first TRUE match index from the array. But if I want to know all the occurrences of ON condition (TRUE from an array of booleans) from an array of switches. How to do that?
    Hope this clarifies.
    Thanks
    Kousy

    I almost missed this message because you started a new thread.
    In any case, the code altenbach posted will give you an array of the indexes that are set to true. So it sounds like that is at least part of what you want. The alarm you mention, is that one "master" alarm if any of them are true, or is it a separate alarm for each bit?
    If it is one "master" alarm for all of them the logic menu has a function for ORing all the elements in a boolean array. Also when you say "alarm" what is the nature of this alarm? A dialog box? a flashing light (real or on the applications's front panel)? message in a status display?
    The attached code shows one possible direction by adding onto altenbachs code the ability to accumulate a single error message based on the states of individual bits. (BTW: The other alternative that you might see would be to pass the array into a loop and use a case to append a message of the bit is true. The advantage of the one in the combined VI is that the loop only iterates for the number of true bits +1. Where as the other approach would have to look at all the bits one at a time.)
    In a sense this is why I asked for clarification because there are a lot of things you can do when parsing an array like this.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    TRUEadditions.vi ‏31 KB

  • Recording picking up click/clack shoe background noise - how to adjust for voice only.

    Hi, and thank you for taking the time to help me.
    Today, as a beginner to Adobe Audition, I wanted to record a video with backup audio for my students.
    So, I plugged my wireless mic into the computer, opened adobe audition, selected new, and then hit record. Nice & easy.
    However, when I played it back, the sound of my shoe going clip/clop on the floorboards as I was walking around, was picked up (and very well too!).
    How do I change the settings so the software/microphone only pics up my voice and not other noises?
    Thanks,
    Jane.

    JB5366 wrote:
    Hi There, it's a lapel microphone, clicked on the collar of my shirt.
    I've used other audio programs before and this hasn't happened. I started using audition as a recommendation from a friend as he said it would produce a cleaner sound.
    Thank you for your time.
    Audition has many merits and many abilities but "producing a cleaner sound" isn't one of them.  The sound you get is determined by a mix of your microphone and the audio interface used to input this into your computer.  Audition simply records the data handed to it by your mic and interface with no additional processing whatsoever.
    Most clip on lav mics have an omni pickup pattern which means they pick up equally from every direction.  This makes them fairly susceptible to room acoustics--a harder floor or barer wall could be part of your culprit.
    At the risk of sounding facetious...and I don't mean to...have you considered soft soled shoes?

  • How to adjust for distorted colors printing on HP 8500 A909g.

    In regard to HP All In One 8500 A909g.  Photos look great on computer screen but print with an overall red hue.  I can eventually adjust the color to get a good print but it wastes a lot of ink getting there.  Why doesn't my printer print the colors on the screen? And is there a way to permanently adjust the color?  Computer is running Vista.

    Thanks for your time, I've included links to 2 HP documents that may help you with the issue you are having with print quality.
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01980797&tmp_task=solveCategory&cc=us&dlc=en&la​...
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01624436&tmp_task=solveCategory&cc=us&dlc=en&la​...
    Dave M.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution.
    I am an HP employee.

  • Linksys EA3500 Signal Problems: How to Adjust for Maximum Stability

    I have ATT DSL service; 6Mbps down, .5 Mbps up.  That is the maximum offered where I live.  I have  no phone service on the line and use VOIP.  I have discovered that the QOS degrades to awful at random times.  Awful means .79 down, .24 up, with ping of 430 ms, Jitter at 100, and Packet Loss unmeasurable.   Unfortunately, and I say this because ATT won't do anything about it, if I perform cold start on my network, after an initial somewhat unstable period of a couple of minutes, the network stabilizes at a good QOS.  The VOIP goes from unintelligible to working fine.  
    I've set my EA3500 QOS settings so that the VOIP unit (OOMA) has top priority.  Other streaming units (Blue Ray/Amazon Prime and Dish) come next, then internet.  The streaming units are not a factor in this because they are not on when the VOIP problems occur.  (Although, when the units are on, we can see the signal dipping below 1 Mbps at times and the video freezes while the stream catches up.)
    What functionality can I manipulate on the EA3500 to maximize stability and monitor the signal in so that I can present ATT with an indisputable trace of poor signal data.  

    I do not think there’s something we can do on the router since obviously the issue is with the modem through your internet provider. I suggest, you run a speed test from the modem at least 5 times; observe and record the speed you’re getting in every test. Inform then your ISP about it. They could also perhaps troubleshoot the modem to make sure it is working properly. Everything should be good from their end considering the VOIP service is supported by it and not by the router.

  • Help! How to export for specific resolution?

    What is the best resolution to export photos for Facebook/Blog/High Res?

    Resolution is set in the Export dialog under the Image Sizing section.
    For Facebook/Blog and any other screen display usage, it does not matter what you set the resolution value to as the file returned will be the identical in pixel dimensions - regardless.
    For applications where you print to physical media (paper, Tshirt, coffee mug, etc) 300 ppi is a good starting value.  Large format stuff with farther viewing distances can be less.

  • Spotlight: How to search for specific file types?

    Hi. I'm looking for bookmarks that may contain a particular word. Is there a way to filter my spotlight (or finder) searches just for a particular file type? I know you can sort results by file type, but it's rather just filter in the first place...

    Command F should do it. Once the search window appears, you should see a drop down box headed kind and next to it one headed any. Select PDF from the any one. Click the plus button, and another field will appear and you can see again more drop down boxes. You just want to set these up so you end up with name and contains, you can then add your text to the remaining field.
    Also see [this|http://apps.tempel.org/FindAnyFile/index.html]
    Message was edited by: gumsie

  • Unsure about how to formulate for specific problem.

    I'm tyring to get the amounts from Transactions::D2:C21 to be reflected in the Personal Reoccurring::C2-C6 based on the "Type" in Trasactions::C2:C21. So if I have two groceries entries in Transactins, I want only those to add together into the Groceries "spent" in Personal Reoccuring.

    SUMIF is your friend here:
    The formula in C2, copied down, is:
          =SUMIF(TRANSACTIONS::C,A2,TRANSACTIONS::D)
    Also see the 'Actual' column in the Personal Budget template.
    SG

  • How to deployment for AV agent installation on RAC enviroment?

    before the AV agent installation on RAC , the agentname and agentuser should be added to av server first. only one agentname/agentuser for the two nodes, or one agentname/agentuser for each node ? also ,the agentusr and the avsrcusr account only one account for two node ?
    1. how to tell the agentname and agentuser account before agent installation ? more details are better.
    2.with the 9i RAC DB at AIX, need install CRS first?
    3. I setup an Linux cluster enviroment ,and a windows cluseter envirement(no CRS installed). but when install the agent , if the agentname set to hostname of the virtual IP ,the error is : ERR0R1: The av server is expecting the agent with given name to be installed in another machine. if input the agentname (which agenthost is node1) , it contiued,but no "node select GUI" comes up (according to the the GUI of Morgan's Library at: http://www.psoug.org/reference/audit_vault.html
    ),it executes a single agent installation on node1.
    I don't know it's wrong configuration of my linux or windows cluster enviroment , or there are some import steps missed ?
    it's urgent ,thanks!!
    --the node's hostname and  IP :
    #public
    192.168.0.11 node1
    192.168.0.12 node2
    #private
    192.168.8.11 node1-private
    192.168.8.12 node2-private
    #vip
    192.168.0.99 node
    agentname: agentwin with agenthost node
    agentname : agentwin01 with agentost node1
    Message was edited by:
    user634185

    It is not urgent ... no one is drowning, your house is not on fire, so please don't abuse this forum. Thank you.
    Audit Vault is auditing one database ... multiple instances. First create the RAC cluster the way you normally would. Then go to any single cluster node and install the agent. The agent installation will recognize that it is a cluster and ask you whether you want to install on one or all nodes and let you choose which ones.
    There is no need to perform separate installations on each node.

  • Heartbeat Failure - CallManager Offline

    Hello,
    I'm having a rather unusual issue with Cisco Agent Desktop that I hope somone could give me some insight on.  First let me give you a little background.  All users in the company, over 300, were on Windows XP SP3 using CAD 4.5.7.4.  It was then decided to upgrade everyone to Windows 7.  We knew CAD 4.5.7.4 would not be compatible with Windows 7.  So intead of upgrading to most current version of CAD it was decided to try and get CAD 4.5.7.4 to work with Windows 7.  The only way we were able to do this was install Windows XP Mode to every machine that needed CAD and use it from within the virtual machine.
    This for the most part has worked great.  Except some users, around 30-40, are getting a "Critical Error" message randomly with CAD that will log them out.  When I look at the CAD logs I'm finding the same error, "Heartbeat Failure, CallManager Offline."  What would be causing this heartbeat failure and how can I stop it?
    I know this is outdated software, but we are unable to upgrade.  If you have any ideas on what might be causing this please reply back.  Thanks.
    Phillip

    bump

  • Adjust for Brightness Corrections the Camera made

    I have some video clips where I am trying to make two types of corrections.
    I am using Warp Stabilize to correct for movement in the way I handled the camera during the filming process.  Warp Stabilize seems to do a fair job of fixing this, I can accept this for now.
    Then I am trying to repair/ adjust where the camera made some auto brightness corrections when the focus was made/moved to a darker object in the scene.  It causes intermittent bright and dark lighting in the clip.
    I realize both of these situations are my own fault, but I am still trying to learn how to adjust for them.
    I tried using the Effect /Color Correction / Brightness and Contrast tool because this seems logical, but the results are not  smooth.  I set a key-frame on both sides of the problem point on the clip so I can stop/ lock in the effect from making changes to an area  that is good/ acceptable.  Then I move to the center point between the two key-frames I am holding as correct and make a brightness adjustment (creating a new key-frame).  This sounds like it should compensate, but I end up with even more intermittent flashes of bright and dark.
    Can anyone tell me if this logic is correct and is this the correct tool I should be using to make this sort of adjustment to a clip   The adjustments are not  smooth as I would expect from key-frame.  And it appears the key-frames I set to hold what is correct are being auto adjusted.
    I think there should be a metering tool  that I could use to measure/meter Brightness (ie; 1-100) throughout the clip so when I see the brightness is  varying away form my desire meter reading I could make an adjustment at that point where brightness varies to bring it back to the metered level I want to hold
    Thanks for your help in advance

    I've never used the Brightness/ Contrast adjustment. Curves and Levels work much better. Beyond that - if the aperture change is immediate, then split the clip on the respective point and correct each segment separately. otherwise it seems you do not quite understand how AE keyframes work. You don't "encircle" a problem, you just animate the respective parameters. In your example the only keyframe that actually holds anything useful is the one in the middle, the other two hold neutral default values. It's inevitable that you get additional brightness jumps because you are telling AE to revert to those defaults on the third keyframe, but the exposure is still wrong. Simply makes no sense. The rule of thumb is always to use as few keys as possible, especially on something as tricky as color corrections.
    Mylenium

Maybe you are looking for

  • Error 404 -- Not Found, when a Servlet is invoked from browser

    Obviously, I have not been able to configure my WebLogic Server 5.1.0 to run           even the simplest servlet.           I painstakenly went through all the steps that are listed in the WebLogic           Server 5.1.0 documentation on the Web to e

  • Safari 6 dropdown menu for switching search engines gone? Nooo!

    Safari 6 no longer has dropdown menu for switching quickly between search engines? I know how to set/change the default search engine but I like/use some features on Google and others on Bing.  I do research all day - this stinks!  (They got rid of t

  • Flex builder configuration

    Hell all, I am new bie and i want to know how to configure the flex builder 3.

  • Output of show policy-map

    Hi experts, below is the output of show policy-map. PE3-AMS-EU# show policy-map int serial 3/0/10:0 o Serial3/0/10:0 Service-policy output: rao-pe-out Class-map: pe-management-output (match-any) 0 packets, 0 bytes 30 second offered rate 0 bps, drop r

  • Define Default Values for Doc type..

    Hi All. I set a default value of "ME21N" TO "S21" at Define Default Values for Document Type. But, default document type is not "S21" but "NB" in ME21N ( system ver. 710) Let me know how to correct it.. Thank you in advance. regards.. nam