mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-01 00:42:13 +08:00 
			
		
		
		
	* fix:log * fix: add log * fix: del return * fix: push config * feat: add push err log and extend push wait time * feat: group config * feat: add log in write binary msg * feat: Modify Prometheus data scraping ports and reserve port space. * feat: change group rpc num * feat: change log * fix: remove quotation mark
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # 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: [internal_ip: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
 | |
| 
 | |
|   # prometheus fetches application services
 | |
|   - job_name: node_exporter
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20500 ]
 | |
|   - job_name: openimserver-openim-api
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20502 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-msggateway
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20640 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-msgtransfer
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20600, internal_ip:20601, internal_ip:20602, internal_ip:20603 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-push
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20670, internal_ip:20671, internal_ip:20672, internal_ip:20673]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-auth
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20600 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-conversation
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20680 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-friend
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20620 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-group
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20650 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-msg
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20630 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-third
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20690 ]
 | |
|         labels:
 | |
|           namespace: default
 | |
|   - job_name: openimserver-openim-rpc-user
 | |
|     static_configs:
 | |
|       - targets: [ internal_ip:20610 ]
 | |
|         labels:
 | |
|           namespace: default |