-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
57 lines (47 loc) · 1.92 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#****************************************************************
# General information
#****************************************************************
# Total no of web urls for blackbox healthcheck probing (eg: Azure api, frontdoor etc.)
WEB_COUNT=2
# Environment name
ENV=production
# Name of project
PROJECT_NAME=sample_project
# Path of mount folder (eg: /home/nitin , C:/nitin)
MOUNT_DIR=/home
# Web hook url for slack
SLACK_WEB_HOOK_URL="https://hooks.slack.com/services/sample_slack_url"
# Slack channel name for alert to be sent
SLACK_CHANNEL_NAME=sample_channel
# For azure monitoring, below parameters must to be filled. Please refer readme document.
TENANT_ID=sample_tenant_id
SUBSCRIPTION_ID=sample_subscription_id
CLIENT_ID=sample_client_id
CLIENT_SECRET=sample_client_secret
#****************************************************************
# Information about monitoring vm host
#****************************************************************
# IP address of monitoring machine. [Private IP is recommended (eg: 1.0.0.6)]
MONITORING_IP_ADDRESS=localhost
# Azure resource group name
MONITORING_RESOURCE_GROUP=sample_rg
# Azure resource name (name of vm)
MONITORING_RESOURCE_NAME=sample_monitoring
#****************************************************************
# Information about web url for blackbox healthcheck probing
# Please create similar key-value pair section for other services
#****************************************************************
## WEB0
# URL of web service for which health check monitoring has to be done.
WEB0_URL=https://sample_api.com/healthcheck
# Azure resource group name
WEB0_RESOURCE_GROUP=sample_rg
# Azure resource name
WEB0_RESOURCE_NAME=sample_api
## WEB1
# URL of web service for which health check monitoring has to be done.
WEB1_URL=http://sample_frontdoor.com/healthcheck
# Azure resource group name
WEB1_RESOURCE_GROUP=sample_rg
# Azure resource name
WEB1_RESOURCE_NAME=sample_frontdoor