[freeside-commits] branch FREESIDE_4_BRANCH updated. 4b51d95adb7a3625d462cb60e4cb733749584d0a
Ivan
ivan at 420.am
Tue Feb 9 19:59:21 PST 2016
The branch, FREESIDE_4_BRANCH has been updated
via 4b51d95adb7a3625d462cb60e4cb733749584d0a (commit)
from 7dc1892708ae997e380cbfa0232e51b5a3b59739 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4b51d95adb7a3625d462cb60e4cb733749584d0a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Feb 9 19:59:20 2016 -0800
store render times in access log, RT#39822
diff --git a/FS/FS/Mason/Request.pm b/FS/FS/Mason/Request.pm
index 0d9c6d4..99a8daa 100644
--- a/FS/FS/Mason/Request.pm
+++ b/FS/FS/Mason/Request.pm
@@ -4,8 +4,8 @@ use strict;
use warnings;
use vars qw( $FSURL $QUERY_STRING );
use base 'HTML::Mason::Request';
+use IO::Handle;
use FS::Trace;
-use FS::access_user_log;
$FSURL = 'http://Set/FS_Mason_Request_FSURL/in_standalone_mode/';
$QUERY_STRING = '';
@@ -46,12 +46,11 @@ my $protect_fds;
sub freeside_setup {
my( $class, $filename, $mode ) = @_;
- FS::Trace->log(' protecting fds');
-
#from rt/bin/webmux.pl(.in)
if ( !$protect_fds && $ENV{'MOD_PERL'} && exists $ENV{'MOD_PERL_API_VERSION'}
&& $ENV{'MOD_PERL_API_VERSION'} >= 2
) {
+ FS::Trace->log(' protecting fds');
# under mod_perl2, STDIN and STDOUT get closed and re-opened,
# however they are not on FD 0 and 1. In this case, the next
# socket that gets opened will occupy one of these FDs, and make
@@ -130,8 +129,6 @@ sub freeside_setup {
}
- FS::access_user_log->insert_new_path( $filename );
-
FS::Trace->log(' done');
}
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 7bc30ef..85c8519 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -5791,10 +5791,11 @@ sub tables_hashref {
'access_user_log' => {
'columns' => [
- 'lognum', 'serial', '', '', '', '',
- 'usernum', 'int', '', '', '', '',
- 'path', 'varchar', '', 2*$char_d, '', '',
- '_date', @date_type, '', '',
+ 'lognum', 'serial', '', '', '', '',
+ 'usernum', 'int', '', '', '', '',
+ 'path', 'varchar', '', 2*$char_d, '', '',
+ '_date', @date_type, '', '',
+ 'render_seconds', 'int', 'NULL', '', '', '',
],
'primary_key' => 'lognum',
'unique' => [],
diff --git a/FS/FS/access_user_log.pm b/FS/FS/access_user_log.pm
index 9e7f7a0..15437b7 100644
--- a/FS/FS/access_user_log.pm
+++ b/FS/FS/access_user_log.pm
@@ -48,6 +48,7 @@ path
_date
+=item render_seconds
=back
@@ -73,14 +74,15 @@ Adds a log entry for PATH for the current user and timestamp.
=cut
sub insert_new_path {
- my( $class, $path ) = @_;
+ my( $class, $path, $render_seconds ) = @_;
return '' unless defined $FS::CurrentUser::CurrentUser;
my $self = $class->new( {
- 'usernum' => $FS::CurrentUser::CurrentUser->usernum,
- 'path' => $path,
- '_date' => time,
+ 'usernum' => $FS::CurrentUser::CurrentUser->usernum,
+ 'path' => $path,
+ '_date' => time,
+ 'render_seconds' => $render_seconds,
} );
my $error = $self->insert;
@@ -118,6 +120,7 @@ sub check {
|| $self->ut_foreign_key('usernum', 'access_user', 'usernum')
|| $self->ut_text('path')
|| $self->ut_number('_date')
+ || $self->ut_numbern('render_seconds')
;
return $error if $error;
diff --git a/htetc/handler.pl b/htetc/handler.pl
index 4bb214c..920da3c 100644
--- a/htetc/handler.pl
+++ b/htetc/handler.pl
@@ -6,6 +6,7 @@ use strict;
use warnings;
use FS::Mason qw( mason_interps );
use FS::Trace;
+use FS::access_user_log;
use FS::Conf;
$FS::Conf::conf_cache_enabled = 1; # enable FS::Conf caching for performance
@@ -65,6 +66,8 @@ sub handler
#($r) = @_;
my $r = shift;
+ my $start_time = time;
+
FS::Trace->log('protecting fds');
#from rt/bin/webmux.pl(.in)
@@ -164,6 +167,8 @@ sub handler
# );
# }
+ FS::access_user_log->insert_new_path( $r->filename, time-$start_time );
+\
FS::Trace->log('done');
FS::Trace->dumpfile( "%%%FREESIDE_EXPORT%%%/profile/$$.".time,
-----------------------------------------------------------------------
Summary of changes:
FS/FS/Mason/Request.pm | 7 ++-----
FS/FS/Schema.pm | 9 +++++----
FS/FS/access_user_log.pm | 11 +++++++----
htetc/handler.pl | 5 +++++
4 files changed, 19 insertions(+), 13 deletions(-)
More information about the freeside-commits
mailing list