-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Error Reporting Code #272
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Google Error Reorting Samples Samples | ||
|
||
This section contains samples for [Google Cloud Error Reporting](https://cloud.google.com/error-reporting). | ||
|
||
A startup script has been provided to demonstrated how to properly provision a GCE | ||
instance with fluentd configured. Note the intallation of fluentd, the addition of the config file, | ||
and the restarting of the fluetnd service. You can start an instance using | ||
it like this: | ||
|
||
gcloud compute instances create example-instance --metadata-from-file startup-script=startup_script.sh | ||
|
||
or simply use it as reference when creating your own instance. | ||
|
||
After fluentd is configured, main.py could be used to simulate an error: | ||
|
||
gcloud compute copy-files main.py example-instance:~/main.py | ||
|
||
Then, | ||
|
||
gcloud compute ssh example-instance | ||
python ~/main.py | ||
|
||
And you will see the message in the Errors Console. | ||
|
||
<!-- auto-doc-link --> | ||
|
||
<!-- end-auto-doc-link --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2016 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# [START error_reporting] | ||
import traceback | ||
|
||
import fluent.event | ||
import fluent.sender | ||
|
||
|
||
def simulate_error(): | ||
fluent.sender.setup('myapp', host='localhost', port=24224) | ||
|
||
def report(ex): | ||
data = {} | ||
data['message'] = '{0}'.format(ex) | ||
data['serviceContext'] = {'service': 'myapp'} | ||
# ... add more metadata | ||
fluent.event.Event('errors', data) | ||
|
||
# report exception data using: | ||
try: | ||
# simulate calling a method that's not defined | ||
raise NameError | ||
except Exception: | ||
report(traceback.format_exc()) | ||
# [END error_reporting] | ||
|
||
if __name__ == '__main__': | ||
simulate_error() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fluent-logger==0.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2016 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -v | ||
|
||
curl -sSO "https://dl.google.com/cloudagents/install-logging-agent.sh" | ||
chmod +x install-logging-agent.sh | ||
./install-logging-agent.sh | ||
mkdir -p /etc/google-fluentd/config.d/ | ||
cat <<EOF > /etc/google-fluentd/config.d/forward.conf | ||
<source> | ||
type forward | ||
port 24224 | ||
</source> | ||
EOF | ||
service google-fluentd restart | ||
|
||
apt-get update | ||
apt-get install -yq \ | ||
git build-essential supervisor python python-dev python-pip libffi-dev \ | ||
libssl-dev | ||
pip install fluent-logger | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 2016 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import main | ||
import mock | ||
|
||
|
||
@mock.patch("fluent.event") | ||
def test_error_sends(event_mock): | ||
main.simulate_error() | ||
event_mock.Event.assert_called_once_with(mock.ANY, mock.ANY) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
traceback is a standard library import, and thus should go in the section above fluent