Initial commit with README and module files
Some checks failed
Monitors / pre_job (push) Successful in 14s
Monitors / check (push) Failing after 1m30s

This commit is contained in:
Patrick de Ruiter 2025-11-01 10:43:48 +01:00
parent 518c7ed71b
commit 553f03285a
Signed by: pderuiter
GPG Key ID: 5EBA7F21CF583321
491 changed files with 290 additions and 198 deletions

0
.github/CODEOWNERS vendored Normal file → Executable file
View File

0
.github/workflows/main.yml vendored Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
.gitmodules vendored Normal file → Executable file
View File

0
.terraform-version Normal file → Executable file
View File

0
CHANGELOG.md Normal file → Executable file
View File

0
CONTRIBUTING.md Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
NOTICE Normal file → Executable file
View File

484
README.md Normal file → Executable file
View File

@ -1,243 +1,335 @@
# DataDog Monitors # Terraform Datadog Old Monitors Module
[![Changelog](https://img.shields.io/badge/changelog-release-green.svg)](CHANGELOG.md) [![Notice](https://img.shields.io/badge/notice-copyright-yellow.svg)](NOTICE) [![Apache V2 License](http://img.shields.io/badge/license-Apache%20V2-blue.svg)](LICENSE) [![ ](https://git.fr.clara.net/claranet/pt-monitoring/projects/datadog/terraform/monitors/badges/master/pipeline.svg)](https://git.fr.clara.net/claranet/pt-monitoring/projects/datadog/terraform/monitors/commits/master)
This repository aims to provide a base of generic and pre configured monitors for [Datadog](https://www.datadoghq.com/) templated thanks to [Terraform](https://www.terraform.io/) and the [Datadog Provider](https://github.com/terraform-providers/terraform-provider-datadog). ## Overview
## Important notes This is a comprehensive, enterprise-ready monitoring module repository (based on Claranet's Datadog monitors repository) with pre-configured monitors for various infrastructure components including middleware, databases, cloud services, and container platforms.
* This repository provide multiple Terraform modules which could be imported, you must choose the one(s) you need. ## Features
* Each of these modules contains the most commons monitors, but they probably do not fulfill all your needs.
* You still can create some specific DataDog monitors after importing a module, it's even advisable to complete your needs.
* You will find a complete `README.md` on each module, explaining how to use it and its specificities if there.
* The `alerting-message` module could be used to easily generate a templating message to re-use and could be used multiple times to suit different use cases.
* Some monitors are disabled by default because not generic or "plug and play" enough, if you use them you will need to tweak them or in some cases disabled another one which could "duplicate" the check.
## Getting started - **Enterprise Monitoring Templates**: Production-ready monitor configurations
- **Multi-Platform Support**: AWS, Azure, GCP cloud providers
- **Component Coverage**: Middleware, databases, containers, networking
- **Flexible Configuration**: Extensive customization options
- **Best Practices**: Based on industry standards and real-world deployments
### Versions ## Structure
Here are the minimum versions required to use these modules of integrations. This module contains multiple sub-modules organized by component type:
```
terraform-datadog-old-monitors/
├── middleware/ # Nginx, Kong, Apache, PHP-FPM
├── database/ # PostgreSQL, MySQL, Redis, MongoDB, etc.
├── system/ # Generic system and unreachable monitors
├── network/ # HTTP, DNS, TLS monitoring
├── cloud/ # AWS, Azure, GCP specific monitors
│ ├── aws/ # ECS, RDS, Lambda, ALB, etc.
│ ├── azure/ # App Services, Functions, SQL, etc.
│ └── gcp/ # Compute, Cloud SQL, Pub/Sub, etc.
├── caas/ # Docker, Kubernetes monitoring
└── common/ # Shared alerting and filtering modules
```
## Requirements
| Name | Version |
|------|---------|
| terraform | >= 0.12 |
| datadog | >= 2.0 |
## Usage
### Basic Monitor Configuration
```hcl ```hcl
terraform { module "nginx_monitor" {
required_providers { source = "./terraform-datadog-old-monitors/middleware/nginx"
datadog = {
source = "DataDog/datadog"
version = ">= 3.1.0"
}
}
required_version = ">= 0.12.31"
}
environment = "production"
message = "Nginx issue detected @slack-channel"
evaluation_delay = 15
new_host_delay = 300
# Enable/disable specific monitors
nginx_connect_enabled = "true"
nginx_dropped_enabled = "true"
# Customize thresholds
nginx_dropped_connections_critical = 5
nginx_dropped_connections_warning = 3
}
``` ```
_Note_: if you want to use Datadog provider v2, you need to use version 3 of the modules in this repository. ### AWS RDS Monitoring
### DataDog provider ```hcl
module "rds_monitor" {
source = "./terraform-datadog-old-monitors/cloud/aws/rds/common"
Here is the last tester terraform provider version for datadog but next versions should work too. environment = "production"
message = "RDS alert @pagerduty"
``` # CPU monitoring
provider "datadog" { cpu_enabled = "true"
api_key = var.datadog_api_key cpu_critical = 90
app_key = var.datadog_app_key cpu_warning = 75
# Disk monitoring
disk_space_enabled = "true"
disk_space_critical = 90
disk_space_warning = 80
} }
``` ```
Both of the `datadog_api_key` and `datadog_app_key` are unique to the each datadog account. You can define them in `terraform.tfvars` file: ### Kubernetes Monitoring
``` ```hcl
datadog_api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" module "k8s_pod_monitor" {
datadog_app_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" source = "./terraform-datadog-old-monitors/caas/kubernetes/pod"
environment = "production"
message = "Kubernetes pod issue @slack-ops"
pod_crash_enabled = "true"
pod_not_running_enabled = "true"
container_restart_enabled = "true"
}
``` ```
### Variables ## Common Variables
Some variables need to be declared. Most sub-modules share these common variables:
``` | Name | Description | Type | Default |
variable "environment" { |------|-------------|------|---------|
type = string | `environment` | Architecture environment | `string` | Required |
default = "dev" | `message` | Alert message with notification channels | `string` | Required |
} | `evaluation_delay` | Metric evaluation delay (seconds) | `number` | `15` |
| `new_host_delay` | Delay before monitoring new resources | `number` | `300` |
| `prefix_slug` | Prefix for monitor names | `string` | `""` |
| `notify_no_data` | Alert on no data | `bool` | `true` |
| `filter_tags_use_defaults` | Use default filter convention | `bool` | `true` |
| `filter_tags_custom` | Custom filter tags | `string` | `""` |
variable "datadog_api_key" { ## Available Monitor Types
type = string
}
variable "datadog_app_key" { ### Middleware Monitors
type = string
}
``` - **Nginx**: Connection, dropped connections, workers
- **Apache**: Server status, connections
- **Kong**: API gateway health and performance
- **PHP-FPM**: Pool status, slow requests
### Modules declaration example ### Database Monitors
A quick example of alerting message module declaration: - **PostgreSQL**: Connections, replication lag, locks
- **MySQL**: Connections, slow queries, replication
- **Redis**: Memory, connections, evictions
- **MongoDB**: Connections, replication lag, operations
- **Elasticsearch**: Cluster health, JVM heap
- **SQL Server**: Connections, locks, performance
``` ### Cloud Services
locals {
oncall_24x7 = "@pagerduty-MyPagerService_NBH"
oncall_office_hours = "@pagerduty-MyPagerService_BH"
}
module "datadog-message-alerting" { #### AWS
source = "claranet/monitors/datadog//common/alerting-message" - RDS (Aurora PostgreSQL, Aurora MySQL, common)
version = "{revision}" - EC2 / ECS (Fargate, EC2 cluster)
- Lambda
- ALB / ELB / NLB
- ElastiCache (Redis, Memcached)
- SQS
- API Gateway
- Elasticsearch
message_alert = local.oncall_24x7 #### Azure
message_warning = local.oncall_office_hours - App Services
message_nodata = local.oncall_24x7 - Functions
} - SQL Database / Elastic Pool
- PostgreSQL
- Storage
- Key Vault
- Event Hub
- Service Bus
module "datadog-message-alerting-bh-only" { #### GCP
source = "claranet/monitors/datadog//common/alerting-message" - Compute Engine
version = "{revision}" - Cloud SQL (MySQL, common)
- Pub/Sub (topics, subscriptions)
- Load Balancer
- Memorystore Redis
message_alert = local.oncall_office_hours ### Container Platforms
message_warning = local.oncall_office_hours
message_nodata = local.oncall_office_hours
}
module "datadog-monitors-system-generic" { - **Docker**: Container status, resource usage
source = "claranet/monitors/datadog//system/generic" - **Kubernetes**:
version = "{revision}" - Pod monitors (crash, restart, not running)
- Node monitors (resource usage, status)
- Cluster monitors (API server, scheduler)
- Workload monitors (deployments, statefulsets)
- Velero/Ark backup monitors
### Network Monitors
- **HTTP**: Webcheck, SSL certificate expiry
- **DNS**: Query response time, availability
- **TLS**: Certificate expiration
## Monitor Configuration Pattern
Each monitor module follows this pattern:
```hcl
module "service_monitor" {
source = "./path/to/monitor"
# Environment and messaging
environment = var.environment environment = var.environment
message = module.datadog-message-alerting.alerting-message message = var.alert_message
memory_message = module.datadog-message-alerting-bh-only.alerting-message # Timing configuration
# Use variables to customize monitors configuration evaluation_delay = 15
new_host_delay = 300
# Enable/disable monitors
monitor_name_enabled = "true"
# Thresholds
monitor_name_critical = 90
monitor_name_warning = 75
# Filtering
filter_tags_custom = "env:production,team:platform"
} }
# Other monitors modules to declare ...
#module "datadog-monitors-my-monitors-set" {
# source = "claranet/monitors/datadog//my/monitors/set"
# version = "{revision}"
#
# environment = var.environment
# message = module.datadog-message-alerting.alerting-message
#}
``` ```
* Replace `{revision}` to the last git tag available on this repository. ## Alerting Integration
* The `//` is very important, it's a terraform specific syntax used to separate git url and folder path.
* `my/monitors/set` represents the path to a monitors set sub directory listed below.
## Contributions The `common/alerting-message` module provides templates for:
- PagerDuty integration
- Slack notifications
- Email alerts
- Webhook notifications
Contributions are always welcome. Example:
```hcl
module "alerting" {
source = "./terraform-datadog-old-monitors/common/alerting-message"
The easiest way is to fork the repository, duplicate a module as "template" and work on it. message_alert = "@pagerduty-critical"
message_warning = "@slack-warnings"
message_nodata = "@slack-monitoring"
}
```
An internal CI will run the `auto_update.sh` script to compare with proposed changes and check if everything is up to date. ## Filter Tags
So, when PR is ready you will need to run this script and push its changes to pass the CI, see [scripts repository](https://github.com/claranet/terraform-datadog-scripts/) for more information. The `common/filter-tags` module helps with tag-based filtering:
For example, this will regenerate every READMEs thanks to [terraform-docs](https://github.com/segmentio/terraform-docs) currently in v0.9.1. ```hcl
module "filter_tags" {
source = "./terraform-datadog-old-monitors/common/filter-tags"
## Monitors summary environment = "production"
filter_tags_use_defaults = true
filter_tags_custom = "service:api,tier:backend"
}
```
- [caas](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/) ## Best Practices
- [docker](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/docker/)
- [kubernetes](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/) 1. **Start with defaults**: Use default thresholds first, then customize
- [ark](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/ark/) 2. **Gradual rollout**: Enable monitors incrementally
- [cluster](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/cluster/) 3. **Tag strategy**: Use consistent tagging across infrastructure
- [ingress](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/ingress/) 4. **Alert fatigue**: Tune thresholds to reduce false positives
- [vts](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/ingress/vts/) 5. **Documentation**: Document custom threshold decisions
- [node](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/node/) 6. **Testing**: Test monitors in non-production first
- [pod](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/pod/)
- [velero](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/velero/) ## Customization Examples
- [workload](https://github.com/claranet/terraform-datadog-monitors/tree/master/caas/kubernetes/workload/)
- [cloud](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/) ### Custom Thresholds
- [aws](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/)
- [alb](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/alb/) ```hcl
- [apigateway](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/apigateway/) # More aggressive CPU monitoring
- [beanstalk](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/beanstalk/) cpu_critical = 85
- [ecs](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/ecs/) cpu_warning = 70
- [common](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/ecs/common/)
- [ec2-cluster](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/ecs/ec2-cluster/) # Relaxed disk space monitoring
- [fargate](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/ecs/fargate/) disk_space_critical = 95
- [elasticache](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elasticache/) disk_space_warning = 90
- [common](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elasticache/common/) ```
- [memcached](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elasticache/memcached/)
- [redis](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elasticache/redis/) ### Conditional Monitoring
- [elasticsearch](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elasticsearch/)
- [elb](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/elb/) ```hcl
- [kinesis-firehose](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/kinesis-firehose/) # Only monitor specific services
- [lambda](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/lambda/) filter_tags_custom = "service:critical-app"
- [nlb](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/nlb/)
- [rds](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/rds/) # Skip new hosts for longer period
- [aurora](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/rds/aurora/) new_host_delay = 600 # 10 minutes
- [mysql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/rds/aurora/mysql/) ```
- [postgresql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/rds/aurora/postgresql/)
- [common](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/rds/common/) ### Custom Alert Messages
- [sqs](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/sqs/)
- [vpn](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/aws/vpn/) ```hcl
- [azure](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/) message = <<-EOT
- [apimanagement](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/apimanagement/) {{#is_alert}}
- [app-gateway](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/app-gateway/) CRITICAL: {{check}} on {{host.name}}
- [app-services](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/app-services/) @pagerduty-critical
- [azure-search](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/azure-search/) {{/is_alert}}
- [cosmosdb](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/cosmosdb/)
- [datalakestore](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/datalakestore/) {{#is_warning}}
- [eventgrid](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/eventgrid/) WARNING: {{check}} on {{host.name}}
- [eventhub](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/eventhub/) @slack-warnings
- [functions](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/functions/) {{/is_warning}}
- [iothubs](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/iothubs/) EOT
- [keyvault](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/keyvault/) ```
- [load-balancer](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/load-balancer/)
- [mysql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/mysql/) ## Maintenance
- [postgresql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/postgresql/)
- [redis](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/redis/) This module appears to be a legacy/archived version (hence "old-monitors" name). Consider:
- [serverfarms](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/serverfarms/) - Reviewing for updates from Claranet repository
- [servicebus](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/servicebus/) - Migrating to newer monitoring solutions if available
- [sql-database](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/sql-database/) - Documenting which monitors are actively used
- [sql-elasticpool](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/sql-elasticpool/) - Deprecating unused monitor configurations
- [storage](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/storage/)
- [stream-analytics](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/stream-analytics/) ## Outputs
- [virtual-machine](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/azure/virtual-machine/)
- [gcp](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/) Each sub-module may export:
- [big-query](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/big-query/) - Monitor IDs
- [cloud-sql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/cloud-sql/) - Monitor names
- [common](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/cloud-sql/common/) - Alert status
- [mysql](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/cloud-sql/mysql/)
- [gce](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/gce/) Check individual module outputs.tf files for specifics.
- [instance](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/gce/instance/)
- [lb](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/lb/) ## Notes
- [memorystore](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/memorystore/)
- [redis](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/memorystore/redis/) - This is a comprehensive library of monitor templates
- [pubsub](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/pubsub/) - Based on Claranet's open-source Datadog monitors
- [subscription](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/pubsub/subscription/) - Covers most common infrastructure components
- [topic](https://github.com/claranet/terraform-datadog-monitors/tree/master/cloud/gcp/pubsub/topic/) - Highly customizable with sensible defaults
- [common](https://github.com/claranet/terraform-datadog-monitors/tree/master/common/) - May contain more monitors than needed for your use case
- [alerting-message](https://github.com/claranet/terraform-datadog-monitors/tree/master/common/alerting-message/) - Review and enable only required monitors to avoid alert fatigue
- [filter-tags](https://github.com/claranet/terraform-datadog-monitors/tree/master/common/filter-tags/)
- [database](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/) ## Migration Path
- [elasticsearch](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/elasticsearch/)
- [mongodb](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/mongodb/) If migrating from this module:
- [mysql](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/mysql/) 1. Audit currently active monitors
- [postgresql](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/postgresql/) 2. Document custom thresholds
- [proxysql](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/proxysql/) 3. Test new monitoring solutions in parallel
- [redis](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/redis/) 4. Gradually migrate monitor by monitor
- [solr](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/solr/) 5. Keep this module for reference
- [sqlserver](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/sqlserver/)
- [zookeeper](https://github.com/claranet/terraform-datadog-monitors/tree/master/database/zookeeper/) ## Resources
- [middleware](https://github.com/claranet/terraform-datadog-monitors/tree/master/middleware/)
- [apache](https://github.com/claranet/terraform-datadog-monitors/tree/master/middleware/apache/) - Original Claranet repository: [terraform-datadog-monitors](https://github.com/claranet/terraform-datadog-monitors)
- [kong](https://github.com/claranet/terraform-datadog-monitors/tree/master/middleware/kong/) - Datadog monitor documentation: [Datadog Monitors](https://docs.datadoghq.com/monitors/)
- [nginx](https://github.com/claranet/terraform-datadog-monitors/tree/master/middleware/nginx/)
- [php-fpm](https://github.com/claranet/terraform-datadog-monitors/tree/master/middleware/php-fpm/) ## License
- [network](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/)
- [dns](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/dns/) Based on Claranet's open-source work.
- [http](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/http/) Internal use: Sanoma/WeBuildYourCloud
- [ssl](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/http/ssl/)
- [webcheck](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/http/webcheck/) ## Authors
- [tls](https://github.com/claranet/terraform-datadog-monitors/tree/master/network/tls/)
- [saas](https://github.com/claranet/terraform-datadog-monitors/tree/master/saas/) - Original: Claranet team
- [new-relic](https://github.com/claranet/terraform-datadog-monitors/tree/master/saas/new-relic/) - Maintained by: Platform Engineering team
- [system](https://github.com/claranet/terraform-datadog-monitors/tree/master/system/)
- [generic](https://github.com/claranet/terraform-datadog-monitors/tree/master/system/generic/)
- [unreachable](https://github.com/claranet/terraform-datadog-monitors/tree/master/system/unreachable/)

0
TEMPLATING.md Normal file → Executable file
View File

0
caas/docker/README.md Normal file → Executable file
View File

0
caas/docker/inputs.tf Normal file → Executable file
View File

0
caas/docker/modules.tf Normal file → Executable file
View File

0
caas/docker/monitors-docker.tf Normal file → Executable file
View File

0
caas/docker/outputs.tf Normal file → Executable file
View File

0
caas/docker/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/ark/README.md Normal file → Executable file
View File

0
caas/kubernetes/ark/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/ark/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/ark/monitors-ark.tf Normal file → Executable file
View File

0
caas/kubernetes/ark/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/ark/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/cluster/README.md Normal file → Executable file
View File

0
caas/kubernetes/cluster/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/cluster/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/cluster/monitors-k8s-cluster.tf Normal file → Executable file
View File

0
caas/kubernetes/cluster/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/cluster/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/MANIFEST.txt Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/README.md Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/monitors-ingress.tf Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/ingress/vts/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/node/README.md Normal file → Executable file
View File

0
caas/kubernetes/node/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/node/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/node/monitors-k8s-node.tf Normal file → Executable file
View File

0
caas/kubernetes/node/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/node/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/pod/README.md Normal file → Executable file
View File

0
caas/kubernetes/pod/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/pod/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/pod/monitors-k8s-pod.tf Normal file → Executable file
View File

0
caas/kubernetes/pod/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/pod/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/velero/README.md Normal file → Executable file
View File

0
caas/kubernetes/velero/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/velero/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/velero/monitors-velero.tf Normal file → Executable file
View File

0
caas/kubernetes/velero/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/velero/versions.tf Normal file → Executable file
View File

0
caas/kubernetes/workload/README.md Normal file → Executable file
View File

0
caas/kubernetes/workload/inputs.tf Normal file → Executable file
View File

0
caas/kubernetes/workload/modules.tf Normal file → Executable file
View File

0
caas/kubernetes/workload/monitors-k8s-workload.tf Normal file → Executable file
View File

0
caas/kubernetes/workload/outputs.tf Normal file → Executable file
View File

0
caas/kubernetes/workload/versions.tf Normal file → Executable file
View File

BIN
cloud/aws/.DS_Store vendored Normal file

Binary file not shown.

0
cloud/aws/alb/README.md Normal file → Executable file
View File

0
cloud/aws/alb/inputs.tf Normal file → Executable file
View File

0
cloud/aws/alb/modules.tf Normal file → Executable file
View File

0
cloud/aws/alb/monitors-alb.tf Normal file → Executable file
View File

0
cloud/aws/alb/outputs.tf Normal file → Executable file
View File

0
cloud/aws/alb/versions.tf Normal file → Executable file
View File

0
cloud/aws/apigateway/README.md Normal file → Executable file
View File

0
cloud/aws/apigateway/inputs.tf Normal file → Executable file
View File

0
cloud/aws/apigateway/monitors-api.tf Normal file → Executable file
View File

0
cloud/aws/apigateway/outputs.tf Normal file → Executable file
View File

0
cloud/aws/apigateway/versions.tf Normal file → Executable file
View File

0
cloud/aws/beanstalk/README.md Normal file → Executable file
View File

0
cloud/aws/beanstalk/inputs.tf Normal file → Executable file
View File

0
cloud/aws/beanstalk/modules.tf Normal file → Executable file
View File

0
cloud/aws/beanstalk/monitors-beanstalk.tf Normal file → Executable file
View File

0
cloud/aws/beanstalk/outputs.tf Normal file → Executable file
View File

0
cloud/aws/beanstalk/versions.tf Normal file → Executable file
View File

0
cloud/aws/ecs/common/MANIFEST.txt Normal file → Executable file
View File

0
cloud/aws/ecs/common/README.md Normal file → Executable file
View File

0
cloud/aws/ecs/common/inputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/common/modules.tf Normal file → Executable file
View File

0
cloud/aws/ecs/common/monitors-ecs-common.tf Normal file → Executable file
View File

0
cloud/aws/ecs/common/outputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/common/versions.tf Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/MANIFEST.txt Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/README.md Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/inputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/modules.tf Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/monitors-ecs-ec2-cluster.tf Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/outputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/ec2-cluster/versions.tf Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/MANIFEST.txt Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/README.md Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/inputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/modules.tf Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/monitors-ecs-fargate.tf Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/outputs.tf Normal file → Executable file
View File

0
cloud/aws/ecs/fargate/versions.tf Normal file → Executable file
View File

0
cloud/aws/elasticache/common/MANIFEST.txt Normal file → Executable file
View File

Some files were not shown because too many files have changed in this diff Show More