
|
If you were logged in you would be able to see more operations.
|
|
|
Hyperic HQ
Created: 02/Apr/08 12:55 PM
Updated: 21/Apr/08 01:16 PM
|
|
| Component/s: |
Plugins
|
| Affects Version/s: |
3.2.1
|
| Fix Version/s: |
3.2.3
|
|
|
Environment:
|
Redhat Enterprise 5 (64 bit)
|
|
| Verify By: |
Kashyap Parikh
|
| 3.0 Category: |
Plugins
|
| Last comment: |
27 weeks, 1 day ago
|
| Resolution Date: |
03/Apr/08 02:21 PM
|
|
Sendmail plugin breaks with large queue
Somewhere around 7,000 messages the plugin started reporting "0". Seems that "<hqagent>/pdk/work/scripts/sendmail/hq-sendmail-stat" is the problem.
Lines 19 & 24 use the "find" command which cannot handle large directory sizes:
For example,
find *
-bash: /usr/bin/find: Argument list too long
Workaround\fix
change line 19 & 24 to:
messfiles=`ls | wc -w`
|
|
Description
|
Sendmail plugin breaks with large queue
Somewhere around 7,000 messages the plugin started reporting "0". Seems that "<hqagent>/pdk/work/scripts/sendmail/hq-sendmail-stat" is the problem.
Lines 19 & 24 use the "find" command which cannot handle large directory sizes:
For example,
find *
-bash: /usr/bin/find: Argument list too long
Workaround\fix
change line 19 & 24 to:
messfiles=`ls | wc -w` |
Show » |
|