-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Lightstep to cloud observability (#95)
- Loading branch information
Showing
205 changed files
with
579 additions
and
581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Lightstep AWS Application ELB Dashboard Example | ||
# Cloud Observability AWS Application ELB Dashboard Example | ||
|
||
This folder shows an example of using Terraform code to create a dashboard in Lightstep for Amazon Application ELBs using data from the [Lightstep Cloudwatch Metrics Streams integration](https://docs.lightstep.com/docs/setup-aws-for-metrics). | ||
This folder shows an example of using Terraform code to create a dashboard in Cloud Observability for Amazon Application ELBs using data from the [Cloud Observability Cloudwatch Metrics Streams integration](https://docs.lightstep.com/docs/setup-aws-for-metrics). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,15 @@ terraform { | |
} | ||
|
||
provider "lightstep" { | ||
api_key_env_var = var.lightstep_api_key_env_var | ||
organization = var.lightstep_organization | ||
environment = var.lightstep_env | ||
api_key_env_var = var.cloud_observability_api_key_env_var | ||
organization = var.cloud_observability_organization | ||
environment = var.cloud_observability_env | ||
} | ||
|
||
module "lightstep_applicationelb_dashboard" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:lightstep/terraform-lightstep-aws-dashboards.git//modules/ec2-dashboard?ref=v0.0.1" | ||
source = "../../modules/applicationelb-dashboard" | ||
lightstep_project = var.lightstep_project | ||
source = "../../modules/applicationelb-dashboard" | ||
cloud_observability_project = var.cloud_observability_project | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
output "lightstep_app_elb_dashboard_url" { | ||
value = module.lightstep_applicationelb_dashboard.dashboard_url | ||
description = "Lightstep AWS Application ELB Dashboard URL" | ||
description = "Cloud Observability AWS Application ELB Dashboard URL" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
variable "lightstep_project" { | ||
description = "Name of Lightstep project" | ||
variable "cloud_observability_project" { | ||
description = "Name of Cloud Observability project" | ||
type = string | ||
} | ||
|
||
variable "lightstep_organization" { | ||
description = "Name of Lightstep organization" | ||
variable "cloud_observability_organization" { | ||
description = "Name of Cloud Observability organization" | ||
type = string | ||
} | ||
|
||
variable "lightstep_env" { | ||
description = "Lightstep environment" | ||
variable "cloud_observability_env" { | ||
description = "Cloud Observability environment" | ||
type = string | ||
default = "public" | ||
} | ||
|
||
variable "lightstep_api_key_env_var" { | ||
description = "Name of the local environment variable that contains the Lightstep API key" | ||
variable "cloud_observability_api_key_env_var" { | ||
description = "Name of the local environment variable that contains the Cloud Observability API key" | ||
type = string | ||
default = "LIGHTSTEP_API_KEY" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ module "lightstep_ec2_dashboard" { | |
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:lightstep/terraform-lightstep-aws-dashboards.git//modules/ec2-dashboard?ref=v0.0.1" | ||
source = "../../modules/ec2-dashboard" | ||
lightstep_project = var.lightstep_project | ||
aws_region = "us-west-2" | ||
source = "../../modules/ec2-dashboard" | ||
cloud_observability_project = var.cloud_observability_project | ||
aws_region = "us-west-2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
output "lightstep_aws_ec2_dashboard_url" { | ||
value = module.lightstep_ec2_dashboards.dashboard_url | ||
description = "Lightstep AWS EC2 Dashboard URL" | ||
description = "Cloud Observability AWS EC2 Dashboard URL" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
variable "lightstep_project" { | ||
description = "Name of Lightstep project" | ||
variable "cloud_observability_project" { | ||
description = "Name of Cloud Observability project" | ||
type = string | ||
} | ||
|
||
variable "lightstep_organization" { | ||
description = "Name of Lightstep organization" | ||
description = "Name of Cloud Observability organization" | ||
type = string | ||
} | ||
|
||
variable "lightstep_env" { | ||
description = "Lightstep environment" | ||
description = "Cloud Observability environment" | ||
type = string | ||
default = "public" | ||
} | ||
|
||
variable "lightstep_api_key_env_var" { | ||
description = "Name of the local environment variable that contains the Lightstep API key" | ||
description = "Name of the local environment variable that contains the Cloud Observability API key" | ||
type = string | ||
default = "LIGHTSTEP_API_KEY" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Lightstep AWS RDS Dashboard Example | ||
# Cloud Observability AWS RDS Dashboard Example | ||
|
||
This folder shows an example of using Terraform code to create a dashboard in Lightstep for Amazon RDS databases using data from the [Lightstep Cloudwatch Metrics Streams integration](https://docs.lightstep.com/docs/setup-aws-for-metrics). | ||
This folder shows an example of using Terraform code to create a dashboard in Cloud Observability for Amazon RDS databases using data from the [Cloud Observability Cloudwatch Metrics Streams integration](https://docs.lightstep.com/docs/setup-aws-for-metrics). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ module "lightstep_ec2_dashboard" { | |
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:lightstep/terraform-lightstep-aws-dashboards.git//modules/ec2-dashboard?ref=v0.0.1" | ||
source = "../../modules/rds-dashboard" | ||
lightstep_project = var.lightstep_project | ||
aws_region = "us-west-2" | ||
source = "../../modules/rds-dashboard" | ||
cloud_observability_project = var.cloud_observability_project | ||
aws_region = "us-west-2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
output "lightstep_aws_rds_dashboard_url" { | ||
value = module.lightstep_rds_dashboard.dashboard_url | ||
description = "Lightstep AWS RDS Dashboard URL" | ||
description = "Cloud Observability AWS RDS Dashboard URL" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
variable "lightstep_project" { | ||
description = "Name of Lightstep project" | ||
variable "cloud_observability_project" { | ||
description = "Name of Cloud Observability project" | ||
type = string | ||
} | ||
|
||
variable "lightstep_organization" { | ||
description = "Name of Lightstep organization" | ||
variable "cloud_observability_organization" { | ||
description = "Name of Cloud Observability organization" | ||
type = string | ||
} | ||
|
||
variable "lightstep_env" { | ||
description = "Lightstep environment" | ||
variable "cloud_observability_env" { | ||
description = "Cloud Observability environment" | ||
type = string | ||
default = "public" | ||
} | ||
|
||
variable "lightstep_api_key_env_var" { | ||
description = "Name of the local environment variable that contains the Lightstep API key" | ||
variable "cloud_observability_api_key_env_var" { | ||
description = "Name of the local environment variable that contains the Cloud Observability API key" | ||
type = string | ||
default = "LIGHTSTEP_API_KEY" | ||
} |
Oops, something went wrong.