Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-chat-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-chat-server
Commits
b2717b1e
Commit
b2717b1e
authored
4 months ago
by
Ole Langbehn
Browse files
Options
Downloads
Patches
Plain Diff
feat(monitoring): HOLI-10120 HOLI-10121 pull monitoring into terraform
parent
e7b793a1
Branches
release/1.6.0
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
terraform/environments/init.tf
+8
-0
8 additions, 0 deletions
terraform/environments/init.tf
terraform/environments/monitoring.tf
+2
-2
2 additions, 2 deletions
terraform/environments/monitoring.tf
with
10 additions
and
2 deletions
terraform/environments/init.tf
+
8
−
0
View file @
b2717b1e
...
@@ -13,6 +13,14 @@ data "terraform_remote_state" "holi_infra_state" {
...
@@ -13,6 +13,14 @@ data "terraform_remote_state" "holi_infra_state" {
}
}
}
}
data
"terraform_remote_state"
"holi_infra_monitoring_state"
{
backend
=
"gcs"
config
=
{
bucket
=
"holi-shared-terraform-state"
prefix
=
"infra-monitoring"
}
}
data
"terraform_remote_state"
"holi_chat_server_common_state"
{
data
"terraform_remote_state"
"holi_chat_server_common_state"
{
backend
=
"gcs"
backend
=
"gcs"
config
=
{
config
=
{
...
...
This diff is collapsed.
Click to expand it.
terraform/environments/monitoring.tf
+
2
−
2
View file @
b2717b1e
resource
"google_monitoring_alert_policy"
"chat_server_cpu_utilization"
{
resource
"google_monitoring_alert_policy"
"chat_server_cpu_utilization"
{
count
=
local
.
environment
==
"production"
?
1
:
0
count
=
local
.
environment
==
"production"
?
1
:
0
display_name
=
"COMO: Production chat server CPU utilization exceeded"
display_name
=
"COMO: Production chat server CPU utilization exceeded"
notification_channels
=
[
data
.
terraform_remote_state
.
holi_infra_state
.
outputs
.
monitoring_notification_channel_rocket_chat_production_id
]
notification_channels
=
[
data
.
terraform_remote_state
.
holi_infra_
monitoring_
state
.
outputs
.
monitoring_notification_channel_rocket_chat_production_id
]
severity
=
"WARNING"
severity
=
"WARNING"
alert_strategy
{
alert_strategy
{
auto_close
=
"86400s"
# 1 day
auto_close
=
"86400s"
# 1 day
...
@@ -41,7 +41,7 @@ resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" {
...
@@ -41,7 +41,7 @@ resource "google_monitoring_alert_policy" "chat_server_cpu_utilization" {
resource
"google_monitoring_alert_policy"
"chat_server_memory_utilization"
{
resource
"google_monitoring_alert_policy"
"chat_server_memory_utilization"
{
count
=
local
.
environment
==
"production"
?
1
:
0
count
=
local
.
environment
==
"production"
?
1
:
0
display_name
=
"COMO:
${
local
.
environment
}
chat server memory utilization exceeded"
display_name
=
"COMO:
${
local
.
environment
}
chat server memory utilization exceeded"
notification_channels
=
[
data
.
terraform_remote_state
.
holi_infra_state
.
outputs
.
monitoring_notification_channel_rocket_chat_production_id
]
notification_channels
=
[
data
.
terraform_remote_state
.
holi_infra_
monitoring_
state
.
outputs
.
monitoring_notification_channel_rocket_chat_production_id
]
severity
=
"WARNING"
severity
=
"WARNING"
alert_strategy
{
alert_strategy
{
auto_close
=
"86400s"
# 1 day
auto_close
=
"86400s"
# 1 day
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment