├── .ai └── codebase-notes.md ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── release_issue.md ├── dependabot.yml └── workflows │ ├── 01-powerpipe-release.yaml │ ├── 02-powerpipe-smoke-tests.yaml │ ├── 10-test-lint.yaml │ ├── 11-test-acceptance.yaml │ ├── 12-test-post-release-linux-distros.yaml │ ├── 30-stale.yaml │ └── 31-add-issues-to-pipeling-issue-tracker.yaml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── images ├── net_insights_console.png ├── net_insights_dashboard.png └── rnacentral.png ├── internal ├── cmd │ ├── check.go │ ├── dashboard.go │ ├── detection.go │ ├── login.go │ ├── mod.go │ ├── query.go │ ├── resource_cmd.go │ ├── root.go │ └── server.go ├── cmdconfig │ ├── app_specific.go │ ├── cmd_hooks.go │ ├── cmd_targets.go │ ├── diagnostics.go │ ├── flag.go │ ├── mappings.go │ ├── runtime.go │ └── validate.go ├── constants │ ├── build.go │ ├── db.go │ ├── descriptions.go │ ├── env.go │ ├── errors.go │ ├── extensions.go │ └── flags.go ├── controldisplay │ ├── color_scheme.go │ ├── control.go │ ├── control_exporter.go │ ├── control_result.go │ ├── detection.go │ ├── detection_group.go │ ├── detection_group_counter.go │ ├── detection_group_heading.go │ ├── detection_result.go │ ├── detection_summary.go │ ├── detection_table.go │ ├── detection_templates │ │ └── json │ │ │ ├── output.tmpl │ │ │ └── version.json │ ├── dimensions.go │ ├── error.go │ ├── format_resolver.go │ ├── formatter.go │ ├── formatter_fs.go │ ├── formatter_null.go │ ├── formatter_snapshot.go │ ├── formatter_template.go │ ├── formatter_template_test.go │ ├── formatter_test.go │ ├── formatter_text.go │ ├── get_exporters.go │ ├── group.go │ ├── group_counter.go │ ├── group_counter_graph.go │ ├── group_counter_graph_test.go │ ├── group_counter_test.go │ ├── group_heading.go │ ├── group_title.go │ ├── group_title_test.go │ ├── max_columns.go │ ├── output_formatters.go │ ├── output_template.go │ ├── result_reason.go │ ├── result_reason_test.go │ ├── result_status.go │ ├── result_status_test.go │ ├── severity.go │ ├── snapshot.go │ ├── spacer.go │ ├── spacer_test.go │ ├── summary.go │ ├── summary_severity.go │ ├── summary_severity_row.go │ ├── summary_status_row.go │ ├── summary_total_row.go │ ├── table.go │ ├── template_functions.go │ ├── template_functions_test.go │ ├── template_render_context.go │ ├── templates │ │ ├── asff.json │ │ │ ├── output.tmpl │ │ │ └── version.json │ │ ├── csv │ │ │ ├── output.tmpl │ │ │ └── version.json │ │ ├── html │ │ │ ├── favicon.b64 │ │ │ ├── logo.b64 │ │ │ ├── normalize.tmpl.css │ │ │ ├── output.tmpl │ │ │ ├── style.tmpl.css │ │ │ └── version.json │ │ ├── json │ │ │ ├── output.tmpl │ │ │ └── version.json │ │ ├── md │ │ │ ├── output.tmpl │ │ │ └── version.json │ │ └── nunit3.xml │ │ │ ├── output.tmpl │ │ │ └── version.json │ └── truncate.go ├── controlexecute │ ├── control_run.go │ ├── dimension.go │ ├── dimension_color_map.go │ ├── dimension_color_map_test.go │ ├── execution_tree.go │ ├── execution_tree_node.go │ ├── result_group.go │ └── result_row.go ├── controlinit │ └── init_data.go ├── controlstatus │ ├── context.go │ ├── control_hooks.go │ ├── control_hooks_null.go │ ├── control_hooks_snapshot.go │ ├── control_hooks_status.go │ ├── control_run_status_provider.go │ ├── progress.go │ └── status_summary.go ├── dashboardassets │ └── ensure.go ├── dashboardevents │ ├── control_complete.go │ ├── control_error.go │ ├── dashboard_changed.go │ ├── dashboard_event.go │ ├── execution_complete.go │ ├── execution_error.go │ ├── execution_started.go │ ├── input_values_cleared.go │ ├── leaf_node_updated.go │ └── workspace_error.go ├── dashboardexecute │ ├── check_run.go │ ├── container_run.go │ ├── control_hooks_dashboard_event.go │ ├── dashboard_execution_tree.go │ ├── dashboard_parent_impl.go │ ├── dashboard_run.go │ ├── dashboard_tree_run_impl.go │ ├── detection_benchmark_display.go │ ├── detection_benchmark_display_tree.go │ ├── detection_benchmark_run.go │ ├── detection_run.go │ ├── executor.go │ ├── input_values.go │ ├── leaf_run.go │ ├── leaf_run_option.go │ ├── referenced_variables.go │ ├── runtime_dependency_publisher.go │ ├── runtime_dependency_publisher_impl.go │ ├── runtime_dependency_publisher_option.go │ ├── runtime_dependency_publisher_target.go │ ├── runtime_dependency_subscriber.go │ ├── runtime_dependency_subscriber_impl.go │ └── snapshot.go ├── dashboardserver │ ├── api.go │ ├── backend_support.go │ ├── output.go │ ├── payload.go │ ├── server.go │ └── types.go ├── dashboardtypes │ ├── dashboard_parent.go │ ├── dashboard_tree_run.go │ ├── leaf_data.go │ ├── resolved_runtime_dependency.go │ ├── resolved_runtime_dependency_value.go │ └── run_status.go ├── db_client │ ├── client_map.go │ ├── cloud.go │ ├── database_config.go │ ├── db_client.go │ ├── db_client_connect.go │ ├── db_client_execute.go │ ├── init.go │ ├── max_connections.go │ ├── pgx_connector.go │ ├── postgres.go │ └── sql_types.go ├── display │ ├── column.go │ ├── list_resources.go │ ├── pager.go │ ├── printable_hcl_resource.go │ └── timing.go ├── initialisation │ ├── init_data.go │ └── init_result.go ├── logger │ └── logger.go ├── parse │ ├── decode_args.go │ ├── mod_decoder.go │ ├── query_invocation.go │ ├── query_invocation_test.go │ ├── schema.go │ └── validate.go ├── powerpipeconfig │ ├── powerpipe_config.go │ └── powerpipe_config_load.go ├── queryresult │ ├── result.go │ └── result_streamer.go ├── resources │ ├── control.go │ ├── control_benchmark.go │ ├── dashboard.go │ ├── dashboard_card.go │ ├── dashboard_category.go │ ├── dashboard_category_fold.go │ ├── dashboard_category_helpers.go │ ├── dashboard_category_list.go │ ├── dashboard_category_property.go │ ├── dashboard_category_property_list.go │ ├── dashboard_chart.go │ ├── dashboard_chart_axes.go │ ├── dashboard_chart_labels.go │ ├── dashboard_chart_legend.go │ ├── dashboard_chart_series.go │ ├── dashboard_chart_series_list.go │ ├── dashboard_chart_series_point.go │ ├── dashboard_container.go │ ├── dashboard_edge.go │ ├── dashboard_edge_list.go │ ├── dashboard_flow.go │ ├── dashboard_graph.go │ ├── dashboard_hierarchy.go │ ├── dashboard_image.go │ ├── dashboard_input.go │ ├── dashboard_leaf_node_impl.go │ ├── dashboard_node.go │ ├── dashboard_node_list.go │ ├── dashboard_option.go │ ├── dashboard_table.go │ ├── dashboard_table_column.go │ ├── dashboard_table_column_list.go │ ├── dashboard_text.go │ ├── dashboard_with.go │ ├── detection.go │ ├── detection_benchmark.go │ ├── diffs.go │ ├── generic_type.go │ ├── interfaces.go │ ├── mod_resources.go │ ├── node_edge_provider_impl.go │ ├── query.go │ ├── query_args.go │ ├── query_args_helpers.go │ ├── query_args_test.go │ ├── query_provider_impl.go │ ├── query_provider_impl_test.go │ ├── runtime_dependency.go │ ├── runtime_dependency_provider_impl.go │ └── with_provider_impl.go ├── service │ └── api │ │ ├── api.go │ │ ├── common │ │ ├── error.go │ │ ├── list.go │ │ ├── validators.go │ │ └── version.go │ │ └── service.go ├── snapshot │ ├── snapshot_tag.go │ └── snapshot_tag_test.go ├── types │ └── api.go └── workspace │ ├── load_workspace.go │ ├── load_workspace_options.go │ ├── powerpipe_workspace.go │ ├── resource_from_args.go │ ├── resources_of_type_test.go │ ├── tag_filter.go │ ├── tag_filter_test.go │ └── workspace_events.go ├── main.go ├── scripts ├── download_release.sh ├── install.sh ├── linux_container_info.sh ├── prepare_amazonlinux_container.sh ├── prepare_centos_container.sh ├── prepare_ubuntu_container.sh └── smoke_test.sh ├── tests └── acceptance │ ├── json_patch.sh │ ├── run-local.sh │ ├── run.sh │ ├── test_data │ ├── mods │ │ ├── control_rendering_test_mod │ │ │ ├── mod.pp │ │ │ ├── query │ │ │ │ ├── gen_query.pp │ │ │ │ └── gen_query_with_dimensions.pp │ │ │ └── sp_check_test │ │ │ │ ├── control_check_rendering.pp │ │ │ │ └── control_reasons_titles.pp │ │ ├── dashboard_cards │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── dashboard_graphs │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── dashboard_inputs │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── dashboard_inputs_with_base │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── dashboard_parsing_nested_node_edge_providers_fail │ │ │ ├── mod.pp │ │ │ └── query_providers_nested_require_sql.pp │ │ ├── dashboard_parsing_nested_query_providers_fail │ │ │ ├── mod.pp │ │ │ └── query_providers_nested_require_sql.pp │ │ ├── dashboard_parsing_top_level_query_providers_fail │ │ │ ├── mod.pp │ │ │ └── query_providers_top_level_require_sql.pp │ │ ├── dashboard_parsing_validation │ │ │ ├── mod.pp │ │ │ ├── nested_dashboards.pp │ │ │ ├── node_edge_providers_nested.pp │ │ │ ├── node_edge_providers_top_level.pp │ │ │ ├── query.pp │ │ │ ├── query_providers_nested.pp │ │ │ ├── query_providers_nested_dont_require_sql.pp │ │ │ ├── query_providers_top_level.pp │ │ │ └── query_providers_top_level_require_sql.pp │ │ ├── dashboard_sibling_containers │ │ │ ├── mod.pp │ │ │ └── report.pp │ │ ├── dashboard_texts │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── dashboard_withs │ │ │ ├── dashboard.pp │ │ │ └── mod.pp │ │ ├── duckdb_mod │ │ │ ├── README.md │ │ │ ├── employee.duckdb │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── functionality_test_mod │ │ │ ├── functionality │ │ │ │ ├── all_controls_ok.pp │ │ │ │ ├── cache.pp │ │ │ │ ├── control_args.pp │ │ │ │ ├── control_summary.pp │ │ │ │ ├── plugin_crash.pp │ │ │ │ └── same_control_reused.pp │ │ │ ├── mod.pp │ │ │ └── query │ │ │ │ ├── check_cache.pp │ │ │ │ ├── check_plugincrash_normalquery1.pp │ │ │ │ ├── check_plugincrash_normalquery2.pp │ │ │ │ ├── query_params.pp │ │ │ │ ├── search_path_1.pp │ │ │ │ ├── search_path_2.pp │ │ │ │ ├── static_query.pp │ │ │ │ └── static_query_2.pp │ │ ├── functionality_test_mod_sp │ │ │ ├── functionality │ │ │ │ ├── all_controls_ok.sp │ │ │ │ ├── cache.sp │ │ │ │ ├── control_args.sp │ │ │ │ ├── control_summary.sp │ │ │ │ └── plugin_crash.sp │ │ │ ├── mod.sp │ │ │ └── query │ │ │ │ ├── check_cache.sp │ │ │ │ ├── check_plugincrash_normalquery1.sp │ │ │ │ ├── check_plugincrash_normalquery2.sp │ │ │ │ ├── query_params.sp │ │ │ │ ├── search_path_1.sp │ │ │ │ ├── search_path_2.sp │ │ │ │ ├── static_query.sp │ │ │ │ └── static_query_2.sp │ │ ├── introspection_table_mod │ │ │ ├── expected_dashboard_flow_show_output.json │ │ │ ├── expected_dashboard_graph_show_output.json │ │ │ ├── mod.pp │ │ │ └── resources.pp │ │ ├── local_mod_with_mod.sp_file │ │ │ ├── foo │ │ │ └── mod.sp │ │ ├── mod_install │ │ │ └── mod-install.txt │ │ ├── mod_with_blank_dimension_value │ │ │ ├── control.pp │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_implicit_workspace │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_in_mod_and_resource │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_in_require │ │ │ ├── .mod.cache.json │ │ │ ├── .powerpipe │ │ │ │ └── mods │ │ │ │ │ └── github.com │ │ │ │ │ └── pskrbasu │ │ │ │ │ └── powerpipe-mod-db-var@v0.1.0 │ │ │ │ │ ├── mod.pp │ │ │ │ │ └── query.pp │ │ │ └── mod.pp │ │ ├── mod_with_db_in_require_var │ │ │ ├── .mod.cache.json │ │ │ ├── .powerpipe │ │ │ │ └── mods │ │ │ │ │ └── github.com │ │ │ │ │ └── pskrbasu │ │ │ │ │ └── powerpipe-mod-db-var@v0.1.0 │ │ │ │ │ ├── mod.pp │ │ │ │ │ └── query.pp │ │ │ └── mod.pp │ │ ├── mod_with_db_in_resource │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_steampipe_search_path │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_var │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_db_var_implicit_workspace │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_no_db │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mod_with_resource_db_steampipe_search_path │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── mysql_mod │ │ │ ├── README.md │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── postgresql_mod │ │ │ ├── README.md │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── sqlite_mod │ │ │ ├── README.md │ │ │ ├── chinook.db │ │ │ ├── mod.pp │ │ │ └── query.pp │ │ ├── tag_filtering_mod │ │ │ ├── mod.pp │ │ │ └── tag_filtering.sp │ │ ├── test_mods │ │ │ └── mod_installed │ │ │ │ ├── .mod.cache.json │ │ │ │ ├── .powerpipe │ │ │ │ └── mods │ │ │ │ │ └── github.com │ │ │ │ │ └── pskrbasu │ │ │ │ │ ├── powerpipe-mod-1@v1.0.0 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mod.sp │ │ │ │ │ └── query.sp │ │ │ │ │ ├── powerpipe-mod-2@v2.0.0 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ └── mod.sp │ │ │ │ │ └── powerpipe-mod-3@v1.0.0 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ └── mod.sp │ │ │ │ └── mod.pp │ │ ├── test_workspace_mod_var_precedence_set_from_both_ppvars │ │ │ ├── README.md │ │ │ ├── deps.auto.ppvars │ │ │ ├── mod.pp │ │ │ └── powerpipe.ppvars │ │ ├── test_workspace_mod_var_precedence_set_from_both_spvars │ │ │ ├── README.md │ │ │ ├── deps.auto.spvars │ │ │ ├── mod.sp │ │ │ └── steampipe.spvars │ │ ├── test_workspace_mod_var_precedence_set_from_steampipe_spvars │ │ │ ├── README.md │ │ │ ├── mod.sp │ │ │ └── steampipe.spvars │ │ ├── test_workspace_mod_var_set_from_auto.ppvars │ │ │ ├── README.md │ │ │ ├── dep.auto.ppvars │ │ │ └── mod.pp │ │ ├── test_workspace_mod_var_set_from_auto.spvars │ │ │ ├── README.md │ │ │ ├── dep.auto.spvars │ │ │ └── mod.sp │ │ ├── test_workspace_mod_var_set_from_command_line │ │ │ ├── README.md │ │ │ └── mod.pp │ │ ├── test_workspace_mod_var_set_from_explicit_ppvars │ │ │ ├── README.md │ │ │ ├── deps.ppvars │ │ │ └── mod.pp │ │ ├── test_workspace_mod_var_set_from_explicit_spvars │ │ │ ├── README.md │ │ │ ├── deps.spvars │ │ │ └── mod.sp │ │ ├── test_workspace_mod_var_set_from_powerpipe.ppvars │ │ │ ├── README.md │ │ │ ├── mod.pp │ │ │ └── powerpipe.ppvars │ │ └── tp_detection_mod │ │ │ ├── detection.pp │ │ │ ├── mod.pp │ │ │ └── variables.pp │ ├── scripts │ │ ├── update_top_level_mod_commit.sh │ │ └── update_top_level_mod_version.sh │ ├── snapshots │ │ ├── expected_sps_many_withs_dashboard.json │ │ ├── expected_sps_sibling_containers_report.json │ │ ├── expected_sps_testing_card_blocks_dashboard.json │ │ ├── expected_sps_testing_dashboard_inputs.json │ │ ├── expected_sps_testing_dashboard_inputs_with_base.json │ │ ├── expected_sps_testing_nodes_and_edges_dashboard.json │ │ ├── expected_sps_testing_text_blocks_dashboard.json │ │ ├── source.json │ │ └── target.json │ ├── source_files │ │ ├── config_tests │ │ │ ├── workspace_tests.json │ │ │ └── workspaces.ppc │ │ ├── mod_test_cases.json │ │ ├── sqlite_conn.ppc │ │ └── steampipe_default.ppc │ └── templates │ │ ├── expected_all_alarm.txt │ │ ├── expected_benchmark_show_output.json │ │ ├── expected_blank_dimension.txt │ │ ├── expected_check_csv.csv │ │ ├── expected_check_csv_multiple_parents.csv │ │ ├── expected_check_csv_noheader.csv │ │ ├── expected_check_csv_pipe_separator.csv │ │ ├── expected_check_csv_sorted_tags.csv │ │ ├── expected_check_html.html │ │ ├── expected_check_json.json │ │ ├── expected_check_json_multiple_parents.json │ │ ├── expected_check_markdown.md │ │ ├── expected_check_nunit3.xml │ │ ├── expected_check_snapshot.pps │ │ ├── expected_control_show_output.json │ │ ├── expected_dashboard_card_show_output.json │ │ ├── expected_dashboard_chart_show_output.json │ │ ├── expected_dashboard_container_show_output.json │ │ ├── expected_dashboard_flow_show_output.json │ │ ├── expected_dashboard_graph_show_output.json │ │ ├── expected_dashboard_hierarchy_show_output.json │ │ ├── expected_dashboard_image_show_output.json │ │ ├── expected_dashboard_show_output.json │ │ ├── expected_dashboard_table_show_output.json │ │ ├── expected_dashboard_text_show_output.json │ │ ├── expected_duckdb_backend_json_casting.csv │ │ ├── expected_duckdb_backend_total_employee.csv │ │ ├── expected_long_title.txt │ │ ├── expected_mixed_results.txt │ │ ├── expected_query_show_output.json │ │ ├── expected_reasons.txt │ │ ├── expected_short_title.txt │ │ ├── expected_static_query_csv_snapshot_mode.csv │ │ ├── expected_static_query_json_snapshot_mode.json │ │ ├── expected_static_query_table_snapshot_mode.txt │ │ ├── expected_tag_filter_not_true.json │ │ ├── expected_tag_filter_true.json │ │ ├── expected_unicode_title.txt │ │ ├── expected_variable_show_output.json │ │ ├── installed_3_mods.txt │ │ ├── installed_3_mods_branch.txt │ │ ├── installed_3_mods_partial.txt │ │ ├── mod_files.txt │ │ ├── mod_folder_structure.txt │ │ ├── mod_folder_structure_branch.txt │ │ ├── mod_test_template.bats.tmpl │ │ ├── mod_up_to_date.txt │ │ ├── top_level_mod_upgraded.txt │ │ └── top_level_mod_upgraded_branch.txt │ ├── test_files │ ├── backend.bats │ ├── check.bats │ ├── config_path.bats │ ├── config_precedence.bats │ ├── dashboard.bats │ ├── dashboard_parsing_validation.bats │ ├── database_precedence.bats │ ├── mod.bats │ ├── mod_install.bats │ ├── params_and_args.bats │ ├── resource_show_outputs.bats │ ├── snapshot.bats │ ├── sp_files.bats │ ├── tag_filtering.bats │ └── var_resolution.bats │ ├── test_generator │ └── generate.go │ └── url_parse.sh └── ui └── dashboard ├── .storybook ├── StoryWrapper.jsx ├── main.ts └── preview.jsx ├── .yarnrc.yml ├── Makefile ├── README.md ├── craco.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── favicon.png ├── favicon.svg ├── index.html ├── manifest.json └── robots.txt ├── scripts └── setupMaterialSymbols.js ├── spec.md ├── src ├── App.tsx ├── components │ ├── Badge │ │ └── index.tsx │ ├── CallToActions │ │ └── index.tsx │ ├── CodeBlock │ │ └── index.tsx │ ├── CopyToClipboard │ │ ├── index.stories.js │ │ └── index.tsx │ ├── DashboardControlsSummary │ │ └── index.tsx │ ├── DashboardHeader │ │ ├── PowerpipeLogo.tsx │ │ ├── index.tsx │ │ └── logos │ │ │ ├── powerpipe-logo-darkmode.svg │ │ │ ├── powerpipe-logo-wordmark-darkmode.svg │ │ │ ├── powerpipe-logo-wordmark.svg │ │ │ └── powerpipe-logo.svg │ ├── DashboardList │ │ ├── DashboardListOptionsButton.tsx │ │ └── index.tsx │ ├── DashboardListDisplayModeSelect │ │ └── index.tsx │ ├── DashboardListEmptyCallToAction │ │ └── index.tsx │ ├── DashboardSearch │ │ └── index.tsx │ ├── DashboardTagGroupSelect │ │ └── index.tsx │ ├── DateTime │ │ └── index.tsx │ ├── ErrorBoundary │ │ └── index.tsx │ ├── ErrorMessage │ │ ├── index.stories.js │ │ └── index.tsx │ ├── ExternalLink │ │ └── index.tsx │ ├── Icon │ │ └── index.tsx │ ├── IntegerDisplay │ │ ├── index.stories.js │ │ └── index.tsx │ ├── Modal │ │ ├── ErrorModal.tsx │ │ └── index.tsx │ ├── SearchInput │ │ └── index.tsx │ ├── SnapshotHeader │ │ └── index.tsx │ ├── SplitSnapshotButton │ │ └── index.tsx │ ├── ThemeToggle │ │ └── index.tsx │ ├── dashboards │ │ ├── Card │ │ │ ├── index.stories.js │ │ │ └── index.tsx │ │ ├── DatetimeRange │ │ │ ├── DatetimeRangePicker.tsx │ │ │ └── ManageDatetimeRangeButton.tsx │ │ ├── Error │ │ │ ├── index.stories.js │ │ │ └── index.tsx │ │ ├── Image │ │ │ ├── index.stories.js │ │ │ └── index.tsx │ │ ├── LoadingIndicator │ │ │ └── index.tsx │ │ ├── Placeholder │ │ │ └── index.tsx │ │ ├── SearchPath │ │ │ ├── ManageSearchPathButton.tsx │ │ │ ├── SearchPathConfig.tsx │ │ │ └── SearchPathEditor.tsx │ │ ├── Table │ │ │ ├── TableSettings.tsx │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── Text │ │ │ ├── index.stories.tsx │ │ │ └── index.tsx │ │ ├── WorkspaceErrorModal │ │ │ └── index.tsx │ │ ├── charts │ │ │ ├── AreaChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── BarChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── Chart │ │ │ │ ├── echarts.ts │ │ │ │ ├── index.stories.js │ │ │ │ ├── index.tsx │ │ │ │ └── themes │ │ │ │ │ ├── dark.ts │ │ │ │ │ └── light.ts │ │ │ ├── ColumnChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── DonutChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── HeatmapChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── LineChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── PieChart │ │ │ │ ├── index.stories.js │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── common │ │ │ ├── DashboardIcon.stories.tsx │ │ │ ├── DashboardIcon.tsx │ │ │ ├── NodeAndEdgePanelInformation.tsx │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── useNodeAndEdgeData.ts │ │ ├── data │ │ │ ├── CardDataProcessor.ts │ │ │ ├── PanelDataDiff.ts │ │ │ └── types.ts │ │ ├── flows │ │ │ ├── Flow │ │ │ │ └── index.tsx │ │ │ ├── Sankey │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── graphs │ │ │ ├── ForceDirectedGraph │ │ │ │ └── index.tsx │ │ │ ├── Graph │ │ │ │ ├── AssetNode.tsx │ │ │ │ ├── FloatingEdge.tsx │ │ │ │ ├── RowProperties.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── common │ │ │ │ └── useGraph.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── grouping │ │ │ ├── Benchmark │ │ │ │ ├── ControlDimension.tsx │ │ │ │ └── index.tsx │ │ │ ├── CheckGrouping │ │ │ │ └── index.tsx │ │ │ ├── CheckPanel │ │ │ │ └── index.tsx │ │ │ ├── CheckSummaryChart │ │ │ │ └── index.tsx │ │ │ ├── CustomizeViewSummary │ │ │ │ └── index.tsx │ │ │ ├── DetectionBenchmark │ │ │ │ └── index.tsx │ │ │ ├── DetectionGrouping │ │ │ │ └── index.tsx │ │ │ ├── DetectionPanel │ │ │ │ └── index.tsx │ │ │ ├── DetetctionSummaryChart │ │ │ │ └── index.tsx │ │ │ ├── DocumentationView │ │ │ │ └── index.tsx │ │ │ ├── FilterCardWrapper │ │ │ │ └── index.tsx │ │ │ ├── FilterConfig │ │ │ │ └── index.tsx │ │ │ ├── FilterEditor │ │ │ │ ├── index.test.ts │ │ │ │ └── index.tsx │ │ │ ├── GroupingConfig │ │ │ │ └── index.tsx │ │ │ ├── GroupingEditor │ │ │ │ └── index.tsx │ │ │ └── common │ │ │ │ ├── Benchmark.ts │ │ │ │ ├── Control.ts │ │ │ │ ├── Detection.ts │ │ │ │ ├── DetectionBenchmark.ts │ │ │ │ ├── EditorAddItem.tsx │ │ │ │ ├── index.test.js │ │ │ │ ├── index.ts │ │ │ │ └── node │ │ │ │ ├── BenchmarkNode.ts │ │ │ │ ├── ControlEmptyResultNode.ts │ │ │ │ ├── ControlErrorNode.ts │ │ │ │ ├── ControlNode.ts │ │ │ │ ├── ControlResultNode.ts │ │ │ │ ├── ControlRunningNode.ts │ │ │ │ ├── DetectionBenchmarkNode.ts │ │ │ │ ├── DetectionEmptyResultNode.ts │ │ │ │ ├── DetectionErrorNode.ts │ │ │ │ ├── DetectionHierarchyNode.ts │ │ │ │ ├── DetectionKeyValuePairNode.ts │ │ │ │ ├── DetectionNode.ts │ │ │ │ ├── DetectionResultNode.ts │ │ │ │ ├── DetectionRootNode.ts │ │ │ │ ├── DetectionRunningNode.ts │ │ │ │ ├── HierarchyNode.ts │ │ │ │ ├── KeyValuePairNode.ts │ │ │ │ └── RootNode.ts │ │ ├── hierarchies │ │ │ ├── Hierarchy │ │ │ │ └── index.tsx │ │ │ ├── Tree │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── inputs │ │ │ ├── ComboInput │ │ │ │ └── index.tsx │ │ │ ├── Date │ │ │ │ └── index.tsx │ │ │ ├── DateInput │ │ │ │ └── index.tsx │ │ │ ├── DateRangeInput │ │ │ │ └── index.tsx │ │ │ ├── DatetimeInput │ │ │ │ └── index.tsx │ │ │ ├── DatetimeRangeInput │ │ │ │ └── index.tsx │ │ │ ├── Input │ │ │ │ └── index.tsx │ │ │ ├── MultiComboInput │ │ │ │ └── index.tsx │ │ │ ├── MultiSelectInput │ │ │ │ └── index.tsx │ │ │ ├── SelectInput │ │ │ │ └── index.tsx │ │ │ ├── SingleComboInput │ │ │ │ └── index.tsx │ │ │ ├── SingleSelectInput │ │ │ │ └── index.tsx │ │ │ ├── TextInput │ │ │ │ └── index.tsx │ │ │ ├── TimeInput │ │ │ │ └── index.tsx │ │ │ ├── common │ │ │ │ ├── Common.tsx │ │ │ │ ├── useSelectInputStyles.ts │ │ │ │ ├── useSelectInputValues.test.ts │ │ │ │ └── useSelectInputValues.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── layout │ │ │ ├── Child │ │ │ │ └── index.tsx │ │ │ ├── Children │ │ │ │ └── index.tsx │ │ │ ├── Container │ │ │ │ ├── index.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Dashboard │ │ │ │ ├── DashboardControlsProvider.tsx │ │ │ │ ├── DashboardProgress.tsx │ │ │ │ └── index.tsx │ │ │ ├── DashboardSidePanel │ │ │ │ ├── ControlSidePanel.tsx │ │ │ │ ├── FilterAndGroupSidePanel.tsx │ │ │ │ ├── TableFilterSidePanel.tsx │ │ │ │ ├── TableRowSidePanel.tsx │ │ │ │ ├── TableSettingsSidePanel.tsx │ │ │ │ └── index.tsx │ │ │ ├── Grid │ │ │ │ └── index.tsx │ │ │ ├── Panel │ │ │ │ ├── PanelControls.tsx │ │ │ │ ├── PanelInformation.tsx │ │ │ │ ├── PanelProgress.tsx │ │ │ │ ├── PanelStatus.tsx │ │ │ │ └── index.tsx │ │ │ └── PanelDetail │ │ │ │ ├── PanelDetailData.tsx │ │ │ │ ├── PanelDetailDataDownloadButton.tsx │ │ │ │ ├── PanelDetailDefinition.tsx │ │ │ │ ├── PanelDetailLog.tsx │ │ │ │ ├── PanelDetailPreview.tsx │ │ │ │ ├── PanelDetailQuery.tsx │ │ │ │ └── index.tsx │ │ └── titles │ │ │ ├── ContainerTitle.tsx │ │ │ ├── DashboardTitle.tsx │ │ │ └── PanelTitle.tsx │ ├── forms │ │ ├── Button │ │ │ └── index.tsx │ │ ├── NeutralButton │ │ │ └── index.tsx │ │ └── SubmitButton │ │ │ └── index.tsx │ └── index.tsx ├── constants │ ├── icons.ts │ └── versions.ts ├── hooks │ ├── useAnalytics.tsx │ ├── useBenchmarkGrouping.test.ts │ ├── useBenchmarkGrouping.tsx │ ├── useBreakpoint.tsx │ ├── useChartThemeColors.ts │ ├── useContainer.tsx │ ├── useCopyToClipboard.ts │ ├── useDashboard.tsx │ ├── useDashboardDatetimeRange.tsx │ ├── useDashboardExecution.tsx │ ├── useDashboardIcons.ts │ ├── useDashboardInputs.tsx │ ├── useDashboardPanelDetail.tsx │ ├── useDashboardSearch.tsx │ ├── useDashboardSearchPath.tsx │ ├── useDashboardState.tsx │ ├── useDashboardTheme.tsx │ ├── useDashboardVersionCheck.ts │ ├── useDashboardWebSocket.ts │ ├── useDashboardWebSocketEventHandler.ts │ ├── useDebouncedEffect.ts │ ├── useDetectionGrouping.test.ts │ ├── useDetectionGrouping.tsx │ ├── useDetectionGroupingConfig.ts │ ├── useDimensions.ts │ ├── useDownloadDetectionBenchmarkData.ts │ ├── useDownloadDetectionData.ts │ ├── useDownloadPanelData.ts │ ├── useFilterConfig.ts │ ├── useGlobalContextNavigate.ts │ ├── useGroupingConfig.ts │ ├── useLocalStorage.ts │ ├── useMediaMode.ts │ ├── useMediaQuery.ts │ ├── usePageTitle.ts │ ├── usePaginatedList.ts │ ├── usePanel.tsx │ ├── usePanelControls.tsx │ ├── usePanelDependenciesStatus.ts │ ├── usePrefixedSearchParams.ts │ ├── usePrevious.ts │ ├── useStorybookTheme.tsx │ ├── useTableConfig.ts │ ├── useTemplateRender.ts │ ├── useTheme.tsx │ └── useWindowSize.ts ├── icons │ ├── heroIcons.test.ts │ └── heroIcons.ts ├── index.tsx ├── reportWebVitals.js ├── styles │ └── index.css ├── test │ └── matchMedia.js ├── types │ ├── func.ts │ └── index.ts └── utils │ ├── card.ts │ ├── color.ts │ ├── dashboardEventHandlers.test.ts │ ├── dashboardEventHandlers.ts │ ├── data.ts │ ├── date.test.ts │ ├── date.ts │ ├── filterEditor.ts │ ├── func.ts │ ├── layout.ts │ ├── registerComponents.ts │ ├── schema.test.ts │ ├── schema.ts │ ├── snapshot.test.ts │ ├── snapshot.ts │ ├── state.ts │ ├── storybook.tsx │ ├── styles.ts │ ├── template.test.js │ ├── template.ts │ ├── url.test.ts │ └── url.ts ├── tailwind.config.js ├── tsconfig.compiler-options.json ├── tsconfig.json └── yarn.lock /.ai/codebase-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.ai/codebase-notes.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/ISSUE_TEMPLATE/release_issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/01-powerpipe-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/01-powerpipe-release.yaml -------------------------------------------------------------------------------- /.github/workflows/02-powerpipe-smoke-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/02-powerpipe-smoke-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/10-test-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/10-test-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/11-test-acceptance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/11-test-acceptance.yaml -------------------------------------------------------------------------------- /.github/workflows/12-test-post-release-linux-distros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/12-test-post-release-linux-distros.yaml -------------------------------------------------------------------------------- /.github/workflows/30-stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/30-stale.yaml -------------------------------------------------------------------------------- /.github/workflows/31-add-issues-to-pipeling-issue-tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.github/workflows/31-add-issues-to-pipeling-issue-tracker.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/go.sum -------------------------------------------------------------------------------- /images/net_insights_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/images/net_insights_console.png -------------------------------------------------------------------------------- /images/net_insights_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/images/net_insights_dashboard.png -------------------------------------------------------------------------------- /images/rnacentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/images/rnacentral.png -------------------------------------------------------------------------------- /internal/cmd/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/check.go -------------------------------------------------------------------------------- /internal/cmd/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/dashboard.go -------------------------------------------------------------------------------- /internal/cmd/detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/detection.go -------------------------------------------------------------------------------- /internal/cmd/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/login.go -------------------------------------------------------------------------------- /internal/cmd/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/mod.go -------------------------------------------------------------------------------- /internal/cmd/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/query.go -------------------------------------------------------------------------------- /internal/cmd/resource_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/resource_cmd.go -------------------------------------------------------------------------------- /internal/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/root.go -------------------------------------------------------------------------------- /internal/cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmd/server.go -------------------------------------------------------------------------------- /internal/cmdconfig/app_specific.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/app_specific.go -------------------------------------------------------------------------------- /internal/cmdconfig/cmd_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/cmd_hooks.go -------------------------------------------------------------------------------- /internal/cmdconfig/cmd_targets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/cmd_targets.go -------------------------------------------------------------------------------- /internal/cmdconfig/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/diagnostics.go -------------------------------------------------------------------------------- /internal/cmdconfig/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/flag.go -------------------------------------------------------------------------------- /internal/cmdconfig/mappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/mappings.go -------------------------------------------------------------------------------- /internal/cmdconfig/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/runtime.go -------------------------------------------------------------------------------- /internal/cmdconfig/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/cmdconfig/validate.go -------------------------------------------------------------------------------- /internal/constants/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/build.go -------------------------------------------------------------------------------- /internal/constants/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/db.go -------------------------------------------------------------------------------- /internal/constants/descriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/descriptions.go -------------------------------------------------------------------------------- /internal/constants/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/env.go -------------------------------------------------------------------------------- /internal/constants/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/errors.go -------------------------------------------------------------------------------- /internal/constants/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/extensions.go -------------------------------------------------------------------------------- /internal/constants/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/constants/flags.go -------------------------------------------------------------------------------- /internal/controldisplay/color_scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/color_scheme.go -------------------------------------------------------------------------------- /internal/controldisplay/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/control.go -------------------------------------------------------------------------------- /internal/controldisplay/control_exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/control_exporter.go -------------------------------------------------------------------------------- /internal/controldisplay/control_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/control_result.go -------------------------------------------------------------------------------- /internal/controldisplay/detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_group.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_group_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_group_counter.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_group_heading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_group_heading.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_result.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_summary.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_table.go -------------------------------------------------------------------------------- /internal/controldisplay/detection_templates/json/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/detection_templates/json/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/detection_templates/json/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/dimensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/dimensions.go -------------------------------------------------------------------------------- /internal/controldisplay/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/error.go -------------------------------------------------------------------------------- /internal/controldisplay/format_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/format_resolver.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_fs.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_null.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_snapshot.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_template.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_template_test.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_test.go -------------------------------------------------------------------------------- /internal/controldisplay/formatter_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/formatter_text.go -------------------------------------------------------------------------------- /internal/controldisplay/get_exporters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/get_exporters.go -------------------------------------------------------------------------------- /internal/controldisplay/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group.go -------------------------------------------------------------------------------- /internal/controldisplay/group_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_counter.go -------------------------------------------------------------------------------- /internal/controldisplay/group_counter_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_counter_graph.go -------------------------------------------------------------------------------- /internal/controldisplay/group_counter_graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_counter_graph_test.go -------------------------------------------------------------------------------- /internal/controldisplay/group_counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_counter_test.go -------------------------------------------------------------------------------- /internal/controldisplay/group_heading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_heading.go -------------------------------------------------------------------------------- /internal/controldisplay/group_title.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_title.go -------------------------------------------------------------------------------- /internal/controldisplay/group_title_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/group_title_test.go -------------------------------------------------------------------------------- /internal/controldisplay/max_columns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/max_columns.go -------------------------------------------------------------------------------- /internal/controldisplay/output_formatters.go: -------------------------------------------------------------------------------- 1 | package controldisplay 2 | -------------------------------------------------------------------------------- /internal/controldisplay/output_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/output_template.go -------------------------------------------------------------------------------- /internal/controldisplay/result_reason.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/result_reason.go -------------------------------------------------------------------------------- /internal/controldisplay/result_reason_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/result_reason_test.go -------------------------------------------------------------------------------- /internal/controldisplay/result_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/result_status.go -------------------------------------------------------------------------------- /internal/controldisplay/result_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/result_status_test.go -------------------------------------------------------------------------------- /internal/controldisplay/severity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/severity.go -------------------------------------------------------------------------------- /internal/controldisplay/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/snapshot.go -------------------------------------------------------------------------------- /internal/controldisplay/spacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/spacer.go -------------------------------------------------------------------------------- /internal/controldisplay/spacer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/spacer_test.go -------------------------------------------------------------------------------- /internal/controldisplay/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/summary.go -------------------------------------------------------------------------------- /internal/controldisplay/summary_severity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/summary_severity.go -------------------------------------------------------------------------------- /internal/controldisplay/summary_severity_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/summary_severity_row.go -------------------------------------------------------------------------------- /internal/controldisplay/summary_status_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/summary_status_row.go -------------------------------------------------------------------------------- /internal/controldisplay/summary_total_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/summary_total_row.go -------------------------------------------------------------------------------- /internal/controldisplay/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/table.go -------------------------------------------------------------------------------- /internal/controldisplay/template_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/template_functions.go -------------------------------------------------------------------------------- /internal/controldisplay/template_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/template_functions_test.go -------------------------------------------------------------------------------- /internal/controldisplay/template_render_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/template_render_context.go -------------------------------------------------------------------------------- /internal/controldisplay/templates/asff.json/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/asff.json/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/asff.json/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2.0" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/templates/csv/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/csv/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/csv/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/favicon.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/html/favicon.b64 -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/logo.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/html/logo.b64 -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/normalize.tmpl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/html/normalize.tmpl.css -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/html/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/style.tmpl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/html/style.tmpl.css -------------------------------------------------------------------------------- /internal/controldisplay/templates/html/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1.0" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/templates/json/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/json/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/json/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1.2" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/templates/md/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/md/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/md/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1.0" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/templates/nunit3.xml/output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/templates/nunit3.xml/output.tmpl -------------------------------------------------------------------------------- /internal/controldisplay/templates/nunit3.xml/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /internal/controldisplay/truncate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controldisplay/truncate.go -------------------------------------------------------------------------------- /internal/controlexecute/control_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/control_run.go -------------------------------------------------------------------------------- /internal/controlexecute/dimension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/dimension.go -------------------------------------------------------------------------------- /internal/controlexecute/dimension_color_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/dimension_color_map.go -------------------------------------------------------------------------------- /internal/controlexecute/dimension_color_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/dimension_color_map_test.go -------------------------------------------------------------------------------- /internal/controlexecute/execution_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/execution_tree.go -------------------------------------------------------------------------------- /internal/controlexecute/execution_tree_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/execution_tree_node.go -------------------------------------------------------------------------------- /internal/controlexecute/result_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/result_group.go -------------------------------------------------------------------------------- /internal/controlexecute/result_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlexecute/result_row.go -------------------------------------------------------------------------------- /internal/controlinit/init_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlinit/init_data.go -------------------------------------------------------------------------------- /internal/controlstatus/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/context.go -------------------------------------------------------------------------------- /internal/controlstatus/control_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/control_hooks.go -------------------------------------------------------------------------------- /internal/controlstatus/control_hooks_null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/control_hooks_null.go -------------------------------------------------------------------------------- /internal/controlstatus/control_hooks_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/control_hooks_snapshot.go -------------------------------------------------------------------------------- /internal/controlstatus/control_hooks_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/control_hooks_status.go -------------------------------------------------------------------------------- /internal/controlstatus/control_run_status_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/control_run_status_provider.go -------------------------------------------------------------------------------- /internal/controlstatus/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/progress.go -------------------------------------------------------------------------------- /internal/controlstatus/status_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/controlstatus/status_summary.go -------------------------------------------------------------------------------- /internal/dashboardassets/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardassets/ensure.go -------------------------------------------------------------------------------- /internal/dashboardevents/control_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/control_complete.go -------------------------------------------------------------------------------- /internal/dashboardevents/control_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/control_error.go -------------------------------------------------------------------------------- /internal/dashboardevents/dashboard_changed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/dashboard_changed.go -------------------------------------------------------------------------------- /internal/dashboardevents/dashboard_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/dashboard_event.go -------------------------------------------------------------------------------- /internal/dashboardevents/execution_complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/execution_complete.go -------------------------------------------------------------------------------- /internal/dashboardevents/execution_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/execution_error.go -------------------------------------------------------------------------------- /internal/dashboardevents/execution_started.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/execution_started.go -------------------------------------------------------------------------------- /internal/dashboardevents/input_values_cleared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/input_values_cleared.go -------------------------------------------------------------------------------- /internal/dashboardevents/leaf_node_updated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/leaf_node_updated.go -------------------------------------------------------------------------------- /internal/dashboardevents/workspace_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardevents/workspace_error.go -------------------------------------------------------------------------------- /internal/dashboardexecute/check_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/check_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/container_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/container_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/control_hooks_dashboard_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/control_hooks_dashboard_event.go -------------------------------------------------------------------------------- /internal/dashboardexecute/dashboard_execution_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/dashboard_execution_tree.go -------------------------------------------------------------------------------- /internal/dashboardexecute/dashboard_parent_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/dashboard_parent_impl.go -------------------------------------------------------------------------------- /internal/dashboardexecute/dashboard_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/dashboard_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/dashboard_tree_run_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/dashboard_tree_run_impl.go -------------------------------------------------------------------------------- /internal/dashboardexecute/detection_benchmark_display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/detection_benchmark_display.go -------------------------------------------------------------------------------- /internal/dashboardexecute/detection_benchmark_display_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/detection_benchmark_display_tree.go -------------------------------------------------------------------------------- /internal/dashboardexecute/detection_benchmark_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/detection_benchmark_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/detection_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/detection_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/executor.go -------------------------------------------------------------------------------- /internal/dashboardexecute/input_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/input_values.go -------------------------------------------------------------------------------- /internal/dashboardexecute/leaf_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/leaf_run.go -------------------------------------------------------------------------------- /internal/dashboardexecute/leaf_run_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/leaf_run_option.go -------------------------------------------------------------------------------- /internal/dashboardexecute/referenced_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/referenced_variables.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_publisher.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_publisher_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_publisher_impl.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_publisher_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_publisher_option.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_publisher_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_publisher_target.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_subscriber.go -------------------------------------------------------------------------------- /internal/dashboardexecute/runtime_dependency_subscriber_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/runtime_dependency_subscriber_impl.go -------------------------------------------------------------------------------- /internal/dashboardexecute/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardexecute/snapshot.go -------------------------------------------------------------------------------- /internal/dashboardserver/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/api.go -------------------------------------------------------------------------------- /internal/dashboardserver/backend_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/backend_support.go -------------------------------------------------------------------------------- /internal/dashboardserver/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/output.go -------------------------------------------------------------------------------- /internal/dashboardserver/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/payload.go -------------------------------------------------------------------------------- /internal/dashboardserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/server.go -------------------------------------------------------------------------------- /internal/dashboardserver/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardserver/types.go -------------------------------------------------------------------------------- /internal/dashboardtypes/dashboard_parent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/dashboard_parent.go -------------------------------------------------------------------------------- /internal/dashboardtypes/dashboard_tree_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/dashboard_tree_run.go -------------------------------------------------------------------------------- /internal/dashboardtypes/leaf_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/leaf_data.go -------------------------------------------------------------------------------- /internal/dashboardtypes/resolved_runtime_dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/resolved_runtime_dependency.go -------------------------------------------------------------------------------- /internal/dashboardtypes/resolved_runtime_dependency_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/resolved_runtime_dependency_value.go -------------------------------------------------------------------------------- /internal/dashboardtypes/run_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/dashboardtypes/run_status.go -------------------------------------------------------------------------------- /internal/db_client/client_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/client_map.go -------------------------------------------------------------------------------- /internal/db_client/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/cloud.go -------------------------------------------------------------------------------- /internal/db_client/database_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/database_config.go -------------------------------------------------------------------------------- /internal/db_client/db_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/db_client.go -------------------------------------------------------------------------------- /internal/db_client/db_client_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/db_client_connect.go -------------------------------------------------------------------------------- /internal/db_client/db_client_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/db_client_execute.go -------------------------------------------------------------------------------- /internal/db_client/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/init.go -------------------------------------------------------------------------------- /internal/db_client/max_connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/max_connections.go -------------------------------------------------------------------------------- /internal/db_client/pgx_connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/pgx_connector.go -------------------------------------------------------------------------------- /internal/db_client/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/postgres.go -------------------------------------------------------------------------------- /internal/db_client/sql_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/db_client/sql_types.go -------------------------------------------------------------------------------- /internal/display/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/display/column.go -------------------------------------------------------------------------------- /internal/display/list_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/display/list_resources.go -------------------------------------------------------------------------------- /internal/display/pager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/display/pager.go -------------------------------------------------------------------------------- /internal/display/printable_hcl_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/display/printable_hcl_resource.go -------------------------------------------------------------------------------- /internal/display/timing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/display/timing.go -------------------------------------------------------------------------------- /internal/initialisation/init_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/initialisation/init_data.go -------------------------------------------------------------------------------- /internal/initialisation/init_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/initialisation/init_result.go -------------------------------------------------------------------------------- /internal/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/logger/logger.go -------------------------------------------------------------------------------- /internal/parse/decode_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/decode_args.go -------------------------------------------------------------------------------- /internal/parse/mod_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/mod_decoder.go -------------------------------------------------------------------------------- /internal/parse/query_invocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/query_invocation.go -------------------------------------------------------------------------------- /internal/parse/query_invocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/query_invocation_test.go -------------------------------------------------------------------------------- /internal/parse/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/schema.go -------------------------------------------------------------------------------- /internal/parse/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/parse/validate.go -------------------------------------------------------------------------------- /internal/powerpipeconfig/powerpipe_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/powerpipeconfig/powerpipe_config.go -------------------------------------------------------------------------------- /internal/powerpipeconfig/powerpipe_config_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/powerpipeconfig/powerpipe_config_load.go -------------------------------------------------------------------------------- /internal/queryresult/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/queryresult/result.go -------------------------------------------------------------------------------- /internal/queryresult/result_streamer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/queryresult/result_streamer.go -------------------------------------------------------------------------------- /internal/resources/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/control.go -------------------------------------------------------------------------------- /internal/resources/control_benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/control_benchmark.go -------------------------------------------------------------------------------- /internal/resources/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard.go -------------------------------------------------------------------------------- /internal/resources/dashboard_card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_card.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category_fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category_fold.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category_helpers.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category_property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category_property.go -------------------------------------------------------------------------------- /internal/resources/dashboard_category_property_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_category_property_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_axes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_axes.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_labels.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_legend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_legend.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_series.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_series_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_series_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_chart_series_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_chart_series_point.go -------------------------------------------------------------------------------- /internal/resources/dashboard_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_container.go -------------------------------------------------------------------------------- /internal/resources/dashboard_edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_edge.go -------------------------------------------------------------------------------- /internal/resources/dashboard_edge_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_edge_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_flow.go -------------------------------------------------------------------------------- /internal/resources/dashboard_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_graph.go -------------------------------------------------------------------------------- /internal/resources/dashboard_hierarchy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_hierarchy.go -------------------------------------------------------------------------------- /internal/resources/dashboard_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_image.go -------------------------------------------------------------------------------- /internal/resources/dashboard_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_input.go -------------------------------------------------------------------------------- /internal/resources/dashboard_leaf_node_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_leaf_node_impl.go -------------------------------------------------------------------------------- /internal/resources/dashboard_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_node.go -------------------------------------------------------------------------------- /internal/resources/dashboard_node_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_node_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_option.go -------------------------------------------------------------------------------- /internal/resources/dashboard_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_table.go -------------------------------------------------------------------------------- /internal/resources/dashboard_table_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_table_column.go -------------------------------------------------------------------------------- /internal/resources/dashboard_table_column_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_table_column_list.go -------------------------------------------------------------------------------- /internal/resources/dashboard_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_text.go -------------------------------------------------------------------------------- /internal/resources/dashboard_with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/dashboard_with.go -------------------------------------------------------------------------------- /internal/resources/detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/detection.go -------------------------------------------------------------------------------- /internal/resources/detection_benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/detection_benchmark.go -------------------------------------------------------------------------------- /internal/resources/diffs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/diffs.go -------------------------------------------------------------------------------- /internal/resources/generic_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/generic_type.go -------------------------------------------------------------------------------- /internal/resources/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/interfaces.go -------------------------------------------------------------------------------- /internal/resources/mod_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/mod_resources.go -------------------------------------------------------------------------------- /internal/resources/node_edge_provider_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/node_edge_provider_impl.go -------------------------------------------------------------------------------- /internal/resources/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query.go -------------------------------------------------------------------------------- /internal/resources/query_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query_args.go -------------------------------------------------------------------------------- /internal/resources/query_args_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query_args_helpers.go -------------------------------------------------------------------------------- /internal/resources/query_args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query_args_test.go -------------------------------------------------------------------------------- /internal/resources/query_provider_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query_provider_impl.go -------------------------------------------------------------------------------- /internal/resources/query_provider_impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/query_provider_impl_test.go -------------------------------------------------------------------------------- /internal/resources/runtime_dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/runtime_dependency.go -------------------------------------------------------------------------------- /internal/resources/runtime_dependency_provider_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/runtime_dependency_provider_impl.go -------------------------------------------------------------------------------- /internal/resources/with_provider_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/resources/with_provider_impl.go -------------------------------------------------------------------------------- /internal/service/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/api.go -------------------------------------------------------------------------------- /internal/service/api/common/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/common/error.go -------------------------------------------------------------------------------- /internal/service/api/common/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/common/list.go -------------------------------------------------------------------------------- /internal/service/api/common/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/common/validators.go -------------------------------------------------------------------------------- /internal/service/api/common/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/common/version.go -------------------------------------------------------------------------------- /internal/service/api/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/service/api/service.go -------------------------------------------------------------------------------- /internal/snapshot/snapshot_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/snapshot/snapshot_tag.go -------------------------------------------------------------------------------- /internal/snapshot/snapshot_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/snapshot/snapshot_tag_test.go -------------------------------------------------------------------------------- /internal/types/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/types/api.go -------------------------------------------------------------------------------- /internal/workspace/load_workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/load_workspace.go -------------------------------------------------------------------------------- /internal/workspace/load_workspace_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/load_workspace_options.go -------------------------------------------------------------------------------- /internal/workspace/powerpipe_workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/powerpipe_workspace.go -------------------------------------------------------------------------------- /internal/workspace/resource_from_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/resource_from_args.go -------------------------------------------------------------------------------- /internal/workspace/resources_of_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/resources_of_type_test.go -------------------------------------------------------------------------------- /internal/workspace/tag_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/tag_filter.go -------------------------------------------------------------------------------- /internal/workspace/tag_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/tag_filter_test.go -------------------------------------------------------------------------------- /internal/workspace/workspace_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/internal/workspace/workspace_events.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/main.go -------------------------------------------------------------------------------- /scripts/download_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/download_release.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/linux_container_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/linux_container_info.sh -------------------------------------------------------------------------------- /scripts/prepare_amazonlinux_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/prepare_amazonlinux_container.sh -------------------------------------------------------------------------------- /scripts/prepare_centos_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/prepare_centos_container.sh -------------------------------------------------------------------------------- /scripts/prepare_ubuntu_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/prepare_ubuntu_container.sh -------------------------------------------------------------------------------- /scripts/smoke_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/scripts/smoke_test.sh -------------------------------------------------------------------------------- /tests/acceptance/json_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/json_patch.sh -------------------------------------------------------------------------------- /tests/acceptance/run-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/run-local.sh -------------------------------------------------------------------------------- /tests/acceptance/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/run.sh -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/control_rendering_test_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/control_rendering_test_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/control_rendering_test_mod/query/gen_query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/control_rendering_test_mod/query/gen_query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_cards/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_cards/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_cards/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_cards/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_graphs/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_graphs/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_graphs/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_graphs/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_inputs/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_inputs/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_inputs/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_inputs/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_inputs_with_base/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_inputs_with_base/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_inputs_with_base/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_inputs_with_base/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_nested_node_edge_providers_fail/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_nested_node_edge_providers_fail/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_nested_query_providers_fail/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_nested_query_providers_fail/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_top_level_query_providers_fail/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_top_level_query_providers_fail/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_validation/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_validation/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_validation/nested_dashboards.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_validation/nested_dashboards.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_validation/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_validation/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_parsing_validation/query_providers_nested.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_parsing_validation/query_providers_nested.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_sibling_containers/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_sibling_containers/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_sibling_containers/report.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_sibling_containers/report.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_texts/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_texts/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_texts/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_texts/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_withs/dashboard.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_withs/dashboard.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/dashboard_withs/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/dashboard_withs/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/duckdb_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/duckdb_mod/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/duckdb_mod/employee.duckdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/duckdb_mod/employee.duckdb -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/duckdb_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/duckdb_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/duckdb_mod/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/duckdb_mod/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/functionality/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/functionality/cache.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/functionality/control_args.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/functionality/control_args.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/functionality/plugin_crash.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/functionality/plugin_crash.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/check_cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/check_cache.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/query_params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/query_params.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/search_path_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/search_path_1.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/search_path_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/search_path_2.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/static_query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/static_query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod/query/static_query_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod/query/static_query_2.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/functionality/cache.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/functionality/cache.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/mod.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/mod.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/check_cache.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/check_cache.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/query_params.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/query_params.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/search_path_1.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/search_path_1.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/search_path_2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/search_path_2.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/static_query.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/static_query.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/functionality_test_mod_sp/query/static_query_2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/functionality_test_mod_sp/query/static_query_2.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/introspection_table_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/introspection_table_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/introspection_table_mod/resources.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/introspection_table_mod/resources.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/local_mod_with_mod.sp_file/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/local_mod_with_mod.sp_file/mod.sp: -------------------------------------------------------------------------------- 1 | mod "local_mod_with_args_in_require" { 2 | 3 | } -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_install/mod-install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_install/mod-install.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_blank_dimension_value/control.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_blank_dimension_value/control.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_blank_dimension_value/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_blank_dimension_value/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_blank_dimension_value/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_blank_dimension_value/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_implicit_workspace/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_implicit_workspace/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_implicit_workspace/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_implicit_workspace/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_mod_and_resource/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_mod_and_resource/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_mod_and_resource/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_mod_and_resource/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_require/.mod.cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_require/.mod.cache.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_require/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_require/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_require_var/.mod.cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_require_var/.mod.cache.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_require_var/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_require_var/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_resource/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_resource/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_in_resource/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_in_resource/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_steampipe_search_path/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_steampipe_search_path/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_steampipe_search_path/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_steampipe_search_path/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_var/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_var/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_var/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_var/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_var_implicit_workspace/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_var_implicit_workspace/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_db_var_implicit_workspace/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_db_var_implicit_workspace/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_no_db/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_no_db/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_no_db/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_no_db/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_resource_db_steampipe_search_path/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_resource_db_steampipe_search_path/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mod_with_resource_db_steampipe_search_path/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mod_with_resource_db_steampipe_search_path/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mysql_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mysql_mod/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mysql_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mysql_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/mysql_mod/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/mysql_mod/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/postgresql_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/postgresql_mod/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/postgresql_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/postgresql_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/postgresql_mod/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/postgresql_mod/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/sqlite_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/sqlite_mod/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/sqlite_mod/chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/sqlite_mod/chinook.db -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/sqlite_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/sqlite_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/sqlite_mod/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/sqlite_mod/query.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/tag_filtering_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/tag_filtering_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/tag_filtering_mod/tag_filtering.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/tag_filtering_mod/tag_filtering.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_mods/mod_installed/.mod.cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_mods/mod_installed/.mod.cache.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_mods/mod_installed/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_mods/mod_installed/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_precedence_set_from_both_ppvars/deps.auto.ppvars: -------------------------------------------------------------------------------- 1 | version = "v8.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_precedence_set_from_both_ppvars/powerpipe.ppvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_precedence_set_from_both_spvars/deps.auto.spvars: -------------------------------------------------------------------------------- 1 | version = "v8.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_precedence_set_from_both_spvars/steampipe.spvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_precedence_set_from_steampipe_spvars/steampipe.spvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.ppvars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.ppvars/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.ppvars/dep.auto.ppvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.ppvars/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.ppvars/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.spvars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.spvars/README.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.spvars/dep.auto.spvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.spvars/mod.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_auto.spvars/mod.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_command_line/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_command_line/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_explicit_ppvars/deps.ppvars: -------------------------------------------------------------------------------- 1 | version = "v8.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_explicit_spvars/deps.spvars: -------------------------------------------------------------------------------- 1 | version = "v8.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/test_workspace_mod_var_set_from_powerpipe.ppvars/powerpipe.ppvars: -------------------------------------------------------------------------------- 1 | version = "v7.0.0" -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/tp_detection_mod/detection.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/tp_detection_mod/detection.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/tp_detection_mod/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/tp_detection_mod/mod.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/mods/tp_detection_mod/variables.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/mods/tp_detection_mod/variables.pp -------------------------------------------------------------------------------- /tests/acceptance/test_data/scripts/update_top_level_mod_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/scripts/update_top_level_mod_commit.sh -------------------------------------------------------------------------------- /tests/acceptance/test_data/scripts/update_top_level_mod_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/scripts/update_top_level_mod_version.sh -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/expected_sps_many_withs_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/expected_sps_many_withs_dashboard.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/expected_sps_sibling_containers_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/expected_sps_sibling_containers_report.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/expected_sps_testing_card_blocks_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/expected_sps_testing_card_blocks_dashboard.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/expected_sps_testing_dashboard_inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/expected_sps_testing_dashboard_inputs.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/expected_sps_testing_text_blocks_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/expected_sps_testing_text_blocks_dashboard.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/source.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/snapshots/target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/snapshots/target.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/source_files/config_tests/workspace_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/source_files/config_tests/workspace_tests.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/source_files/config_tests/workspaces.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/source_files/config_tests/workspaces.ppc -------------------------------------------------------------------------------- /tests/acceptance/test_data/source_files/mod_test_cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/source_files/mod_test_cases.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/source_files/sqlite_conn.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/source_files/sqlite_conn.ppc -------------------------------------------------------------------------------- /tests/acceptance/test_data/source_files/steampipe_default.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/source_files/steampipe_default.ppc -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_all_alarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_all_alarm.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_benchmark_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_benchmark_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_blank_dimension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_blank_dimension.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_csv.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_csv_multiple_parents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_csv_multiple_parents.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_csv_noheader.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_csv_noheader.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_csv_pipe_separator.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_csv_pipe_separator.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_csv_sorted_tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_csv_sorted_tags.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_html.html -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_json.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_json_multiple_parents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_json_multiple_parents.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_markdown.md -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_nunit3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_nunit3.xml -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_check_snapshot.pps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_check_snapshot.pps -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_control_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_control_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_card_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_card_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_chart_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_chart_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_container_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_container_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_flow_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_flow_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_graph_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_graph_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_hierarchy_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_hierarchy_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_image_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_image_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_table_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_table_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_dashboard_text_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_dashboard_text_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_duckdb_backend_json_casting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_duckdb_backend_json_casting.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_duckdb_backend_total_employee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_duckdb_backend_total_employee.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_long_title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_long_title.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_mixed_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_mixed_results.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_query_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_query_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_reasons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_reasons.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_short_title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_short_title.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_static_query_csv_snapshot_mode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_static_query_csv_snapshot_mode.csv -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_static_query_json_snapshot_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_static_query_json_snapshot_mode.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_static_query_table_snapshot_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_static_query_table_snapshot_mode.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_tag_filter_not_true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_tag_filter_not_true.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_tag_filter_true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_tag_filter_true.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_unicode_title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_unicode_title.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/expected_variable_show_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/expected_variable_show_output.json -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/installed_3_mods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/installed_3_mods.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/installed_3_mods_branch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/installed_3_mods_branch.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/installed_3_mods_partial.txt: -------------------------------------------------------------------------------- 1 | Installed 4 mods: -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/mod_files.txt: -------------------------------------------------------------------------------- 1 | README.md 2 | mod.sp 3 | query.sp -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/mod_folder_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/mod_folder_structure.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/mod_folder_structure_branch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/mod_folder_structure_branch.txt -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/mod_test_template.bats.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_data/templates/mod_test_template.bats.tmpl -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/mod_up_to_date.txt: -------------------------------------------------------------------------------- 1 | All targeted mods are up to date -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/top_level_mod_upgraded.txt: -------------------------------------------------------------------------------- 1 | 2 | Upgraded 1 mod: 3 | 4 | local 5 | └── github.com/pskrbasu/powerpipe-mod-1@v1.0.0 -------------------------------------------------------------------------------- /tests/acceptance/test_data/templates/top_level_mod_upgraded_branch.txt: -------------------------------------------------------------------------------- 1 | 2 | Upgraded 1 mod: 3 | 4 | local 5 | └── github.com/pskrbasu/powerpipe-mod-1#new -------------------------------------------------------------------------------- /tests/acceptance/test_files/backend.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/backend.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/check.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/check.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/config_path.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/config_path.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/config_precedence.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/config_precedence.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/dashboard.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/dashboard.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/dashboard_parsing_validation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/dashboard_parsing_validation.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/database_precedence.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/database_precedence.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/mod.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/mod.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/mod_install.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/mod_install.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/params_and_args.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/params_and_args.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/resource_show_outputs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/resource_show_outputs.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/snapshot.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/snapshot.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/sp_files.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/sp_files.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/tag_filtering.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/tag_filtering.bats -------------------------------------------------------------------------------- /tests/acceptance/test_files/var_resolution.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_files/var_resolution.bats -------------------------------------------------------------------------------- /tests/acceptance/test_generator/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/test_generator/generate.go -------------------------------------------------------------------------------- /tests/acceptance/url_parse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/tests/acceptance/url_parse.sh -------------------------------------------------------------------------------- /ui/dashboard/.storybook/StoryWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/.storybook/StoryWrapper.jsx -------------------------------------------------------------------------------- /ui/dashboard/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/.storybook/main.ts -------------------------------------------------------------------------------- /ui/dashboard/.storybook/preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/.storybook/preview.jsx -------------------------------------------------------------------------------- /ui/dashboard/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /ui/dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/Makefile -------------------------------------------------------------------------------- /ui/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/README.md -------------------------------------------------------------------------------- /ui/dashboard/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/craco.config.js -------------------------------------------------------------------------------- /ui/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/package.json -------------------------------------------------------------------------------- /ui/dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/postcss.config.js -------------------------------------------------------------------------------- /ui/dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /ui/dashboard/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/favicon.png -------------------------------------------------------------------------------- /ui/dashboard/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/favicon.svg -------------------------------------------------------------------------------- /ui/dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/index.html -------------------------------------------------------------------------------- /ui/dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/manifest.json -------------------------------------------------------------------------------- /ui/dashboard/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/public/robots.txt -------------------------------------------------------------------------------- /ui/dashboard/scripts/setupMaterialSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/scripts/setupMaterialSymbols.js -------------------------------------------------------------------------------- /ui/dashboard/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/spec.md -------------------------------------------------------------------------------- /ui/dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/App.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/Badge/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/CallToActions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/CallToActions/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/CodeBlock/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/CopyToClipboard/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/CopyToClipboard/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/CopyToClipboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/CopyToClipboard/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardControlsSummary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardControlsSummary/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardHeader/PowerpipeLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardHeader/PowerpipeLogo.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardHeader/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo-darkmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo-darkmode.svg -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo-wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo-wordmark.svg -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardHeader/logos/powerpipe-logo.svg -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardList/DashboardListOptionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardList/DashboardListOptionsButton.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardList/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardListDisplayModeSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardListDisplayModeSelect/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardListEmptyCallToAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardListEmptyCallToAction/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardSearch/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DashboardTagGroupSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DashboardTagGroupSelect/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/DateTime/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/DateTime/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/ErrorMessage/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/ErrorMessage/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/ErrorMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/ErrorMessage/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/ExternalLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/ExternalLink/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/IntegerDisplay/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/IntegerDisplay/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/IntegerDisplay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/IntegerDisplay/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/Modal/ErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/Modal/ErrorModal.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/SearchInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/SearchInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/SnapshotHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/SnapshotHeader/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/SplitSnapshotButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/SplitSnapshotButton/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/ThemeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/ThemeToggle/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Card/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Card/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Card/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/DatetimeRange/DatetimeRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/DatetimeRange/DatetimeRangePicker.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/DatetimeRange/ManageDatetimeRangeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/DatetimeRange/ManageDatetimeRangeButton.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Error/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Error/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Error/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Image/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Image/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Image/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/LoadingIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/LoadingIndicator/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Placeholder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Placeholder/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/SearchPath/ManageSearchPathButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/SearchPath/ManageSearchPathButton.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/SearchPath/SearchPathConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/SearchPath/SearchPathConfig.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/SearchPath/SearchPathEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/SearchPath/SearchPathEditor.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Table/TableSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Table/TableSettings.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Table/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Table/index.stories.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Table/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Text/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Text/index.stories.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/Text/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/WorkspaceErrorModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/WorkspaceErrorModal/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/AreaChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/AreaChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/AreaChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/AreaChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/BarChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/BarChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/BarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/BarChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/Chart/echarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/Chart/echarts.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/Chart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/Chart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/Chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/Chart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/Chart/themes/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/Chart/themes/dark.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/Chart/themes/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/Chart/themes/light.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/ColumnChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/ColumnChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/ColumnChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/ColumnChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/DonutChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/DonutChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/DonutChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/DonutChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/HeatmapChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/HeatmapChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/HeatmapChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/HeatmapChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/LineChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/LineChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/LineChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/LineChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/PieChart/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/PieChart/index.stories.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/PieChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/PieChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/charts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/charts/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/DashboardIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/DashboardIcon.stories.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/DashboardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/DashboardIcon.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/NodeAndEdgePanelInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/NodeAndEdgePanelInformation.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/index.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/common/useNodeAndEdgeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/common/useNodeAndEdgeData.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/data/CardDataProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/data/CardDataProcessor.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/data/PanelDataDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/data/PanelDataDiff.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/data/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/flows/Flow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/flows/Flow/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/flows/Sankey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/flows/Sankey/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/flows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/flows/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/flows/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/flows/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/ForceDirectedGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/ForceDirectedGraph/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/AssetNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/AssetNode.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/FloatingEdge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/FloatingEdge.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/RowProperties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/RowProperties.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/Tooltip.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/Graph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/Graph/utils.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/common/useGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/common/useGraph.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/graphs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/graphs/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/Benchmark/ControlDimension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/Benchmark/ControlDimension.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/Benchmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/Benchmark/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/CheckGrouping/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/CheckGrouping/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/CheckPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/CheckPanel/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/CheckSummaryChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/CheckSummaryChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/CustomizeViewSummary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/CustomizeViewSummary/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/DetectionBenchmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/DetectionBenchmark/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/DetectionGrouping/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/DetectionGrouping/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/DetectionPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/DetectionPanel/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/DetetctionSummaryChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/DetetctionSummaryChart/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/DocumentationView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/DocumentationView/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/FilterCardWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/FilterCardWrapper/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/FilterConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/FilterConfig/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/FilterEditor/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/FilterEditor/index.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/FilterEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/FilterEditor/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/GroupingConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/GroupingConfig/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/GroupingEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/GroupingEditor/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/Benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/Benchmark.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/Control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/Control.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/Detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/Detection.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/DetectionBenchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/DetectionBenchmark.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/EditorAddItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/EditorAddItem.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/index.test.js -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/BenchmarkNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/BenchmarkNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/ControlEmptyResultNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/ControlEmptyResultNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/ControlErrorNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/ControlErrorNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/ControlNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/ControlNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/ControlResultNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/ControlResultNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/ControlRunningNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/ControlRunningNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionBenchmarkNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionBenchmarkNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionErrorNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionErrorNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionHierarchyNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionHierarchyNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionResultNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionResultNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionRootNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionRootNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/DetectionRunningNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/DetectionRunningNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/HierarchyNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/HierarchyNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/KeyValuePairNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/KeyValuePairNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/grouping/common/node/RootNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/grouping/common/node/RootNode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/hierarchies/Hierarchy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/hierarchies/Hierarchy/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/hierarchies/Tree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/hierarchies/Tree/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/hierarchies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/hierarchies/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/hierarchies/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/hierarchies/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/ComboInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/ComboInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/Date/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/Date/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/DateInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/DateInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/DateRangeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/DateRangeInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/DatetimeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/DatetimeInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/DatetimeRangeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/DatetimeRangeInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/Input/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/MultiComboInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/MultiComboInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/MultiSelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/MultiSelectInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/SelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/SelectInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/SingleComboInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/SingleComboInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/SingleSelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/SingleSelectInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/TextInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/TimeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/TimeInput/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/common/Common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/common/Common.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/common/useSelectInputStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/common/useSelectInputStyles.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/common/useSelectInputValues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/common/useSelectInputValues.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/common/useSelectInputValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/common/useSelectInputValues.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/inputs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/inputs/types.ts -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Child/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Child/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Children/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Children/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Container/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Container/index.stories.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Container/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Dashboard/DashboardControlsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Dashboard/DashboardControlsProvider.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Dashboard/DashboardProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Dashboard/DashboardProgress.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Dashboard/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/DashboardSidePanel/ControlSidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/DashboardSidePanel/ControlSidePanel.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/DashboardSidePanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/DashboardSidePanel/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Grid/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Panel/PanelControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Panel/PanelControls.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Panel/PanelInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Panel/PanelInformation.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Panel/PanelProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Panel/PanelProgress.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Panel/PanelStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Panel/PanelStatus.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/Panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/Panel/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailData.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailDefinition.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailLog.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailPreview.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/PanelDetailQuery.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/layout/PanelDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/layout/PanelDetail/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/titles/ContainerTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/titles/ContainerTitle.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/titles/DashboardTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/titles/DashboardTitle.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/dashboards/titles/PanelTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/dashboards/titles/PanelTitle.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/forms/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/forms/Button/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/forms/NeutralButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/forms/NeutralButton/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/forms/SubmitButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/forms/SubmitButton/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/components/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/constants/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/constants/icons.ts -------------------------------------------------------------------------------- /ui/dashboard/src/constants/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/constants/versions.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useAnalytics.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useBenchmarkGrouping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useBenchmarkGrouping.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useBenchmarkGrouping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useBenchmarkGrouping.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useBreakpoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useBreakpoint.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useChartThemeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useChartThemeColors.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useContainer.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useCopyToClipboard.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboard.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardDatetimeRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardDatetimeRange.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardExecution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardExecution.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardIcons.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardInputs.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardPanelDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardPanelDetail.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardSearch.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardSearchPath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardSearchPath.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardState.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardTheme.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardVersionCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardVersionCheck.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardWebSocket.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDashboardWebSocketEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDashboardWebSocketEventHandler.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDebouncedEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDebouncedEffect.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDetectionGrouping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDetectionGrouping.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDetectionGrouping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDetectionGrouping.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDetectionGroupingConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDetectionGroupingConfig.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDimensions.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDownloadDetectionBenchmarkData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDownloadDetectionBenchmarkData.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDownloadDetectionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDownloadDetectionData.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useDownloadPanelData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useDownloadPanelData.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useFilterConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useFilterConfig.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useGlobalContextNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useGlobalContextNavigate.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useGroupingConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useGroupingConfig.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useMediaMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useMediaMode.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePageTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePageTitle.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePaginatedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePaginatedList.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePanel.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePanelControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePanelControls.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePanelDependenciesStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePanelDependenciesStatus.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePrefixedSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePrefixedSearchParams.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/usePrevious.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useStorybookTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useStorybookTheme.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useTableConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useTableConfig.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useTemplateRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useTemplateRender.ts -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useTheme.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/hooks/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/hooks/useWindowSize.ts -------------------------------------------------------------------------------- /ui/dashboard/src/icons/heroIcons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/icons/heroIcons.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/icons/heroIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/icons/heroIcons.ts -------------------------------------------------------------------------------- /ui/dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/index.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/reportWebVitals.js -------------------------------------------------------------------------------- /ui/dashboard/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/styles/index.css -------------------------------------------------------------------------------- /ui/dashboard/src/test/matchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/test/matchMedia.js -------------------------------------------------------------------------------- /ui/dashboard/src/types/func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/types/func.ts -------------------------------------------------------------------------------- /ui/dashboard/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/types/index.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/card.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/color.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/dashboardEventHandlers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/dashboardEventHandlers.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/dashboardEventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/dashboardEventHandlers.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/data.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/date.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/date.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/filterEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/filterEditor.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/func.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/layout.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/registerComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/registerComponents.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/schema.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/schema.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/snapshot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/snapshot.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/snapshot.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/state.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/storybook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/storybook.tsx -------------------------------------------------------------------------------- /ui/dashboard/src/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/styles.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/template.test.js -------------------------------------------------------------------------------- /ui/dashboard/src/utils/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/template.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/url.test.ts -------------------------------------------------------------------------------- /ui/dashboard/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/src/utils/url.ts -------------------------------------------------------------------------------- /ui/dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /ui/dashboard/tsconfig.compiler-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/tsconfig.compiler-options.json -------------------------------------------------------------------------------- /ui/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/tsconfig.json -------------------------------------------------------------------------------- /ui/dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/powerpipe/HEAD/ui/dashboard/yarn.lock --------------------------------------------------------------------------------