getReportingFilter

Back to index

Summary

Retrieves a reporting filter 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.
reportingFilterName
Stringrequired
The name of the reporting filter.
widgetName
Stringoptional
The name of the widget this reporting filter is scoped to.

Usage

Perl

$cmdr->getReportingFilter( "test-projectName", # projectName "test-dashboardName", # dashboardName "test-reportingFilterName" # reportingFilterName # optionals );

ectool

ectool getReportingFilter \ "test-projectName" `# projectName` \ "test-dashboardName" `# dashboardName` \ "test-reportingFilterName" `# reportingFilterName` \ # optionals

Examples

Perl

$cmdr->getReportingFilter("Default", "ExecDashboard", "MonthlyRollup");

ectool

ectool getReportingFilter "Default", "ExecDashboard", "MonthlyRollup"