This repo contains the official module for deploying the TICK Stack on GCP using Terraform and Packer.
The TICK Stack is a loosely coupled yet tightly integrated set of open source projects designed to handle massive amounts of time-stamped information to support your metrics analysis needs.
Collectively, Telegraf, InfluxDB, Chronograf and Kapacitor are known as the TICK Stack.
If you want to quickly spin up an InfluxDB OSS server, you can run the simple example that is in the root of this repo. Check out influxdb-oss example documentation for instructions.
This repo has the following folder structure:
- root: The root folder contains an example of how to deploy InfluxDB OSS. See influxdb-oss for the documentation.
- modules: This folder contains the main implementation code for this Module, broken down into multiple standalone submodules.
- examples: This folder contains examples of how to use the submodules.
- test: Automated tests for the submodules and examples.
The general idea is to use the modules to setup different components of the TICK Stack:
-
-
Use the scripts in the install-telegraf modules to create a machine image with Telegraf installed.
-
Configure each application server to execute the run-telegraf script during boot.
-
-
-
Use the scripts in the install-influxdb modules to create a machine image with InfluxDB Enterprise installed.
-
Deploy the server across one or more Instance Groups using the influxdb-cluster module.
-
Configure each server in the Instance Groups to execute the run-influxdb script during boot.
-
Deploy a load balancer in front of the data node Instance Group.
-
-
-
Use the scripts in the install-chronograf modules to create a machine image with Chronograf installed.
-
Deploy the image in a single instance group using the chronograf-server module.
-
Configure the server to execute the run-chronograf script during boot.
-
Deploy a load balancer in front of the instance group.
-
-
-
Use the scripts in the install-kapacitor modules to create a machine image with Kapacitor installed.
-
Deploy the image in a single instance group using the kapacitor-server module.
-
Configure the server to execute the run-kapacitor script during boot.
-
- Deploy a load balancer in front of the instance group.
See the examples folder for working sample code.
A Module is a canonical, reusable, best-practices definition for how to run a single piece of infrastructure, such as a database or server cluster. Each Module is written using a combination of Terraform and scripts (mostly bash) and include automated tests, documentation, and examples. It is maintained both by the open source community and companies that provide commercial support.
Instead of figuring out the details of how to run a piece of infrastructure from scratch, you can reuse existing code that has been proven in production. And instead of maintaining all that infrastructure code yourself, you can leverage the work of the Module community to pick up infrastructure improvements through a version number bump.
This Module is maintained by Gruntwork. If you're looking for help or commercial support, send an email to [email protected]. Gruntwork can help with:
- Setup, customization, and support for this Module.
- Modules for other types of infrastructure, such as VPCs, GKE clusters, databases, and continuous integration.
- Modules that meet compliance requirements, such as HIPAA.
- Consulting & Training on GCP, AWS, Terraform, and DevOps.
Contributions are very welcome! Check out the Contribution Guidelines for instructions.
This Module follows the principles of Semantic Versioning. You can find each new release, along with the changelog, in the Releases Page.
During initial development, the major version will be 0 (e.g., 0.x.y
), which indicates the code does not yet have a stable API. Once we hit 1.0.0
, we will make every effort to maintain a backwards compatible API and use the MAJOR, MINOR, and PATCH versions on each release to indicate any incompatibilities.
This code is released under the Apache 2.0 License. Please see LICENSE and NOTICE for more details.
Copyright © 2019 Gruntwork, Inc.