-
Notifications
You must be signed in to change notification settings - Fork 3
Refactor Lightstep to cloud observability #95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.