getWidgetFilterOverrides

Back to index

Summary

Retrieves all widget filter overrides for the widget.
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
Name of the widget within the dashboard this widget filter override is scoped to.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->getWidgetFilterOverrides("Default", "ExecDashboard", "MyWidget");

ectool

ectool getWidgetFilterOverrides Default ExecDashboard MyWidget