-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from GoogleCloudPlatform/logging-api-samples
Adding cloud logging api sample.
- Loading branch information
Showing
7 changed files
with
130 additions
and
1 deletion.
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
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 Cloud Logging Samples | ||
|
||
This section contains samples for [Google Cloud Logging](https://cloud.google.com/logging). | ||
|
||
## Running the samples | ||
|
||
In order to run it, your environment must be setup with [authentication | ||
information](https://developers.google.com/identity/protocols/application-default-credentials#howtheywork). If you're running it in your local development environment and you have the [Google Cloud SDK](https://cloud.google.com/sdk/) installed, you can do this easily by running: | ||
|
||
$ gcloud auth login | ||
|
||
## Additional resources | ||
|
||
For more information on Cloud Logging you can visit: | ||
|
||
> https://developers.google.com/logging | ||
For more information on the Clloud Logging API Python library surface you | ||
can visit: | ||
|
||
> https://developers.google.com/resources/api-libraries/documentation/logging/v1beta3/python/latest/ | ||
For information on the Python Client Library visit: | ||
|
||
> https://developers.google.com/api-client-library/python | ||
## Other Samples |
Empty file.
Empty file.
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,66 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright 2015 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. | ||
|
||
"""Command-line program to list the logs in a Google Cloud Platform project. | ||
This sample is used in this section of the documentation: | ||
https://cloud.google.com/logging/docs | ||
For more information, see the README.md under /cloud_logging. | ||
""" | ||
|
||
# [START all] | ||
import argparse | ||
|
||
from googleapiclient import discovery | ||
from oauth2client.client import GoogleCredentials | ||
|
||
|
||
# [START list_logs] | ||
def list_logs(project_id, logging_service): | ||
request = logging_service.projects().logs().list(projectsId=project_id) | ||
|
||
while request: | ||
response = request.execute() | ||
for log in response['logs']: | ||
print(log['name']) | ||
|
||
request = logging_service.projects().logs().list_next( | ||
request, response) | ||
# [END list_logs] | ||
|
||
|
||
def main(project_id): | ||
# [START build_service] | ||
credentials = GoogleCredentials.get_application_default() | ||
logging_service = discovery.build( | ||
'logging', 'v1beta3', credentials=credentials) | ||
# [END build_service] | ||
|
||
list_logs(project_id, logging_service) | ||
|
||
|
||
if __name__ == '__main__': | ||
parser = argparse.ArgumentParser( | ||
description=__doc__, | ||
formatter_class=argparse.RawDescriptionHelpFormatter) | ||
parser.add_argument('project_id', help='Your Google Cloud project ID.') | ||
|
||
args = parser.parse_args() | ||
|
||
main(args.project_id) | ||
# [END all] |
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 @@ | ||
# Copyright 2015, Google, Inc. | ||
# 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 re | ||
import unittest | ||
|
||
import tests | ||
|
||
from . import list_logs | ||
|
||
|
||
class TestListLogs(tests.CloudBaseTest): | ||
|
||
def test_main(self): | ||
with tests.capture_stdout() as stdout: | ||
list_logs.main(self.project_id) | ||
|
||
output = stdout.getvalue().strip() | ||
|
||
self.assertRegexpMatches( | ||
output, re.compile(r'.*', re.S)) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
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