This fork improves on the original data source in several ways:
- it supports authenticating using the environments default credentials (useful when running in GCE or GKE, with Workload Identity)
- it returns log entries in a way consistent with Cloud Logging
- it supports variables in queries (see GoogleCloudPlatform#18)
- it can add/remove filters in the Explore page
- it fixes a few small issues
This repository is NOT meant to be used in production environment. Ideally, I would like to contribute these changes back to the upstream plugin.
The Google Cloud Logging Data Source is a backend data source plugin for Grafana, which allows users to query and visualize their Google Cloud logs in Grafana.
You need to enable the resource manager API. Otherwise, your cloud projects will not be displayed in the dropdown menu.
You can follow the steps to enable it:
- Navigate to the cloud resource manager API page in GCP and select your project
- Press the
Enable
button
- If you don't have gcp project, add a new gcp project. link
- Open the Credentials page in the Google API Console
- Click Create Credentials then click Service account
- On the Create service account page, enter the Service account details
- On the
Create service account
page, fill in theService account details
and then clickCreate and Continue
- On the
Grant this service account access to project
section, select theLogs Viewer
role underLogging
to the service account. ClickDone
- In the next step, click the service account you just created. Under the
Keys
tab and selectAdd key
andCreate new key
- Choose key type
JSON
and clickCreate
. A JSON key file will be created and downloaded to your computer
If you want to access logs in multiple cloud projects, you need to ensure the service account has permission to read logs from all of them.
- With Grafana restarted, navigate to
Configuration -> Data sources
(or the route/datasources
) - Click "Add data source"
- Select "Google Cloud Logging"
- Provide credentials in a JWT file, either by using the file selector or pasting the contents of the file.
- If desired, provide a regional Cloud Logging service endpoint in order to only collect logs from a specific log bucket region
- Click "Save & test" to test that logs can be queried from Cloud Logging.
Cloud Logging Logo (src/img/logo.svg
) is from Google Cloud's Official icons and sample diagrams
As commented, JWTForm
and JWTConfigEditor
are largely based on Apache-2.0 licensed grafana-google-sdk-react