getWidget

Back to index

Summary

Retrieves a dashboard widget by name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
dashboardName
Stringrequired
Unique name of the dashboard within the project.
widgetName
Stringrequired
The name of the dashboard widget.

Usage

Perl

$cmdr->getWidget( "test-projectName", # projectName "test-dashboardName", # dashboardName "test-widgetName" # widgetName );

ectool

ectool getWidget \ "test-projectName" `# projectName` \ "test-dashboardName" `# dashboardName` \ "test-widgetName" `# widgetName`

Examples

Perl

$cmdr->getWidget("Default", "Weekly Overview", "All Pipeline Runs");

ectool

ectool getWidget Default "Weekly Overview" "All Pipeline Runs"