Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
4fc4f4c3
Commit
4fc4f4c3
authored
Apr 26, 2002
by
Toby Dickenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
collector 366; added rate limiting to the 'copy to zlog' option, to prevent flooding
parent
6607df2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
2 deletions
+28
-2
lib/python/Products/SiteErrorLog/SiteErrorLog.py
lib/python/Products/SiteErrorLog/SiteErrorLog.py
+28
-2
No files found.
lib/python/Products/SiteErrorLog/SiteErrorLog.py
View file @
4fc4f4c3
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
##############################################################################
##############################################################################
"""Site error log module.
"""Site error log module.
$Id: SiteErrorLog.py,v 1.
5 2002/04/15 10:52:30
htrd Exp $
$Id: SiteErrorLog.py,v 1.
6 2002/04/26 16:17:21
htrd Exp $
"""
"""
import
os
import
os
...
@@ -35,6 +35,24 @@ from zLOG import LOG, ERROR
...
@@ -35,6 +35,24 @@ from zLOG import LOG, ERROR
use_error_logging
=
'Log Site Errors'
use_error_logging
=
'Log Site Errors'
log_to_event_log
=
'Log to the Event Log'
log_to_event_log
=
'Log to the Event Log'
# We want to restrict the rate at which errors are sent to the Event Log
# because we know that these errors can be generated quick enough to
# flood some zLOG backends. zLOG is used to notify someone of a problem,
# not to record every instance.
# This dictionary maps exception name to a value which encodes when we
# can next send the error with that name into the event log. This dictionary
# is shared between threads and instances. Concurrent access will not
# do much harm.
_rate_restrict_pool
=
{}
# The number of seconds that must elapse on average between sending two
# exceptions of the same name into the the Event Log. one per minute.
_rate_restrict_period
=
60
# The number of exceptions to allow in a burst before the above limit
# kicks in. We allow five exceptions, before limiting them to one per
# minute.
_rate_restrict_burst
=
5
_www
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'www'
)
_www
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'www'
)
...
@@ -168,10 +186,18 @@ class SiteErrorLog (SimpleItem):
...
@@ -168,10 +186,18 @@ class SiteErrorLog (SimpleItem):
error
=
sys
.
exc_info
())
error
=
sys
.
exc_info
())
else
:
else
:
if
self
.
copy_to_zlog
:
if
self
.
copy_to_zlog
:
LOG
(
'SiteError'
,
ERROR
,
str
(
url
),
error
=
info
)
self
.
_do_copy_to_zlog
(
now
,
strtype
,
str
(
url
),
info
)
finally
:
finally
:
info
=
None
info
=
None
def
_do_copy_to_zlog
(
self
,
now
,
strtype
,
url
,
info
):
when
=
_rate_restrict_pool
.
get
(
strtype
,
0
)
if
now
>
when
:
next_when
=
max
(
when
,
now
-
_rate_restrict_burst
*
_rate_restrict_period
)
next_when
+=
_rate_restrict_period
_rate_restrict_pool
[
strtype
]
=
next_when
LOG
(
'SiteError'
,
ERROR
,
str
(
url
),
error
=
info
)
security
.
declareProtected
(
use_error_logging
,
'getProperties'
)
security
.
declareProtected
(
use_error_logging
,
'getProperties'
)
def
getProperties
(
self
):
def
getProperties
(
self
):
return
{
'keep_entries'
:
self
.
keep_entries
,
return
{
'keep_entries'
:
self
.
keep_entries
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment