Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update description of include and exclude job lists in the global plugin settings #377

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@
</f:entry>
<f:validateButton title="${%Test Hostname}" progress="${%Testing...}" method="testHostname" with="hostname" checkMethod="post" />

<f:entry title="Excluded Jobs" description="A comma-separated list of job names that should not monitored." >
<f:entry title="Excluded Jobs" description="A comma-separated list of job names that should not be monitored. The list can contain regular expressions (please keep in mind that regular expressions are different from glob patterns)." >
<f:textarea field="blacklist" optional="true" default="${blacklist}" />
</f:entry>

<f:entry title="Included Jobs" description="A list of job names that should be monitored. An empty included permits all jobs not excluded." >
<f:entry title="Included Jobs" description="A comma-separated list of job names that should be monitored. An empty included permits all jobs not excluded. The list can contain regular expressions (please keep in mind that regular expressions are different from glob patterns)." >
<f:textarea field="whitelist" optional="true" default="${whitelist}" />
</f:entry>

Expand Down
Loading