Author: ghenzler
Date: Mon Jan 7 07:33:19 2019
New Revision: 1850615
URL: http://svn.apache.org/viewvc?rev=1850615&view=rev
Log:
FELIX-6012 improved config property descriptions for includes/excludes
Modified:
felix/trunk/healthcheck/generalchecks/src/main/java/org/apache/felix/hc/generalchecks/BundlesStartedCheck.java
Modified:
felix/trunk/healthcheck/generalchecks/src/main/java/org/apache/felix/hc/generalchecks/BundlesStartedCheck.java
URL:
http://svn.apache.org/viewvc/felix/trunk/healthcheck/generalchecks/src/main/java/org/apache/felix/hc/generalchecks/BundlesStartedCheck.java?rev=1850615&r1=1850614&r2=1850615&view=diff
==============================================================================
---
felix/trunk/healthcheck/generalchecks/src/main/java/org/apache/felix/hc/generalchecks/BundlesStartedCheck.java
(original)
+++
felix/trunk/healthcheck/generalchecks/src/main/java/org/apache/felix/hc/generalchecks/BundlesStartedCheck.java
Mon Jan 7 07:33:19 2019
@@ -54,10 +54,10 @@ public class BundlesStartedCheck impleme
@AttributeDefinition(name = "Tags", description = "List of tags for
this health check, used to select subsets of health checks for execution e.g.
by a composite health check.")
String[] hc_tags() default {};
- @AttributeDefinition(name = "Includes RegEx", description = "RegEx to
select all relevant bundles for this check")
+ @AttributeDefinition(name = "Includes RegEx", description = "RegEx to
select all relevant bundles for this check. The RegEx is matched against the
symbolic name of the bundle.")
String includesRegex() default ".*";
- @AttributeDefinition(name = "Excludes RegEx", description = "Optional
RegEx to exclude bundles from this check")
+ @AttributeDefinition(name = "Excludes RegEx", description = "Optional
RegEx to exclude bundles from this check (matched against symbolic name).
Allows to exclude specific bundles from selected set as produced by 'Includes
RegEx'.")
String excludesRegex() default "";
@AttributeDefinition(name = "CRITICAL for inactive bundles",
description = "By default inactive bundles produce warnings, if this is set to
true inactive bundles produce a CRITICAL result")