Skip to content

Commit

Permalink
refactor: update database size values (1GB -> 10GB) and database tabl…
Browse files Browse the repository at this point in the history
…e size values (100MB -> 1GB)
  • Loading branch information
aarongerig committed Jun 21, 2023
1 parent a088419 commit a9748bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/PimcoreMonitorBundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ private function buildChecksNode(): NodeDefinition
->end()
->integerNode('warning_threshold')
->info('The warning threshold for the hosting size in bytes.')
->defaultValue(48318382080)
->defaultValue(48318382080) # 45 GB
->isRequired()
->min(0)
->end()
->integerNode('critical_threshold')
->info('The critical threshold for the hosting size in bytes.')
->defaultValue(53687091200)
->defaultValue(53687091200) # 50 GB
->isRequired()
->min(0)
->end()
Expand All @@ -169,13 +169,13 @@ private function buildChecksNode(): NodeDefinition
->end()
->integerNode('warning_threshold')
->info('The warning threshold for the database size in bytes.')
->defaultValue(964689920)
->defaultValue(9878424780) # 9.2 GB
->isRequired()
->min(0)
->end()
->integerNode('critical_threshold')
->info('The critical threshold for the database size in bytes.')
->defaultValue(1073741824)
->defaultValue(10737418240) # 10 GB
->isRequired()
->min(0)
->end()
Expand All @@ -194,13 +194,13 @@ private function buildChecksNode(): NodeDefinition
->end()
->integerNode('warning_threshold')
->info('The warning threshold for all database tables size in bytes.')
->defaultValue(94371840)
->defaultValue(943718400) # 900 MB
->isRequired()
->min(0)
->end()
->integerNode('critical_threshold')
->info('The critical threshold for all database tables size in bytes.')
->defaultValue(104857600)
->defaultValue(1073741824) # 1 GB
->isRequired()
->min(0)
->end()
Expand Down

0 comments on commit a9748bf

Please sign in to comment.