- Implemented PolicyDslValidator with command-line options for strict mode and JSON output. - Created PolicySchemaExporter to generate JSON schemas for policy-related models. - Developed PolicySimulationSmoke tool to validate policy simulations against expected outcomes. - Added project files and necessary dependencies for each tool. - Ensured proper error handling and usage instructions across tools.
		
			
				
	
	
		
			20 lines
		
	
	
		
			654 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			654 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
global:
 | 
						|
  scrape_interval: 15s
 | 
						|
  evaluation_interval: 30s
 | 
						|
 | 
						|
scrape_configs:
 | 
						|
  - job_name: "stellaops-otel-collector"
 | 
						|
    scheme: https
 | 
						|
    metrics_path: /
 | 
						|
    tls_config:
 | 
						|
      ca_file: ${PROMETHEUS_TLS_CA_FILE:-/etc/telemetry/tls/ca.crt}
 | 
						|
      cert_file: ${PROMETHEUS_TLS_CERT_FILE:-/etc/telemetry/tls/client.crt}
 | 
						|
      key_file: ${PROMETHEUS_TLS_KEY_FILE:-/etc/telemetry/tls/client.key}
 | 
						|
      insecure_skip_verify: false
 | 
						|
    authorization:
 | 
						|
      type: Bearer
 | 
						|
      credentials_file: ${PROMETHEUS_BEARER_TOKEN_FILE:-/etc/telemetry/auth/token}
 | 
						|
    static_configs:
 | 
						|
      - targets:
 | 
						|
          - ${PROMETHEUS_COLLECTOR_TARGET:-stellaops-otel-collector:9464}
 |