cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
635
Views
5
Helpful
0
Comments
Orf Gelbrich
Cisco Employee
Cisco Employee

Task Name

Read a file on UCSD and append to SR log in color

Description
Prerequisites

vCenter

CategoryWorkflow
ComponentsUCSD 6.6
User Inputs
Output

Instructions for Regular Workflow Use:

  1. Download the attached .ZIP file below to your computer. *Remember the location of the saved file on your computer.
  2. Unzip the file on your computer. Should end up with a .WFD file.
  3. Log in to UCS Director as a user that has "system-admin" privileges.
  4. Navigate to "Policies-->Orchestration" and click on "Import".
  5. Click "Browse" and navigate to the location on your computer where the .WFDX file resides. Choose the .WFDX file and click "Open".
  6. Click "Upload" and then "OK" once the file upload is completed. Then click "Next".
  7. Click the "Select" button next to "Import Workflows". Click the "Check All" button to check all checkboxes and then the "Select" button.
  8. Click "Submit".
  9. A new folder should appear in "Policies-->Orchestration" that contains the imported workflow. You will now need to update the included tasks with information about the specific environment.

Workflow

Screen Shot 2018-07-18 at 8.36.52 AM.png

Inputs:

Screen Shot 2018-07-18 at 8.37.03 AM.png

Screen Shot 2018-07-18 at 8.37.08 AM.png

Log:

Screen Shot 2018-07-18 at 8.38.00 AM.png

Custom task:


importPackage(java.io);

importPackage(java.util);

importPackage(com.cloupia.model.cEvent.notify);

importPackage(com.cloupia.model.cIM);

importPackage(com.cloupia.lib.util.mail);

importPackage(com.cloupia.fw.objstore);


var filenamewithpath = input.FileNameWithPath ;

var COLOR = input.Color;


function writeMessage(MESSAGE,COLOR){

  if (COLOR == 1) {

    logger.addInfo(MESSAGE);

  }

  if (COLOR == 2) {

    logger.addWarning(MESSAGE);

  }

  if (COLOR == 3) {

    logger.addError(MESSAGE);

  }

}


try{

     var fileReader = new FileReader(filenamewithpath);

   }catch(e){

   logger.addError("Unable to find file and path..."+e);

ctxt.setFailed("Task got failed");

        ctxt.exit();

   }


var br = new BufferedReader(fileReader);

var tokens;

var UCSDLoopCounter = new ArrayList();


writeMessage("-------------------------------------------------------",COLOR);

writeMessage("File: "+filenamewithpath,COLOR);

writeMessage("-------------------------------------------------------",COLOR);


while(true){

       var line = br.readLine();

       if(line == null)break;

       writeMessage("Line" + line,COLOR);

}

br.close();

writeMessage("-------------------------------------------------------",COLOR);



Here isa SSH task variation on this:

importPackage(com.cloupia.lib.connector.account);

importPackage(com.cloupia.model.cIM);

importPackage(com.cloupia.lib.util.ssh);

importPackage(com.cloupia.lib.connector.account.credential);

executeSSH();

function executeSSH(){

    var dateCommand ="date >1.log";

    var logCommand ="cat 1.log";

        var client = null;

        try {

          

            // We are passing  to inputs as ip address,portno,username,password.

                client = new SSHClient("###", "##", "###", "####");

                    client.connect();

               logger.addInfo("Executing command: " + dateCommand);

                    var o = client.executeCommand(dateCommand);

                    var logView =client.executeCommand(logCommand);

               logger.addInfo("Log Output: " + logView.getStdOut());

               logger.addInfo("Command Result: " + String(o.getExitCode()));

                    return o;

         }catch( e) {

               ctxt.setFailed("SSH Execution Failed.");

                     throw e;

         }finally {

                      if(client != null) {

                                client.disconnect();

                                client = null;

                      }

         }

}


Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links