mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +08:00 
			
		
		
		
	* feat: add openim server code Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim env Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim mongo and redis env Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add zk and redis mongo env Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add kafka and redis mongo env Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim docker Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim docker Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim docker Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim copyright Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: docker compose Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: remove openim chat config file Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim config set Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * feat: add openim config set Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: fix Security vulnerability Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: fix Security vulnerability Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * fix: docker compose Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> * Update kubernetes.go * Update discoveryregister.go * fix: copyright-add Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Copyright © 2023 OpenIM. All rights reserved.
 | |
| #
 | |
| # Licensed under the Apache License, Version 2.0 (the "License");
 | |
| # you may not use this file except in compliance with the License.
 | |
| # You may obtain a copy of the License at
 | |
| #
 | |
| #     http://www.apache.org/licenses/LICENSE-2.0
 | |
| #
 | |
| # Unless required by applicable law or agreed to in writing, software
 | |
| # distributed under the License is distributed on an "AS IS" BASIS,
 | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| # See the License for the specific language governing permissions and
 | |
| # limitations under the License.
 | |
| 
 | |
| # my global config
 | |
| global:
 | |
|   scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
 | |
|   evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
 | |
|   # scrape_timeout is set to the global default (10s).
 | |
| 
 | |
| # Alertmanager configuration
 | |
| alerting:
 | |
|   alertmanagers:
 | |
|     - static_configs:
 | |
|         - targets: ['172.28.0.1:19093']
 | |
| 
 | |
| # Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
 | |
| rule_files:
 | |
|   - "instance-down-rules.yml"
 | |
| # - "first_rules.yml"
 | |
| # - "second_rules.yml"
 | |
| 
 | |
| # A scrape configuration containing exactly one endpoint to scrape:
 | |
| # Here it's Prometheus itself.
 | |
| scrape_configs:
 | |
|   # The job name is added as a label "job='job_name'"" to any timeseries scraped from this config.
 | |
|   # Monitored information captured by prometheus
 | |
|   - job_name: 'node-exporter'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:19100' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
| 
 | |
|   # prometheus fetches application services
 | |
|   - job_name: 'openimserver-openim-api'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20100' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-msggateway'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20140' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-msgtransfer'
 | |
|     static_configs:
 | |
|       - targets: [ 172.28.0.1:21400, 172.28.0.1:21401, 172.28.0.1:21402, 172.28.0.1:21403 ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-push'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20170' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-auth'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20160' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-conversation'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20230' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-friend'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20120' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-group'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20150' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-msg'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20130' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-third'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:21301' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 | |
|   - job_name: 'openimserver-openim-rpc-user'
 | |
|     static_configs:
 | |
|       - targets: [ '172.28.0.1:20110' ]
 | |
|         labels:
 | |
|           namespace: 'default'
 |