dev-master
9999999-dev
The Requires
1.0.0
1.0.0.0
The Requires
Wallogit.com
2017 © Pedro Peláez
Clone this repository in protected/extensions/yii-stackdriver., (*1)
Launch a composer update to download required dependencies., (*2)
Add the log route to CLogRouter to pipe logs in Google Cloud Logging., (*3)
'log'=>array( 'class'=>'CLogRouter', 'routes'=>array( array( 'class'=>'ext.yii-stackdriver.StackdriverLogRoute', 'levels'=>'error, warning, info, profile, debug', // override error severity for some exceptions 'errorSeverity' => array( 'exception.CHttpException.404' => 'info', ) ), ... ) )
Customize the class for error handling in config., (*4)
'errorHandler'=>array(
// use 'site/error' action to display errors
'class'=>'ext.yii-stackdriver.StackdriverErrorHandler',
'errorAction'=>'site/error',
// do not consider 404 as errors/exceptions
'skip404' => true,
),
Authorize the GCE VM service account with the following privileges:, (*5)