- 
                Notifications
    You must be signed in to change notification settings 
- Fork 629
tests: add more tests #1002
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
            skl
  merged 8 commits into
  kubernetes-monitoring:master
from
lorenzofelletti:tests/more-testing
  
      
      
   
  Feb 7, 2025 
      
    
  
     Merged
                    tests: add more tests #1002
Changes from all commits
      Commits
    
    
            Show all changes
          
          
            8 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      26a88f4
              
                test: move tests to dedicated directory
              
              
                lorenzofelletti 03f2433
              
                test: (wip) add apiserver tests
              
              
                lorenzofelletti bf3515c
              
                Merge branch 'master' into tests/more-testing
              
              
                lorenzofelletti d9446ed
              
                Merge branch 'master' into tests/more-testing
              
              
                lorenzofelletti afed9af
              
                feat: add test group name
              
              
                lorenzofelletti a18d9e1
              
                test: update apiserver availability tests to include new metrics and …
              
              
                lorenzofelletti 903d47c
              
                Merge branch 'master' into tests/more-testing
              
              
                lorenzofelletti 1a60b55
              
                refactor(tests): update labels format in apiserver availability tests
              
              
                lorenzofelletti File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| rule_files: | ||
| - ../prometheus_alerts.yaml | ||
| - ../prometheus_rules.yaml | ||
|  | ||
| evaluation_interval: 1m | ||
|  | ||
| tests: | ||
| - name: calculate apiserver request total increase 1h rate | ||
| interval: 1m | ||
| input_series: | ||
| # 100 requests in the overall interval, 99 successful and 1 error | ||
| - series: 'apiserver_request_total{job="kube-apiserver",verb="GET",code="200"}' | ||
| values: '0 10 20 50 90 99' | ||
| - series: 'apiserver_request_total{job="kube-apiserver",verb="GET",code="500"}' | ||
| values: '0x2 1x2' | ||
|  | ||
| promql_expr_test: | ||
| - eval_time: 5m | ||
| expr: code_verb:apiserver_request_total:increase1h{verb="GET"} | ||
| exp_samples: | ||
| - labels: 'code_verb:apiserver_request_total:increase1h{code="200", verb="GET"}' | ||
| value: 99.0 | ||
| - labels: 'code_verb:apiserver_request_total:increase1h{code="500", verb="GET"}' | ||
| value: 1.0 | ||
|  | ||
| - name: calculate apiserver request total increase 30d rate | ||
| interval: 1m | ||
| input_series: | ||
| - series: code_verb:apiserver_request_total:increase1h{verb="GET",code="200"} | ||
| values: '10+10x9' | ||
| - series: code_verb:apiserver_request_total:increase1h{verb="GET",code="500"} | ||
| values: '0+1x9' | ||
|  | ||
| promql_expr_test: | ||
| - eval_time: 10m | ||
| expr: code_verb:apiserver_request_total:increase30d{verb="GET"} | ||
| exp_samples: | ||
| - labels: 'code_verb:apiserver_request_total:increase30d{code="200", verb="GET"}' | ||
| value: 3.96e+4 # average of the input series values times 24 (hours) times 30 (days) | ||
| - labels: 'code_verb:apiserver_request_total:increase30d{code="500", verb="GET"}' | ||
| value: 3.24e+3 | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.