Skip to content

Commit 93197e3

Browse files
committed
docs(grassfish-players,grassfish-screens): document case-insensitive regex matching for --box-id and --custom-id
1 parent 4395542 commit 93197e3

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

check-plugins/grassfish-players/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ options:
4747
--api-version API_VERSION
4848
Grassfish API Version. Default: 1.12
4949
--box-id BOX_ID Filter by specific box IDs. Supports Python Regular
50-
Expressions (regex).
50+
Expressions (regex, case-insensitive).
5151
--box-state {activated,deleted,new,reserved,undefined}
5252
Filter by specific box state. Repeating.
5353
--custom-id CUSTOM_ID
5454
Filter by specific custom IDs. Supports Python Regular
55-
Expressions (regex).
55+
Expressions (regex, case-insensitive).
5656
-H, --hostname HOSTNAME
5757
Grassfish hostname. Default: None
5858
--insecure This option explicitly allows to perform "insecure"

check-plugins/grassfish-players/grassfish-players

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def parse_args():
7979

8080
parser.add_argument(
8181
'--box-id',
82-
help='Filter by specific box IDs. Supports Python Regular Expressions (regex).',
82+
help='Filter by specific box IDs. Supports Python Regular Expressions (regex, case-insensitive).',
8383
dest='BOX_ID',
8484
)
8585

@@ -99,7 +99,7 @@ def parse_args():
9999

100100
parser.add_argument(
101101
'--custom-id',
102-
help='Filter by specific custom IDs. Supports Python Regular Expressions (regex).',
102+
help='Filter by specific custom IDs. Supports Python Regular Expressions (regex, case-insensitive).',
103103
dest='CUSTOM_ID',
104104
)
105105

check-plugins/grassfish-players/icingaweb2-module-director/grassfish-players.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@
344344
"3": {
345345
"varname": "grassfish_players_box_id",
346346
"caption": "Grassfish Players: Box ID",
347-
"description": "Filter by specific box IDs. Supports Python Regular Expressions (regex).",
347+
"description": "Filter by specific box IDs. Supports Python Regular Expressions (regex, case-insensitive).",
348348
"datatype": "Icinga\\Module\\Director\\DataType\\DataTypeString",
349349
"format": null,
350350
"settings": {
@@ -368,7 +368,7 @@
368368
"5": {
369369
"varname": "grassfish_players_custom_id",
370370
"caption": "Grassfish Players: Custom ID",
371-
"description": "Filter by specific custom IDs. Supports Python Regular Expressions (regex).",
371+
"description": "Filter by specific custom IDs. Supports Python Regular Expressions (regex, case-insensitive).",
372372
"datatype": "Icinga\\Module\\Director\\DataType\\DataTypeString",
373373
"format": null,
374374
"settings": {

check-plugins/grassfish-screens/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ options:
4747
--api-version API_VERSION
4848
Grassfish API Version. Default: 1.12
4949
--box-id BOX_ID Filter by specific box IDs. Supports Python Regular
50-
Expressions (regex).
50+
Expressions (regex, case-insensitive).
5151
--box-state {activated,deleted,new,reserved,undefined}
5252
Filter by specific box state. Repeating.
5353
--cache-expire CACHE_EXPIRE
5454
The amount of time after which the cached data
5555
expires, in hours. Default: 8
5656
--custom-id CUSTOM_ID
5757
Filter by specific custom IDs. Supports Python Regular
58-
Expressions (regex).
58+
Expressions (regex, case-insensitive).
5959
-H, --hostname HOSTNAME
6060
Grassfish hostname. Default: None
6161
--insecure This option explicitly allows to perform "insecure"

check-plugins/grassfish-screens/grassfish-screens

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def parse_args():
8080

8181
parser.add_argument(
8282
'--box-id',
83-
help='Filter by specific box IDs. Supports Python Regular Expressions (regex).',
83+
help='Filter by specific box IDs. Supports Python Regular Expressions (regex, case-insensitive).',
8484
dest='BOX_ID',
8585
)
8686

@@ -109,7 +109,7 @@ def parse_args():
109109

110110
parser.add_argument(
111111
'--custom-id',
112-
help='Filter by specific custom IDs. Supports Python Regular Expressions (regex).',
112+
help='Filter by specific custom IDs. Supports Python Regular Expressions (regex, case-insensitive).',
113113
dest='CUSTOM_ID',
114114
)
115115

check-plugins/grassfish-screens/icingaweb2-module-director/grassfish-screens.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
"3": {
354354
"varname": "grassfish_screens_box_id",
355355
"caption": "Grassfish Screens: Box ID",
356-
"description": "Filter by specific box IDs. Supports Python Regular Expressions (regex).",
356+
"description": "Filter by specific box IDs. Supports Python Regular Expressions (regex, case-insensitive).",
357357
"datatype": "Icinga\\Module\\Director\\DataType\\DataTypeString",
358358
"format": null,
359359
"settings": {
@@ -388,7 +388,7 @@
388388
"6": {
389389
"varname": "grassfish_screens_custom_id",
390390
"caption": "Grassfish Screens: Custom ID",
391-
"description": "Filter by specific custom IDs. Supports Python Regular Expressions (regex).",
391+
"description": "Filter by specific custom IDs. Supports Python Regular Expressions (regex, case-insensitive).",
392392
"datatype": "Icinga\\Module\\Director\\DataType\\DataTypeString",
393393
"format": null,
394394
"settings": {

0 commit comments

Comments
 (0)