You are welcome to contribute to Dynatrace Google Cloud Integration
Use issues for discussing proposals or to raise a question.
If you have improvements to Dynatrace Google Cloud Integration
, please submit your pull request.
For those just getting started, consult this guide.
- Fork this repository
- Checkout the repository from GitHub:
git clone [email protected]:{username}/dynatrace-gcp-extension.git
To add a dashboard you have to
- Create a dashboard in Dynatrace and export it as Json.
- Name the file as the configuration file from
./src/config
that has correspodning metrics - Put the file into
./src/dashboards
withjson
extension - Commit your changes
git add .
git commit -m"Introducing dashboard for {service name}"
- Open a Pull Request
To add support for GCP service, you have to add new configuration file:
- Create configuration YAML file compliant with
./src/config/gcp_schema_v_1_0.json
schema - Put it into
./config
directory, withyml
oryaml
extension - Commit your changes
git add .
git commit -m"Introducing {service name} service support"
- Open a Pull Request