-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from Percona-Lab/PSMDB_export_fix_v3
Adjust PSMDB tests for PMM3
- Loading branch information
Showing
9 changed files
with
212 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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 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,75 @@ | ||
name: PMM_PSMDB_PBM_FULL | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
pmm_version: | ||
description: "pmm2-client version" | ||
default: "3-dev-latest" | ||
required: false | ||
pmm_image: | ||
description: "pmm-server docker image" | ||
default: "perconalab/pmm-server:3-dev-latest" | ||
required: false | ||
|
||
push: | ||
branches: | ||
- main | ||
- v3 | ||
|
||
pull_request: | ||
branches: | ||
- main | ||
- v3 | ||
|
||
jobs: | ||
test_replica_set: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
psmdb: ["6.0", "7.0", "8.0"] | ||
env: | ||
PMM_CLIENT_VERSION: ${{ inputs.pmm_version || '3-dev-latest' }} | ||
PMM_IMAGE: ${{ inputs.pmm_image || 'perconalab/pmm-server:3-dev-latest' }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test RS with PSMDB ${{ matrix.psmdb }} | ||
run: | | ||
PSMDB_VERSION=${{ matrix.psmdb }} ./start-rs.sh | ||
working-directory: ./pmm_psmdb-pbm_setup | ||
|
||
test_sharded_cluster: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
psmdb: ["6.0", "7.0", "8.0"] | ||
env: | ||
PMM_CLIENT_VERSION: ${{ inputs.pmm_version || '3-dev-latest' }} | ||
PMM_IMAGE: ${{ inputs.pmm_image || 'perconalab/pmm-server:3-dev-latest' }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test sharded with PSMDB ${{ matrix.psmdb }} | ||
run: | | ||
PSMDB_VERSION=${{ matrix.psmdb }} ./start-sharded.sh | ||
working-directory: ./pmm_psmdb-pbm_setup | ||
|
||
test_diff_auth: | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
psmdb: ["6.0", "7.0", "8.0"] | ||
env: | ||
PMM_CLIENT_VERSION: ${{ inputs.pmm_version || '3-dev-latest' }} | ||
PMM_IMAGE: ${{ inputs.pmm_image || 'perconalab/pmm-server:3-dev-latest' }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Test auth with PSMDB ${{ matrix.psmdb }} | ||
run: | | ||
PSMDB_VERSION=${{ matrix.psmdb }} ./test-auth.sh | ||
working-directory: ./pmm_psmdb_diffauth_setup |
This file contains 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 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,38 @@ | ||
mongodb_up | ||
mongodb_mongod_global_lock_client | ||
mongodb_mongod_global_lock_current_queue | ||
mongodb_mongod_instance_uptime_seconds | ||
mongodb_mongod_locks_time_acquiring_global_microseconds_total | ||
mongodb_mongod_metrics_cursor_open | ||
mongodb_mongod_metrics_cursor_timed_out_total | ||
mongodb_mongod_metrics_document_total | ||
mongodb_mongod_metrics_get_last_error_wtime_num_total | ||
mongodb_mongod_metrics_get_last_error_wtime_total_milliseconds | ||
mongodb_mongod_metrics_get_last_error_wtimeouts_total | ||
mongodb_mongod_metrics_operation_total | ||
mongodb_mongod_metrics_query_executor_total | ||
mongodb_mongod_metrics_ttl_deleted_documents_total | ||
mongodb_mongod_metrics_ttl_passes_total | ||
mongodb_mongod_op_counters_repl_total | ||
mongodb_mongod_op_latencies_latency_total | ||
mongodb_mongod_op_latencies_ops_total | ||
mongodb_mongod_storage_engine | ||
mongodb_mongod_wiredtiger_blockmanager_bytes_total | ||
mongodb_mongod_wiredtiger_cache_bytes | ||
mongodb_mongod_wiredtiger_cache_bytes_total | ||
mongodb_mongod_wiredtiger_cache_evicted_total | ||
mongodb_mongod_wiredtiger_cache_max_bytes | ||
mongodb_mongod_wiredtiger_cache_overhead_percent | ||
mongodb_mongod_wiredtiger_cache_pages | ||
mongodb_mongod_wiredtiger_cache_pages_total | ||
mongodb_mongod_wiredtiger_concurrent_transactions_available_tickets | ||
mongodb_mongod_wiredtiger_concurrent_transactions_out_tickets | ||
mongodb_mongod_wiredtiger_concurrent_transactions_total_tickets | ||
mongodb_mongod_wiredtiger_log_bytes_total | ||
mongodb_mongod_wiredtiger_log_operations_total | ||
mongodb_mongod_wiredtiger_log_records_scanned_total | ||
mongodb_mongod_wiredtiger_log_records_total | ||
mongodb_mongod_wiredtiger_session_open_sessions_total | ||
mongodb_mongod_wiredtiger_transactions_checkpoint_milliseconds | ||
mongodb_mongod_wiredtiger_transactions_checkpoint_milliseconds_total | ||
mongodb_mongod_wiredtiger_transactions_total |
This file contains 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 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 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 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,38 @@ | ||
mongodb_up | ||
mongodb_mongod_global_lock_client | ||
mongodb_mongod_global_lock_current_queue | ||
mongodb_mongod_instance_uptime_seconds | ||
mongodb_mongod_locks_time_acquiring_global_microseconds_total | ||
mongodb_mongod_metrics_cursor_open | ||
mongodb_mongod_metrics_cursor_timed_out_total | ||
mongodb_mongod_metrics_document_total | ||
mongodb_mongod_metrics_get_last_error_wtime_num_total | ||
mongodb_mongod_metrics_get_last_error_wtime_total_milliseconds | ||
mongodb_mongod_metrics_get_last_error_wtimeouts_total | ||
mongodb_mongod_metrics_operation_total | ||
mongodb_mongod_metrics_query_executor_total | ||
mongodb_mongod_metrics_ttl_deleted_documents_total | ||
mongodb_mongod_metrics_ttl_passes_total | ||
mongodb_mongod_op_counters_repl_total | ||
mongodb_mongod_op_latencies_latency_total | ||
mongodb_mongod_op_latencies_ops_total | ||
mongodb_mongod_storage_engine | ||
mongodb_mongod_wiredtiger_blockmanager_bytes_total | ||
mongodb_mongod_wiredtiger_cache_bytes | ||
mongodb_mongod_wiredtiger_cache_bytes_total | ||
mongodb_mongod_wiredtiger_cache_evicted_total | ||
mongodb_mongod_wiredtiger_cache_max_bytes | ||
mongodb_mongod_wiredtiger_cache_overhead_percent | ||
mongodb_mongod_wiredtiger_cache_pages | ||
mongodb_mongod_wiredtiger_cache_pages_total | ||
mongodb_mongod_wiredtiger_concurrent_transactions_available_tickets | ||
mongodb_mongod_wiredtiger_concurrent_transactions_out_tickets | ||
mongodb_mongod_wiredtiger_concurrent_transactions_total_tickets | ||
mongodb_mongod_wiredtiger_log_bytes_total | ||
mongodb_mongod_wiredtiger_log_operations_total | ||
mongodb_mongod_wiredtiger_log_records_scanned_total | ||
mongodb_mongod_wiredtiger_log_records_total | ||
mongodb_mongod_wiredtiger_session_open_sessions_total | ||
mongodb_mongod_wiredtiger_transactions_checkpoint_milliseconds | ||
mongodb_mongod_wiredtiger_transactions_checkpoint_milliseconds_total | ||
mongodb_mongod_wiredtiger_transactions_total |
This file contains 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