https://github.com/wavefronthq/integrations
This project contains various resources for integrating Wavefront with third-party and open-source tools
https://github.com/wavefronthq/integrations
integrations monitoring scripts wavefront
Last synced: about 1 year ago
JSON representation
This project contains various resources for integrating Wavefront with third-party and open-source tools
- Host: GitHub
- URL: https://github.com/wavefronthq/integrations
- Owner: wavefrontHQ
- License: apache-2.0
- Created: 2016-09-23T21:08:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T07:00:24.000Z (over 2 years ago)
- Last Synced: 2025-04-11T05:06:42.247Z (about 1 year ago)
- Topics: integrations, monitoring, scripts, wavefront
- Language: Java
- Size: 281 KB
- Stars: 7
- Watchers: 10
- Forks: 32
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Integrations
This repository contains various resources for integrating Wavefront with third-party and open source tools. See [the documentation](https://docs.wavefront.com/label_integrations%20list.html) for the total list of integrations supported by Wavefront.
## Deploying Dashboards
To deploy a custom dashboard on your Wavefront account:
1. Make sure you have a valid API token with API access. This can be retrieved from [your profile page](https://docs.wavefront.com/wavefront_api.html#generating-an-api-token) within Wavefront.
2. Download the dashboard template `.json` file you'd like to deploy.
3. Post the `.json` file using Wavefront's dashboard API:
```
curl -O https://raw.githubusercontent.com/wavefrontHQ/integrations/master/examples/k8s.json
curl -vX POST https://metrics.wavefront.com/api/dashboard -d @k8s.json \
-H "Content-Type: application/json" -H 'X-AUTH-TOKEN: YOUR_API_TOKEN'
```
Update `YOUR_API_TOKEN` and the URL to your Wavefront cluster.
## Contributing
We welcome pull requests! If you have created a dashboard and/or integration recipe that you would like to share with our community, you can submit a pull request.