Add a Notification Script custom BB

Hello

I wish I could have custom BB according to disk space notification scripts. We have a DBA who would like to be alerted to 80%, but we want to stay in bed until at least 90% or maybe 95%. Is this possible? Also, I wish I could take all the text in the alert, leaving only the host name and the problem. We have no need for the links of the acknowledgement of receipt sent to each alert.

Thank you

Brandon

Brandon,

You can generate custom notifications from the BB management servers that are running on UNIX/Linux platforms. Custom notification scripts can be found in $BBHOME/ext/pg on the BBServer and are called by the notification rules that start with 'ext-', followed by the name of script and a hyphen 'scriptname-', followed by an e-mail address. A notification for a custom script rule might look like:

*;; *;; *;*;*; [email protected]

You can read all about how to create a custom notification script by launching the BBServer online help documentation and search for 'Create a custom notification Script'.

Tags: Dell Tech

Similar Questions

  • Access notification bar and how to add my notification, an icon?

    Access notification bar and how to add my notification, an icon? I want to add custom when applying messages is on the bottom, would someone point me in the right direction?

    Checked all classes of QNX package, ill find anything nearby... I think it is Yes not available, I suppose that even on the events of keyboard on-screen II mentioned in my other post.

    The notification API is not yet available.

  • I chose an add-on, "No Script", and I can't remove it.

    I chose an add-on, "No Script", and I can't remove it.

    So if you do
    Tools > Addons > Extensions
    and select NoScript (click it) and click on delete or uninstall (I forget who) what happens?

    It should disappear after reboot

  • Member not found error when trying to add the generic script in the windows 2003 cluster

    I tried to add a generic script in the cluster windows 2003, I've already done a script with the extension .vbs, but when I tried to add the path of the script file its gives me an error indicating that the Member could not be found. Can you help me about this error?

    Hello ishuvbaidhya,

    Your question may be the best answer in the forum TechNet for Windows Server.

    Please transfer your question in forum Windows Server below.
    http://social.technet.Microsoft.com/forums/en-us/winserverManagement/threads

    They will be better able to help with your problem.

    Sincerely,

    Marilyn

  • RH11 Registry Script customized for event parameters are not saved

    I added a script customized to my 11 RoboHelp project. In the dialog box Save event I enter my function to call and select the PostWordDocUpdate event. I then click OK , and then save it in my project. If I close the project and re - open the event is registered is no longer so I need to perform this task, everytime I open the project. Is it possible to have the registration of the registered event?

    The dialog box that show you is only for the registration of a new event. In the Script Explorer module, click the icon of a calendar with a 1 on it. This will give you a list of all recorded events. Is your event included in this list?

  • Is it possible to add more than one customer in net agreement R12

    Hi Experts,

    Is it possible to add more than one customer in net agreement R12. Please suggest me as soon as possible.
    System does not show more than one customer during the creation of the compensation agreement.

    Kind regards
    Rahul

    Hi Raju,

    Currently, there is no functionality to import compensation via the interface conventions.
    There is a demand for improvement raised for the issue.
    Bug 7441955: NEED of API FOR CREATING programmatic from NETTING AGREEMENTS

    Reference-
    Interface or API required to load of AP/AR NET agreements [ID 1417380.1]

    Kind regards
    Ivruksha

  • Where can I change e-mail notification "new customer comment"?

    Currently I use the Module reviews the customer's Web site. When someone posts a comment, the customer receives an e-mail notification "New customer comment", so that the customer can moderate comments. The problem is that all the emails notification of workflow for my client's Web site are brand for his company and this e-mail notification "New customer comment" bears the mark and the address of my business and not his default "from". How can I change this?

    I must point out that in a conversation with the support, the person I chatted with that said that it could not be changed because it was an email notice aside server that could not be edited / brand by me. Given the presence of brandable Workflow notification emails, I have a hard time with this response.

    Thanks for the help!

    Tim

    Hi Tim,.

    It is correct that this mail system is not customizable at this stage and is already on our wish list.

    Please check our blog for monthly releases it's become available. - http://businesscatalyst.com/_blog/bc_blog

    Kind regards

    -Sidney

  • In an ActionScript file at which to add the new script

    Hello

    moved to AS3 forum

    I am a newbie with Flash Pro CS5 and have skills from beginner in AS3.

    I'm working on a lesson in e-Learning and already, with many previous help from other people and have a file of Action Script to use for an animation of white noise in a learning lesson.

    I need to make a few additions but am very familiar with the addition of script in a Script of Action file "package". Specifically, I would like to add a URL by checking in the file Script of action so that students do not consider that the animation Flash animation outside the lesson that contains educational resources and instructions for the use of animation.

    I would add the following script, but so far, I get error messages:

    if ((this.loaderInfo.url).indexOf("mywebsite. com") == -1)
                navigateToURL (new URLRequest ("http://mywebsite.com/default.html"));
                else
    //run the animation

    The current AS3 in the .as file is:

    package 
    {
        import flash.display.Bitmap;
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
        import flash.geom.Matrix;
        import flash.geom.Point;
        import flash.utils.getTimer;
        import flash.utils.Timer;
       
        public class Main extends Sprite
        {
            private var viewbmd:BitmapData;
            private var workbmd:BitmapData;
            private var scaleUp:Matrix;
            private var px:Vector.<uint>;
            private var timer:Timer;
            private var itsNoisy:Boolean;
           
            public function Main():void
            {
                if (stage) init();
                else addEventListener(Event.ADDED_TO_STAGE, init);
            }
           
            private function init(e:Event = null):void
            {
                removeEventListener(Event.ADDED_TO_STAGE, init);
                viewbmd = new BitmapData(stage.stageWidth, stage.stageHeight, false);
                var view:Bitmap = new Bitmap(viewbmd);
                addChild(view);
                workbmd = new BitmapData(viewbmd.width / 8, viewbmd.height / 8, false);
                scaleUp = new Matrix();
                scaleUp.scale(8, 8);
               
                itsNoisy = true;
               
                stage.addEventListener(MouseEvent.CLICK, manageNoise);
               
                initNoise();
                timer = new Timer(50);
                timer.addEventListener(TimerEvent.TIMER, onTick);
                timer.start();
            }
           
            private function initNoise():void {
                var array:Array = [];
                for (var i:uint = 0; i < 255; i++) {
                    array[i] = 0xffffff * (i % 2);
                }
                workbmd.noise(getTimer(), 0, 255, 7, true);
                workbmd.paletteMap(workbmd, workbmd.rect, new Point(0, 0), array, array, array);
                px = workbmd.getVector(workbmd.rect);
            }
           
            private function onTick(e:Event):void {
                flipSomePixels(160);
                viewbmd.draw(workbmd, scaleUp);
            }

            private function flipSomePixels(howMany:int):void {
                for (var i:int = 0; i < howMany; i++){
                var pxidx:int = Math.floor(Math.random()*px.length);
                    px[pxidx] = ~px[pxidx]; //bitwise NOT to flip all bits
                }
                workbmd.setVector(workbmd.rect, px);
            }
           
            private function manageNoise(e:MouseEvent):void {
                itsNoisy ? timer.removeEventListener(TimerEvent.TIMER, onTick) : timer.addEventListener(TimerEvent.TIMER, onTick);
                itsNoisy = !itsNoisy;
            }
           
           
           
        }
       
    }

    If someone can take a look and please let me know how to do to add extra script to check the URL (be specific since I am a beginner in the script):

    I have tried everything I can think and am stuck.

    Thanks in advance for your help.

    Kind regards

    saratogacoach

    in your constructor:

    If (this.loaderInfo.url.indexOf ("mywebsite.com") ==-1) {}
    navigateToURL (new URLRequest ("http://mywebsite.com/default.html"));
    } else {}
    addEventListener (Event.ADDED_TO_STAGE, init);
    }

  • How to add the field values custom calculation script

    Hello

    I have a calculation script:

    var bits = this.getField("DEXM").value;

    jib var = this.getField("acrofocus").value;

    var Misc = this.getField("acromisc").value;

    LVL var = this.getField("LVL").value;

    chk var = this.getField ("Check Box1.0") .isBoxChecked (0);

    {if(CHK==1)}

    Event.Value = (5 + jib + misc abi + (Math.floor (lvl/2))) ;}

    on the other

    {event.value = (jib + various + bits + (Math.floor (lvl/2))) ;}}

    I try to get the sum of the fields based on the value of a checkbox control. The if statement seems to work because the result does not change, but instead of adding up the results, it adds the numbers. Example: chk == 1, so add 5 + 0 + 0 + 2 + 1 and 8 display. But instead, it displays for event.value 521. All fields which events are digital with 0 decimal. What happens here? I expect that if they were formatted text fields, but they are not.

    Thank you all.

    You must explicitly convert the value of each field of a number. As an empty field values is a string type, the + operator gives you string concatenation instead of adding digital. You can review the first four lines of the script to:

    ABI = var + this.getField ("DEXM") .value;

    jib var = + this.getField ("acrofocus") .value;

    Misc = var + this.getField ("acromisc") .value;

    var = LVL + this.getField ("LVL") .value;

    and it should work properly.

  • Point to add to the script or Grep Style?

    Hello

    Is it possible to add a hightlight to a script?  Basically, what I want to do is highlight the text and the tricky part is that the text changes size depending on the size of the file, we are working on that.  I want to highlight automatically the "FOR PROFESSIONAL USE ONLY" the way that we do now is to underscore that in the menu options underscore: say my font size is 8, leading 9.6 (these will always change).

    Weight: = 9.6

    Shift: = - 8*.33

    Color = yellow

    It's the way we do now.  Can it be scripted or Grep style which will automatically do this for certain lines of text only?  And no matter the font size calculate what he needs to do if its 2pt, 10pt 100 PT etc... It will highlight the text specified correctly?

    I hope it's possible...

    Thank you

    The lower one is best.

    I remove a bug and also if not 'what' is provided to the point function culminating and there is no entry in find it which is the find panel of text and text is selected, then this text is highlighted.

    An idea in the script is that a shortcut can be applied to it and it will get its information from the Panel of text search.

    So for now to change the answer to this one

    // Highlight function by Trevor
    // http://creative-scripts.com
    // Custom Scripts for Adobe InDesign, Illustrator and a lot more
    // Beta Version 1
    // https://forums.adobe.com/message/8898663#8898663
    
    function highlight(what, color) {
        var range, s, doc;
        doc = app.properties.activeDocument;
        if (!doc) {
            return 'No Active Document';
        }
        s = app.selection && app.selection[0];
        range = (s && s.properties.underline !== undefined && s.characters.length) ? s : doc;
        app.doScript(f, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, 'Highlight Text');
    
        function f() {
            var finds, find, l, leading, pointSize, currentChangeProps;
            color = color || app.activeDocument.colors.itemByName('Yellow');
            // Store current find change text settings
            currentFindTextWhat = app.findTextPreferences.findWhat;
            currentChangeProps = app.changeTextPreferences.properties;
            what = what || currentFindTextWhat;
            if (what !== '') {
                // if no what is provided then the current entry in the find text panel will be used
                app.findTextPreferences.findWhat = what;
                app.changeTextPreferences.changeTo = '';
                app.changeTextPreferences.underline = true;
                app.changeTextPreferences.underlineColor = color;
                finds = range.findText();
                range.changeText();
                l = finds.length;
                while (l--) {
                    find = finds[l];
                    leading = find.leading;
                    pointSize = find.pointSize;
                    leading = pointSize * find.autoLeading / 100;
                    find.underlineWeight = leading + 'pt'; // This is presuming that font and leading size is set to points!
                    find.underlineOffset = (pointSize - leading) * 1.5; // The 1.5 might need tweaking but seems to work well
                }
                app.findTextPreferences.findWhat = currentFindTextWhat;
                app.changeTextPreferences.properties = currentChangeProps;
            } else if (range !== app.activeDocument) {
                leading = range.leading;
                pointSize = range.pointSize;
                leading = pointSize * range.autoLeading / 100;
                range.underline = true;
                range.underlineColor = color;
                range.underlineWeight = leading + 'pt'; // This is presuming that font and leading size is set to points!
                range.underlineOffset = (pointSize - leading) * 1.5; // The 1.5 might need tweaking but seems to work well
            }
        }
    }
    
    /***************************************************************************************************************************************
    ** If text is selected then the "highlighting" is only applied within the selected text                                              **
    ** Otherwise the "highlighting" is applied within the whole document                                                                **
    ** One could change this to apply to what ever is selected in the Find text document if one wanted to                                **
    ** To highlight the word(s) in the find text panel just use highlight(); or highlight(undefined, app.activeDocument.swatches[5]);    **
    ** One can use highlight('Foo'); to highlight "foo" and ignore what's in the find text panel                                        **
    ** The formating / styles etc. for the find are taken from the find panel                                                            **
    ** If one provides a swatch as the second argument highlight(undefined, app.activeDocument.swatches[5]); that swatch will be used    **
    ** otherwise yellow will be used                                                                                                    **
    ** If one provides a swatch as the second argument highlight(undefined, app.activeDocument.swatches[5]); that swatch will be used    **
    ** If text is selected and what argument is given and the find what in the find panel is empty then the selected text is highlighted **
    **************************************************************************************************************************************/
    
    highlight();
    
  • Notification of custom form

    Hi all

    Could someone point me to the documentation on customizing the notification form emails? I've considered using the form Send cloud component but I think that its too complex for my needs - I just need to add a logo and intro text.

    Thanks in advance,

    James

    Hi James,

    To customize your notifications brand navigate to Configuration > Notification form (in assets). Customization allows you to select a message header to be used as element of customization. These headers are managed assets > library > e-mail header

    Best,

    Brad

  • How to create an 'if' function in a calculation script custom?

    I need to take a simple "value is the sum of" and to ensure that if a field is less than 1 then the result of the formula is equal to "0".

    For example, here is a simple "SumOf": script

    Encourage Bns.26, time Bns.26, Spec Bns.26.

    Now converted to a custom calculation script:

    event.value = ((this.getField("Time Bns.26").value) + (this.getField("Incent Bns.26").value)) + (this.getField("Spec Bns.26").value);
    

    Where the time SNB is calculated by looking at another formula of field Hours26 using a special to calculate the premium.

    I would like to add something like an 'if' function to the script so that if the Hours26 field is less than 1 then the output of the script is equal to '0 '.

    I have already tried:

    var row = this.getField("Hours26").value

    var value = 0

    If (< 1 grade) {}

    value = 0

    }

    another (rank > 0) {}

    value = ((this.getField_("temps_Bns.26").value) + (this.getField "(Incent_Bns.26").value ")) + (this.getField ("Bns.26") .value Spec);

    }

    Event.value = value

    But the error: SyntaxError: missing; before statement 7 to line 8:

    Thanks for any help.

    Bruce

    Try this:

    var row = this.getField("Hours26").value;

    var value = 0;

    If (rank< 1)="">

    value = 0;

    } else {}

    value = ((this.getField_("temps_Bns.26").value) + (this.getField "(Incent_Bns.26").value ")) + (this.getField ("Bns.26") .value Spec);

    }

    Event.value = value;

  • Add on tool bar appears, but add ons, and new custom toolbar only appears when the Customize window open - toolbar does not name in list of the toolbar?

    I used view = > toolbars = > and ticked all the toolbars that I want to appear. BUT add it to the toolbar appears blank (i.e. toolbar but no add ons). AND the new custom toolbar that I created is not yet listed in the toolbars available for check or not. The only way I can get to show upward (but no function) is by clicking the Customize button. The toolbar remains open as long as the window is customize, and I can add/remove/rearrange icons, but not use any of their functions (for example. I added a new button to the custom toolbar window, but when I click of course nothing happens, because another window - window customize - is still open). I need a way to lock the toolbar, so I can access buttons to use it please!
    BTW use Windows 8 and just went from IE (and fearing that I'll have to downgrade...)
    TNX so much.

    In my opinion, which suggests that what you were actually doing was to customize the toolbar of the addons. Firefox is quite flexible and you can for example put the print icon on the toolbar of the modules or the bookmarks toolbar, and not only on a new designed user a custom toolbar.

    Many modules are designed by their developers do not make use of the toolbar of the add-on. Some add-ons appear on other menus. Collusion shows also in the Tools menu. Some use the page modules interface for results or settings.

  • How to add text to a custom character

    I am a novice at this but found where you can create a custom character after that right click fox mask and adds an image. Looks like you can add text too (it indicates the default text color), but I couldn't understand it. How can I do this? Also there is the online instructions to create a more robust custom character? Thank you very much!

    default test color to set the color of the text of the items menu and other user interface text when a dark image of the Persona is used.

  • How - add a menu item custom application BlackBerry

    I'm working on an application that creates a custom in various standard Blackberry applications menu item.
    On the platform of v4.2.1.72 8800 2.3.0.54 everything works fine all the Blackberry PIM application that the spectacle of my menu item mail application custom.

    When I load on platform 8330 v4.3.0.124 3.1.0.71 none of the custom menu to the top and on the OS of the Pearl Flip is v4.6.0.48 4.1.0.13 only e-mail and todo/tasks application view my custom menu others do not show my menu item.

    I tried to compile my app in the various versions of the JDE, but always the same question.

    Am I missing something for the new OS?  I followed the knowledge base article "how - to add a custom BlackBerry application menu item.

    I tested it on 8800 v4.5.0.52 platform 2.7.0.66 and Mail and Memo shows no custom menu item in Contacts, calendar and ToDo my custom menu appears.

    Thank you...

    BTW do you know if I can add menu browser and retrieve the content of the web page?

    No, this is not supported.

Maybe you are looking for

  • Windows 8.1 update

    Recently upgraded my HP Pavilion g7 for windows 8.1 now my sound does not work to get everything and I have a message saying: it is not at all sound card.  And yet he was there before the upgrade.  I did not define a recovery and when you purchased t

  • HP officejet 4630: lines on printing photo on hp officejet 4630

    HelloI have problem with printing on A4 paperWhen I print a picture I see photo onlineWhat is the solution?

  • E-mail blackBerry Z10 contacts

    How to make a group emailing? You can do it on the old bbs. "BOLD", storm, torch, etc..

  • Error code: "146" Installing Photoshop CC

    Hi allI try to install photoshop cc creative cloud upon 10 windows app, but it does not work.I always got the error error code: '146'Exit code: 146-------------------------------------- Summary ---------------------------------------fatal error 2, 0

  • (Redirected) Alienware Aurora R4 help

    My Aurora was bought in 2013, I have no guarantee, I need at least to know if anyone has had or knows what this problem is. I left my computer on at night, I did several times and never had any problems, but this time I was awakened by the high-speed