18
18
@npm_node_urls = "[\" http://$NODE_IP:10091/node-metrics\" ]"
19
19
@npm_cluster_urls = "[\" http://npm-metrics-cluster-service.kube-system:9000/cluster-metrics\" ]"
20
20
@npm_basic_drop_metrics_cluster = "[\" npm_ipset_counts\" ]"
21
+ @collect_subnet_ip_usage_metrics = false
22
+ @azure_subnet_ip_usage_metrics_node_urls = "[\" http://$NODE_IP:10092/metrics\" ]"
23
+ @azure_subnet_ip_usage_default_setting = "[]"
21
24
@tgfConfigFileDS = "/etc/opt/microsoft/docker-cimprov/telegraf.conf"
22
25
@tgfConfigFileRS = "/etc/opt/microsoft/docker-cimprov/telegraf-rs.conf"
23
26
@replicaset = "replicaset"
@@ -43,6 +46,21 @@ def parseConfigMap
43
46
44
47
# Use the ruby structure created after config parsing to set the right values to be used as environment variables
45
48
def populateSettingValuesFromConfigMap ( parsedConfig )
49
+ begin
50
+ if !parsedConfig . nil? && !parsedConfig [ :integrations ] . nil? && !parsedConfig [ :integrations ] [ :azure_subnet_ip_usage ] . nil? && !parsedConfig [ :integrations ] [ :azure_subnet_ip_usage ] [ :enabled ] . nil?
51
+ azure_subnet_ip_usage_metrics = parsedConfig [ :integrations ] [ :azure_subnet_ip_usage ] [ :enabled ] . to_s
52
+ puts "config::azure_subnet_ip_usage::got:integrations.azure_subnet_ip_usage.enabled='#{ azure_subnet_ip_usage_metrics } '"
53
+ if !azure_subnet_ip_usage_metrics . nil? && azure_subnet_ip_usage_metrics . strip . casecmp ( "true" ) == 0
54
+ @collect_azure_subnet_ip_usage_metrics = true
55
+ else
56
+ @collect_azure_subnet_ip_usage_metrics = false
57
+ end
58
+ puts "config::azure_subnet_ip_usage::got:integrations.azure_subnet_ip_usage.enabled=#{ @collect_azure_subnet_ip_usage_metrics } "
59
+ end
60
+ rescue => errorStr
61
+ puts "config::npm::error:Exception while reading config settings for azure_subnet_ip_usage setting - #{ errorStr } , using defaults"
62
+ @collect_azure_subnet_ip_usage_metrics = false
63
+ end
46
64
begin
47
65
if !parsedConfig . nil? && !parsedConfig [ :integrations ] . nil? && !parsedConfig [ :integrations ] [ :azure_network_policy_manager ] . nil? && !parsedConfig [ :integrations ] [ :azure_network_policy_manager ] [ :collect_advanced_metrics ] . nil?
48
66
advanced_npm_metrics = parsedConfig [ :integrations ] [ :azure_network_policy_manager ] [ :collect_advanced_metrics ] . to_s
@@ -76,18 +94,19 @@ def populateSettingValuesFromConfigMap(parsedConfig)
76
94
end
77
95
78
96
@configSchemaVersion = ENV [ "AZMON_AGENT_CFG_SCHEMA_VERSION" ]
79
- puts "****************Start NPM Config Processing********************"
97
+ puts "****************Start NPM & subnet ip usage integrations Config Processing********************"
80
98
if !@configSchemaVersion . nil? && !@configSchemaVersion . empty? && @configSchemaVersion . strip . casecmp ( "v1" ) == 0 #note v1 is the only supported schema version , so hardcoding it
81
99
configMapSettings = parseConfigMap
82
100
if !configMapSettings . nil?
83
101
populateSettingValuesFromConfigMap ( configMapSettings )
84
102
end
85
103
else
86
104
if ( File . file? ( @configMapMountPath ) )
87
- ConfigParseErrorLogger . logError ( "config::npm ::unsupported/missing config schema version - '#{ @configSchemaVersion } ' , using defaults, please use supported schema version" )
105
+ ConfigParseErrorLogger . logError ( "config::integrations ::unsupported/missing config schema version - '#{ @configSchemaVersion } ' , using defaults, please use supported schema version" )
88
106
end
89
107
@collect_basic_npm_metrics = false
90
108
@collect_advanced_npm_metrics = false
109
+ @collect_azure_subnet_ip_usage_metrics = false
91
110
end
92
111
93
112
@@ -99,7 +118,7 @@ def populateSettingValuesFromConfigMap(parsedConfig)
99
118
tgfConfigFile = @tgfConfigFileRS
100
119
end
101
120
102
- #replace place holders in configuration file
121
+ #replace place holders in configuration file for npm integration
103
122
tgfConfig = File . read ( tgfConfigFile ) #read returns only after closing the file
104
123
105
124
if @collect_advanced_npm_metrics == true
@@ -116,8 +135,19 @@ def populateSettingValuesFromConfigMap(parsedConfig)
116
135
tgfConfig = tgfConfig . gsub ( "$AZMON_INTEGRATION_NPM_METRICS_DROP_LIST_CLUSTER" , @npm_default_setting )
117
136
end
118
137
138
+ #replace place holders in configuration file for subnet ip usage integration
139
+ if @collect_azure_subnet_ip_usage_metrics == true
140
+ tgfConfig = tgfConfig . gsub ( "$AZMON_INTEGRATION_SUBNET_IP_USAGE_METRICS_URL_LIST_NODE" , @azure_subnet_ip_usage_metrics_node_urls )
141
+ else
142
+ tgfConfig = tgfConfig . gsub ( "$AZMON_INTEGRATION_SUBNET_IP_USAGE_METRICS_URL_LIST_NODE" , @azure_subnet_ip_usage_default_setting )
143
+ end
144
+
145
+ File . open ( tgfConfigFile , "w" ) { |file | file . puts tgfConfig } # 'file' will be closed here after it goes out of scope
146
+ puts "config::integrations::Successfully substituted the placeholders for integrations into #{ tgfConfigFile } file for #{ controller } "
147
+
148
+
119
149
File . open ( tgfConfigFile , "w" ) { |file | file . puts tgfConfig } # 'file' will be closed here after it goes out of scope
120
- puts "config::npm ::Successfully substituted the NPM placeholders into #{ tgfConfigFile } file for #{ controller } "
150
+ puts "config::integrations ::Successfully substituted the integrations placeholders into #{ tgfConfigFile } file for #{ controller } "
121
151
122
152
# Write the telemetry to file, so that they can be set as environment variables
123
153
telemetryFile = File . open ( "integration_npm_config_env_var" , "w" )
@@ -128,9 +158,12 @@ def populateSettingValuesFromConfigMap(parsedConfig)
128
158
elsif @collect_basic_npm_metrics == true
129
159
telemetryFile . write ( "export TELEMETRY_NPM_INTEGRATION_METRICS_BASIC=1\n " )
130
160
end
161
+ if @collect_azure_subnet_ip_usage_metrics == true
162
+ telemetryFile . write ( "export TELEMETRY_SUBNET_IP_USAGE_INTEGRATION_METRICS=1\n " )
163
+ end
131
164
# Close file after writing all environment variables
132
165
telemetryFile . close
133
166
else
134
- puts "config::npm ::Exception while opening file for writing NPM telemetry environment variables"
167
+ puts "config::integrations ::Exception while opening file for writing Integrations telemetry environment variables"
135
168
puts "****************End NPM Config Processing********************"
136
169
end
0 commit comments