├── .gitignore ├── Dashboards ├── export_screenboard.py ├── import_screenboard.py ├── migrate_dashboard.py ├── migrate_screenboard.py ├── migrate_timeboard.py └── readme.md ├── Dogmover ├── .gitignore ├── Dockerfile ├── README.md ├── config.json.example ├── dogmover.png ├── dogmover.py └── requirements.txt ├── LICENSE ├── PySNMP-MIB-Parser ├── README.md ├── begin.yaml └── parse.py ├── README.md ├── Send_filesystem_events ├── README.MD └── send_filesystem_events.py ├── agent_bootstrapping ├── .gitignore ├── README.md └── packer_terraform_aws │ ├── README.md │ ├── packer │ └── ubuntu-xenial-16.04-amd64-server.pkr.hcl │ └── terraform │ ├── iam.tf │ ├── network.tf │ ├── provider.tf │ ├── secrets.tf │ ├── security_group.tf │ ├── ssh.tf │ ├── terraform.tfvars.example │ ├── ubuntu-xenial.tf │ ├── user_data │ └── enable_ddog_agent_ubuntu_xenial.sh.tpl │ └── vars.tf ├── all_dash_public ├── .python-version ├── README.md ├── all-dash-public.py └── requirements.txt ├── api_limits_as_custom_metrics.py ├── aws_cloudwatch_cost_calculator ├── README.md └── cost_calculator.py ├── aws_hosts_without_agent.py ├── base_scripts ├── README.md ├── parse_logs_for_metrics.py ├── set_dynamic_downtime.py └── update_note_widget_text_with_new_version.py ├── batchMonitorUpdate ├── batchUpdate.py ├── batchUpdateReturnAll.py └── readme.md ├── count_hosts_by_tag.py ├── create_email_list.py ├── create_monitor ├── README.md ├── create_monitor.py ├── monitor.png └── requirements.txt ├── create_monitor_terraform ├── README.md ├── images │ └── tf_monitor.png └── terraform │ ├── boilerplate.tf │ ├── datadog_metric_monitor_module │ ├── README.md │ └── main.tf │ ├── default.auto.tfvars │ ├── monitoring.tf │ ├── outputs.tf │ └── variables.tf ├── create_users_and_emails_list.py ├── cross-org-metric-broker.py ├── cross-org-metric-broker.yaml ├── csvmod.py ├── custom_agent_checks ├── sql_redacted.py └── weatherExample.py ├── custom_check_shell ├── README.md ├── Vagrantfile ├── data │ ├── freemem.sh │ ├── shell.py │ ├── shell.yaml │ └── test.py └── rand_metric.png ├── dash_to_json.py ├── dashconverter ├── README.md ├── dashconverter.py └── images │ ├── example_1.png │ ├── id_dashboard.png │ ├── screenboard_1.png │ ├── screenboard_2.gif │ ├── timeboard_1.gif │ └── timeboard_2.gif ├── datadog_nagios_plugin_wrapper ├── README.md ├── checks.d │ └── nagios_plugin_wrapper.py └── conf.d │ └── nagios_plugin_wrapper.d │ └── conf.yaml.example ├── dbm_setup ├── Makefile ├── README.md ├── dbm_setup.py ├── img │ ├── Image 2023-11-28 at 11.03.44 AM.jpg │ └── Screen Recording 2023-11-28 at 10.11.06 AM.gif ├── postgresql.conf └── requirements.txt ├── dd-example ├── README.md ├── datadog-agent.yaml ├── flask_deploy.yaml ├── kubernetes │ ├── kube-state-metrics-cluster-role-binding.yaml │ ├── kube-state-metrics-cluster-role.yaml │ ├── kube-state-metrics-deployment.yaml │ ├── kube-state-metrics-role-binding.yaml │ ├── kube-state-metrics-role.yaml │ ├── kube-state-metrics-service-account.yaml │ └── kube-state-metrics-service.yaml ├── postgres_deployment.yaml └── raw_files │ ├── flask │ ├── Dockerfile │ ├── app.py │ └── requirements.txt │ └── postgres │ ├── CreateDB.sql │ └── Dockerfile ├── dd-user-report-json ├── README.md └── dd-users-report.py ├── dd_aws_add_account.py ├── dd_public_ip.sh ├── ddog ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── images │ ├── ddog-log.jpg │ ├── ddog-logs.jpg │ ├── ddog-metric.jpg │ ├── ddog-metrics.jpg │ ├── ddog-trace.jpg │ ├── ddog-traces-spans.jpg │ └── ddog-traces.jpg ├── pom.graalvm.native-image.xml ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── foogaro │ └── datadog │ └── ddog │ ├── DDog.java │ ├── DDogConsts.java │ ├── command │ ├── ping │ │ ├── Ping.java │ │ ├── client │ │ │ ├── ClientChannelInitializer.java │ │ │ ├── EchoHandler.java │ │ │ └── NettyUdpClient.java │ │ └── server │ │ │ ├── EchoHandler.java │ │ │ ├── NettyUdpServer.java │ │ │ └── ServerChannelInitializer.java │ └── send │ │ ├── SendLog.java │ │ ├── SendMetric.java │ │ └── SendTrace.java │ └── model │ ├── Log.java │ └── Trace.java ├── delete_dashboards_by_text_search ├── README.md └── delete_dashboards.py ├── empty_dash ├── README.md ├── empty_dash.py └── requirements.txt ├── fullmetrics_dash.py ├── get_active_users ├── README.md └── get_active_users.py ├── get_all_boards ├── README.md ├── get_all_boards.py └── requirements.txt ├── get_all_child_orgs ├── .python-version ├── README.md ├── all-child-orgs.py └── requirements.txt ├── get_all_services ├── .gitignore ├── README.md ├── main.py └── requirements.txt ├── get_hostname_agentversion ├── get_host_agent_list.py └── json_to_csv.py ├── get_hostnames ├── get_host_list.py └── json_to_CSV.py ├── haproxy-datadog-proxy ├── Dockerfile ├── README.md └── haproxy.cfg ├── historic_usage_to_csv.py ├── hosts_with_aws_without_agent.py ├── iis_app_pool ├── iis_app_pool.yaml └── readme.md ├── implementation_services ├── README.md └── images │ ├── Roles.png │ ├── access_management_workflow.png │ ├── account_access_framework_diagram.png │ ├── application_monitors_dataflow.png │ ├── core_monitors_and_group_by_statement.png │ ├── core_operational_standards_objectives.png │ ├── dashboard_strategy_architecture.png │ ├── data_monitoring_workflow.png │ ├── data_optimization_workflow.png │ ├── data_visualization_workflow.png │ ├── datadog_agent_update_strategy.png │ ├── define_SLOs_by_service_type.png │ ├── example_core_SLOs.png │ ├── firewall_configuration_note.png │ ├── governance_data_optimization_monitoring_and_visualization_strategies.png │ ├── governance_workflow.png │ ├── host_agents_secret_management.png │ ├── log_indexing_overview.png │ ├── network_egress_overview_diagram.png │ ├── platform_prep[0].png │ ├── platform_preparation_workflow.png │ ├── platofrm_prep_and_access_management_strategies.png │ ├── pre_upgrade_validation.png │ ├── proxy_configuration_note.png │ ├── recommended_service_accounts.png │ ├── service_catalog_management.png │ ├── simplified_approach_to_defining_SLIs.png │ ├── sso_note.png │ ├── sso_setup.png │ ├── tagging_governance_strategy_note.png │ ├── tagging_strategy.png │ └── tagging_strategy_note.png ├── linux_odfs_API.sh ├── log-downloader ├── README.md ├── requirements.txt └── widget_updater.py ├── merge_screenboards ├── README.md └── merge_screenboards.py ├── metric_usage_report ├── .gitignore ├── README.md ├── config.py ├── progress_bar.py ├── report.py ├── report_init.py └── results │ ├── .gitignore │ ├── example_usage_report.csv │ ├── example_usage_report.json │ └── example_usage_report.md ├── migrate_all_dashboards.py ├── migrate_dashboard.py ├── migrate_monitors.py ├── monitors ├── get_groups_in_monitor.py ├── mute_monitors_with_tags.py ├── remove_email_from_monitor_notification_bulk.py └── replace_domain_in_monitor_notification_bulk.py ├── multi_org_create_users ├── multi_org_create_users.py └── multi_org_create_users.yaml ├── mwl_optimiser └── mwl_optimiser.py ├── nginx-datadog-proxy ├── Dockerfile ├── README.md ├── nginx.conf └── sources.list ├── query_freshness.py ├── query_hosts_create_tags.py ├── remove_lingering_aws_host_tags.py ├── remove_old_dash_monitors ├── README.md └── remove_old_dash_monitors.py ├── remove_single_tag_tmp.py ├── requester.ps1 ├── s3_permissions ├── README.md ├── metrics.png ├── output.png ├── requirements.txt └── s3_permissions.py ├── synthetics └── uptime-reporting │ ├── extract-synthetics-uptimes.py │ ├── readme.md │ └── requirements.txt ├── update_host_tags_using_metadata_example.py ├── update_multiple_monitors_example.py ├── uptime ├── conf.yaml.example ├── manual_test_instructions.md ├── readme.md └── uptime.py └── webhooks ├── Incidents ├── README.md └── create_incident_SEV-1.json ├── Logs ├── README.md ├── synthetics-payload_disable_exclusion_filter.json ├── synthetics-payload_enable_exclusion_filter.json └── synthetics-payload_set_main_index_limit.json ├── Monitors ├── README.md └── mute_host.json ├── Notebooks ├── README.md ├── create_notebook.json └── list_webhook_variables_to_notebook.json ├── README.md ├── Synthetics ├── README.md └── trigger_synthetic_test.json └── images └── request_headers.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/.gitignore -------------------------------------------------------------------------------- /Dashboards/export_screenboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/export_screenboard.py -------------------------------------------------------------------------------- /Dashboards/import_screenboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/import_screenboard.py -------------------------------------------------------------------------------- /Dashboards/migrate_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/migrate_dashboard.py -------------------------------------------------------------------------------- /Dashboards/migrate_screenboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/migrate_screenboard.py -------------------------------------------------------------------------------- /Dashboards/migrate_timeboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/migrate_timeboard.py -------------------------------------------------------------------------------- /Dashboards/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dashboards/readme.md -------------------------------------------------------------------------------- /Dogmover/.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | -------------------------------------------------------------------------------- /Dogmover/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dogmover/Dockerfile -------------------------------------------------------------------------------- /Dogmover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dogmover/README.md -------------------------------------------------------------------------------- /Dogmover/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dogmover/config.json.example -------------------------------------------------------------------------------- /Dogmover/dogmover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dogmover/dogmover.png -------------------------------------------------------------------------------- /Dogmover/dogmover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Dogmover/dogmover.py -------------------------------------------------------------------------------- /Dogmover/requirements.txt: -------------------------------------------------------------------------------- 1 | datadog>=0.29.0 2 | requests 3 | docopt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/LICENSE -------------------------------------------------------------------------------- /PySNMP-MIB-Parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/PySNMP-MIB-Parser/README.md -------------------------------------------------------------------------------- /PySNMP-MIB-Parser/begin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/PySNMP-MIB-Parser/begin.yaml -------------------------------------------------------------------------------- /PySNMP-MIB-Parser/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/PySNMP-MIB-Parser/parse.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/README.md -------------------------------------------------------------------------------- /Send_filesystem_events/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Send_filesystem_events/README.MD -------------------------------------------------------------------------------- /Send_filesystem_events/send_filesystem_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/Send_filesystem_events/send_filesystem_events.py -------------------------------------------------------------------------------- /agent_bootstrapping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/.gitignore -------------------------------------------------------------------------------- /agent_bootstrapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/README.md -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/README.md -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/packer/ubuntu-xenial-16.04-amd64-server.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/packer/ubuntu-xenial-16.04-amd64-server.pkr.hcl -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/iam.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/network.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/provider.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/secrets.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/security_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/security_group.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/ssh.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/ubuntu-xenial.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/ubuntu-xenial.tf -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/user_data/enable_ddog_agent_ubuntu_xenial.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/user_data/enable_ddog_agent_ubuntu_xenial.sh.tpl -------------------------------------------------------------------------------- /agent_bootstrapping/packer_terraform_aws/terraform/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/agent_bootstrapping/packer_terraform_aws/terraform/vars.tf -------------------------------------------------------------------------------- /all_dash_public/.python-version: -------------------------------------------------------------------------------- 1 | 2.7.15 2 | -------------------------------------------------------------------------------- /all_dash_public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/all_dash_public/README.md -------------------------------------------------------------------------------- /all_dash_public/all-dash-public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/all_dash_public/all-dash-public.py -------------------------------------------------------------------------------- /all_dash_public/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/all_dash_public/requirements.txt -------------------------------------------------------------------------------- /api_limits_as_custom_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/api_limits_as_custom_metrics.py -------------------------------------------------------------------------------- /aws_cloudwatch_cost_calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/aws_cloudwatch_cost_calculator/README.md -------------------------------------------------------------------------------- /aws_cloudwatch_cost_calculator/cost_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/aws_cloudwatch_cost_calculator/cost_calculator.py -------------------------------------------------------------------------------- /aws_hosts_without_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/aws_hosts_without_agent.py -------------------------------------------------------------------------------- /base_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/base_scripts/README.md -------------------------------------------------------------------------------- /base_scripts/parse_logs_for_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/base_scripts/parse_logs_for_metrics.py -------------------------------------------------------------------------------- /base_scripts/set_dynamic_downtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/base_scripts/set_dynamic_downtime.py -------------------------------------------------------------------------------- /base_scripts/update_note_widget_text_with_new_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/base_scripts/update_note_widget_text_with_new_version.py -------------------------------------------------------------------------------- /batchMonitorUpdate/batchUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/batchMonitorUpdate/batchUpdate.py -------------------------------------------------------------------------------- /batchMonitorUpdate/batchUpdateReturnAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/batchMonitorUpdate/batchUpdateReturnAll.py -------------------------------------------------------------------------------- /batchMonitorUpdate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/batchMonitorUpdate/readme.md -------------------------------------------------------------------------------- /count_hosts_by_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/count_hosts_by_tag.py -------------------------------------------------------------------------------- /create_email_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_email_list.py -------------------------------------------------------------------------------- /create_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor/README.md -------------------------------------------------------------------------------- /create_monitor/create_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor/create_monitor.py -------------------------------------------------------------------------------- /create_monitor/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor/monitor.png -------------------------------------------------------------------------------- /create_monitor/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor/requirements.txt -------------------------------------------------------------------------------- /create_monitor_terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/README.md -------------------------------------------------------------------------------- /create_monitor_terraform/images/tf_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/images/tf_monitor.png -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/boilerplate.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/boilerplate.tf -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/datadog_metric_monitor_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/datadog_metric_monitor_module/README.md -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/datadog_metric_monitor_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/datadog_metric_monitor_module/main.tf -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/default.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/default.auto.tfvars -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/monitoring.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/monitoring.tf -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/outputs.tf -------------------------------------------------------------------------------- /create_monitor_terraform/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_monitor_terraform/terraform/variables.tf -------------------------------------------------------------------------------- /create_users_and_emails_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/create_users_and_emails_list.py -------------------------------------------------------------------------------- /cross-org-metric-broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/cross-org-metric-broker.py -------------------------------------------------------------------------------- /cross-org-metric-broker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/cross-org-metric-broker.yaml -------------------------------------------------------------------------------- /csvmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/csvmod.py -------------------------------------------------------------------------------- /custom_agent_checks/sql_redacted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_agent_checks/sql_redacted.py -------------------------------------------------------------------------------- /custom_agent_checks/weatherExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_agent_checks/weatherExample.py -------------------------------------------------------------------------------- /custom_check_shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/README.md -------------------------------------------------------------------------------- /custom_check_shell/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/Vagrantfile -------------------------------------------------------------------------------- /custom_check_shell/data/freemem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/data/freemem.sh -------------------------------------------------------------------------------- /custom_check_shell/data/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/data/shell.py -------------------------------------------------------------------------------- /custom_check_shell/data/shell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/data/shell.yaml -------------------------------------------------------------------------------- /custom_check_shell/data/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/data/test.py -------------------------------------------------------------------------------- /custom_check_shell/rand_metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/custom_check_shell/rand_metric.png -------------------------------------------------------------------------------- /dash_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dash_to_json.py -------------------------------------------------------------------------------- /dashconverter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/README.md -------------------------------------------------------------------------------- /dashconverter/dashconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/dashconverter.py -------------------------------------------------------------------------------- /dashconverter/images/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/example_1.png -------------------------------------------------------------------------------- /dashconverter/images/id_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/id_dashboard.png -------------------------------------------------------------------------------- /dashconverter/images/screenboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/screenboard_1.png -------------------------------------------------------------------------------- /dashconverter/images/screenboard_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/screenboard_2.gif -------------------------------------------------------------------------------- /dashconverter/images/timeboard_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/timeboard_1.gif -------------------------------------------------------------------------------- /dashconverter/images/timeboard_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dashconverter/images/timeboard_2.gif -------------------------------------------------------------------------------- /datadog_nagios_plugin_wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/datadog_nagios_plugin_wrapper/README.md -------------------------------------------------------------------------------- /datadog_nagios_plugin_wrapper/checks.d/nagios_plugin_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/datadog_nagios_plugin_wrapper/checks.d/nagios_plugin_wrapper.py -------------------------------------------------------------------------------- /datadog_nagios_plugin_wrapper/conf.d/nagios_plugin_wrapper.d/conf.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/datadog_nagios_plugin_wrapper/conf.d/nagios_plugin_wrapper.d/conf.yaml.example -------------------------------------------------------------------------------- /dbm_setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/Makefile -------------------------------------------------------------------------------- /dbm_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/README.md -------------------------------------------------------------------------------- /dbm_setup/dbm_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/dbm_setup.py -------------------------------------------------------------------------------- /dbm_setup/img/Image 2023-11-28 at 11.03.44 AM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/img/Image 2023-11-28 at 11.03.44 AM.jpg -------------------------------------------------------------------------------- /dbm_setup/img/Screen Recording 2023-11-28 at 10.11.06 AM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/img/Screen Recording 2023-11-28 at 10.11.06 AM.gif -------------------------------------------------------------------------------- /dbm_setup/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dbm_setup/postgresql.conf -------------------------------------------------------------------------------- /dbm_setup/requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2-binary==2.9.1 2 | python-dotenv==0.19.0 -------------------------------------------------------------------------------- /dd-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/README.md -------------------------------------------------------------------------------- /dd-example/datadog-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/datadog-agent.yaml -------------------------------------------------------------------------------- /dd-example/flask_deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/flask_deploy.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-cluster-role-binding.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-cluster-role.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-deployment.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-role-binding.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-role.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-service-account.yaml -------------------------------------------------------------------------------- /dd-example/kubernetes/kube-state-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/kubernetes/kube-state-metrics-service.yaml -------------------------------------------------------------------------------- /dd-example/postgres_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/postgres_deployment.yaml -------------------------------------------------------------------------------- /dd-example/raw_files/flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/raw_files/flask/Dockerfile -------------------------------------------------------------------------------- /dd-example/raw_files/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/raw_files/flask/app.py -------------------------------------------------------------------------------- /dd-example/raw_files/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/raw_files/flask/requirements.txt -------------------------------------------------------------------------------- /dd-example/raw_files/postgres/CreateDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/raw_files/postgres/CreateDB.sql -------------------------------------------------------------------------------- /dd-example/raw_files/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-example/raw_files/postgres/Dockerfile -------------------------------------------------------------------------------- /dd-user-report-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-user-report-json/README.md -------------------------------------------------------------------------------- /dd-user-report-json/dd-users-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd-user-report-json/dd-users-report.py -------------------------------------------------------------------------------- /dd_aws_add_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd_aws_add_account.py -------------------------------------------------------------------------------- /dd_public_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/dd_public_ip.sh -------------------------------------------------------------------------------- /ddog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/.gitignore -------------------------------------------------------------------------------- /ddog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/Dockerfile -------------------------------------------------------------------------------- /ddog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/LICENSE -------------------------------------------------------------------------------- /ddog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/README.md -------------------------------------------------------------------------------- /ddog/images/ddog-log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-log.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-logs.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-metric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-metric.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-metrics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-metrics.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-trace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-trace.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-traces-spans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-traces-spans.jpg -------------------------------------------------------------------------------- /ddog/images/ddog-traces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/images/ddog-traces.jpg -------------------------------------------------------------------------------- /ddog/pom.graalvm.native-image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/pom.graalvm.native-image.xml -------------------------------------------------------------------------------- /ddog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/pom.xml -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/DDog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/DDog.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/DDogConsts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/DDogConsts.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/Ping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/Ping.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/ClientChannelInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/ClientChannelInitializer.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/EchoHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/EchoHandler.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/NettyUdpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/client/NettyUdpClient.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/EchoHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/EchoHandler.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/NettyUdpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/NettyUdpServer.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/ServerChannelInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/ping/server/ServerChannelInitializer.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendLog.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendMetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendMetric.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendTrace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/command/send/SendTrace.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/model/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/model/Log.java -------------------------------------------------------------------------------- /ddog/src/main/java/com/foogaro/datadog/ddog/model/Trace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/ddog/src/main/java/com/foogaro/datadog/ddog/model/Trace.java -------------------------------------------------------------------------------- /delete_dashboards_by_text_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/delete_dashboards_by_text_search/README.md -------------------------------------------------------------------------------- /delete_dashboards_by_text_search/delete_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/delete_dashboards_by_text_search/delete_dashboards.py -------------------------------------------------------------------------------- /empty_dash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/empty_dash/README.md -------------------------------------------------------------------------------- /empty_dash/empty_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/empty_dash/empty_dash.py -------------------------------------------------------------------------------- /empty_dash/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/empty_dash/requirements.txt -------------------------------------------------------------------------------- /fullmetrics_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/fullmetrics_dash.py -------------------------------------------------------------------------------- /get_active_users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_active_users/README.md -------------------------------------------------------------------------------- /get_active_users/get_active_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_active_users/get_active_users.py -------------------------------------------------------------------------------- /get_all_boards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_boards/README.md -------------------------------------------------------------------------------- /get_all_boards/get_all_boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_boards/get_all_boards.py -------------------------------------------------------------------------------- /get_all_boards/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_boards/requirements.txt -------------------------------------------------------------------------------- /get_all_child_orgs/.python-version: -------------------------------------------------------------------------------- 1 | 2.7.15 2 | -------------------------------------------------------------------------------- /get_all_child_orgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_child_orgs/README.md -------------------------------------------------------------------------------- /get_all_child_orgs/all-child-orgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_child_orgs/all-child-orgs.py -------------------------------------------------------------------------------- /get_all_child_orgs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_child_orgs/requirements.txt -------------------------------------------------------------------------------- /get_all_services/.gitignore: -------------------------------------------------------------------------------- 1 | penv -------------------------------------------------------------------------------- /get_all_services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_services/README.md -------------------------------------------------------------------------------- /get_all_services/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_all_services/main.py -------------------------------------------------------------------------------- /get_all_services/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /get_hostname_agentversion/get_host_agent_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_hostname_agentversion/get_host_agent_list.py -------------------------------------------------------------------------------- /get_hostname_agentversion/json_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_hostname_agentversion/json_to_csv.py -------------------------------------------------------------------------------- /get_hostnames/get_host_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_hostnames/get_host_list.py -------------------------------------------------------------------------------- /get_hostnames/json_to_CSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/get_hostnames/json_to_CSV.py -------------------------------------------------------------------------------- /haproxy-datadog-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/haproxy-datadog-proxy/Dockerfile -------------------------------------------------------------------------------- /haproxy-datadog-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/haproxy-datadog-proxy/README.md -------------------------------------------------------------------------------- /haproxy-datadog-proxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/haproxy-datadog-proxy/haproxy.cfg -------------------------------------------------------------------------------- /historic_usage_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/historic_usage_to_csv.py -------------------------------------------------------------------------------- /hosts_with_aws_without_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/hosts_with_aws_without_agent.py -------------------------------------------------------------------------------- /iis_app_pool/iis_app_pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/iis_app_pool/iis_app_pool.yaml -------------------------------------------------------------------------------- /iis_app_pool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/iis_app_pool/readme.md -------------------------------------------------------------------------------- /implementation_services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/README.md -------------------------------------------------------------------------------- /implementation_services/images/Roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/Roles.png -------------------------------------------------------------------------------- /implementation_services/images/access_management_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/access_management_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/account_access_framework_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/account_access_framework_diagram.png -------------------------------------------------------------------------------- /implementation_services/images/application_monitors_dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/application_monitors_dataflow.png -------------------------------------------------------------------------------- /implementation_services/images/core_monitors_and_group_by_statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/core_monitors_and_group_by_statement.png -------------------------------------------------------------------------------- /implementation_services/images/core_operational_standards_objectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/core_operational_standards_objectives.png -------------------------------------------------------------------------------- /implementation_services/images/dashboard_strategy_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/dashboard_strategy_architecture.png -------------------------------------------------------------------------------- /implementation_services/images/data_monitoring_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/data_monitoring_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/data_optimization_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/data_optimization_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/data_visualization_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/data_visualization_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/datadog_agent_update_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/datadog_agent_update_strategy.png -------------------------------------------------------------------------------- /implementation_services/images/define_SLOs_by_service_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/define_SLOs_by_service_type.png -------------------------------------------------------------------------------- /implementation_services/images/example_core_SLOs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/example_core_SLOs.png -------------------------------------------------------------------------------- /implementation_services/images/firewall_configuration_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/firewall_configuration_note.png -------------------------------------------------------------------------------- /implementation_services/images/governance_data_optimization_monitoring_and_visualization_strategies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/governance_data_optimization_monitoring_and_visualization_strategies.png -------------------------------------------------------------------------------- /implementation_services/images/governance_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/governance_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/host_agents_secret_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/host_agents_secret_management.png -------------------------------------------------------------------------------- /implementation_services/images/log_indexing_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/log_indexing_overview.png -------------------------------------------------------------------------------- /implementation_services/images/network_egress_overview_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/network_egress_overview_diagram.png -------------------------------------------------------------------------------- /implementation_services/images/platform_prep[0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/platform_prep[0].png -------------------------------------------------------------------------------- /implementation_services/images/platform_preparation_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/platform_preparation_workflow.png -------------------------------------------------------------------------------- /implementation_services/images/platofrm_prep_and_access_management_strategies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/platofrm_prep_and_access_management_strategies.png -------------------------------------------------------------------------------- /implementation_services/images/pre_upgrade_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/pre_upgrade_validation.png -------------------------------------------------------------------------------- /implementation_services/images/proxy_configuration_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/proxy_configuration_note.png -------------------------------------------------------------------------------- /implementation_services/images/recommended_service_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/recommended_service_accounts.png -------------------------------------------------------------------------------- /implementation_services/images/service_catalog_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/service_catalog_management.png -------------------------------------------------------------------------------- /implementation_services/images/simplified_approach_to_defining_SLIs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/simplified_approach_to_defining_SLIs.png -------------------------------------------------------------------------------- /implementation_services/images/sso_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/sso_note.png -------------------------------------------------------------------------------- /implementation_services/images/sso_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/sso_setup.png -------------------------------------------------------------------------------- /implementation_services/images/tagging_governance_strategy_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/tagging_governance_strategy_note.png -------------------------------------------------------------------------------- /implementation_services/images/tagging_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/tagging_strategy.png -------------------------------------------------------------------------------- /implementation_services/images/tagging_strategy_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/implementation_services/images/tagging_strategy_note.png -------------------------------------------------------------------------------- /linux_odfs_API.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/linux_odfs_API.sh -------------------------------------------------------------------------------- /log-downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/log-downloader/README.md -------------------------------------------------------------------------------- /log-downloader/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/log-downloader/requirements.txt -------------------------------------------------------------------------------- /log-downloader/widget_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/log-downloader/widget_updater.py -------------------------------------------------------------------------------- /merge_screenboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/merge_screenboards/README.md -------------------------------------------------------------------------------- /merge_screenboards/merge_screenboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/merge_screenboards/merge_screenboards.py -------------------------------------------------------------------------------- /metric_usage_report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/.gitignore -------------------------------------------------------------------------------- /metric_usage_report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/README.md -------------------------------------------------------------------------------- /metric_usage_report/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/config.py -------------------------------------------------------------------------------- /metric_usage_report/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/progress_bar.py -------------------------------------------------------------------------------- /metric_usage_report/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/report.py -------------------------------------------------------------------------------- /metric_usage_report/report_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/report_init.py -------------------------------------------------------------------------------- /metric_usage_report/results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/results/.gitignore -------------------------------------------------------------------------------- /metric_usage_report/results/example_usage_report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/results/example_usage_report.csv -------------------------------------------------------------------------------- /metric_usage_report/results/example_usage_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/results/example_usage_report.json -------------------------------------------------------------------------------- /metric_usage_report/results/example_usage_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/metric_usage_report/results/example_usage_report.md -------------------------------------------------------------------------------- /migrate_all_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/migrate_all_dashboards.py -------------------------------------------------------------------------------- /migrate_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/migrate_dashboard.py -------------------------------------------------------------------------------- /migrate_monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/migrate_monitors.py -------------------------------------------------------------------------------- /monitors/get_groups_in_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/monitors/get_groups_in_monitor.py -------------------------------------------------------------------------------- /monitors/mute_monitors_with_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/monitors/mute_monitors_with_tags.py -------------------------------------------------------------------------------- /monitors/remove_email_from_monitor_notification_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/monitors/remove_email_from_monitor_notification_bulk.py -------------------------------------------------------------------------------- /monitors/replace_domain_in_monitor_notification_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/monitors/replace_domain_in_monitor_notification_bulk.py -------------------------------------------------------------------------------- /multi_org_create_users/multi_org_create_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/multi_org_create_users/multi_org_create_users.py -------------------------------------------------------------------------------- /multi_org_create_users/multi_org_create_users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/multi_org_create_users/multi_org_create_users.yaml -------------------------------------------------------------------------------- /mwl_optimiser/mwl_optimiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/mwl_optimiser/mwl_optimiser.py -------------------------------------------------------------------------------- /nginx-datadog-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/nginx-datadog-proxy/Dockerfile -------------------------------------------------------------------------------- /nginx-datadog-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/nginx-datadog-proxy/README.md -------------------------------------------------------------------------------- /nginx-datadog-proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/nginx-datadog-proxy/nginx.conf -------------------------------------------------------------------------------- /nginx-datadog-proxy/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/nginx-datadog-proxy/sources.list -------------------------------------------------------------------------------- /query_freshness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/query_freshness.py -------------------------------------------------------------------------------- /query_hosts_create_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/query_hosts_create_tags.py -------------------------------------------------------------------------------- /remove_lingering_aws_host_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/remove_lingering_aws_host_tags.py -------------------------------------------------------------------------------- /remove_old_dash_monitors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/remove_old_dash_monitors/README.md -------------------------------------------------------------------------------- /remove_old_dash_monitors/remove_old_dash_monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/remove_old_dash_monitors/remove_old_dash_monitors.py -------------------------------------------------------------------------------- /remove_single_tag_tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/remove_single_tag_tmp.py -------------------------------------------------------------------------------- /requester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/requester.ps1 -------------------------------------------------------------------------------- /s3_permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/s3_permissions/README.md -------------------------------------------------------------------------------- /s3_permissions/metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/s3_permissions/metrics.png -------------------------------------------------------------------------------- /s3_permissions/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/s3_permissions/output.png -------------------------------------------------------------------------------- /s3_permissions/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/s3_permissions/requirements.txt -------------------------------------------------------------------------------- /s3_permissions/s3_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/s3_permissions/s3_permissions.py -------------------------------------------------------------------------------- /synthetics/uptime-reporting/extract-synthetics-uptimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/synthetics/uptime-reporting/extract-synthetics-uptimes.py -------------------------------------------------------------------------------- /synthetics/uptime-reporting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/synthetics/uptime-reporting/readme.md -------------------------------------------------------------------------------- /synthetics/uptime-reporting/requirements.txt: -------------------------------------------------------------------------------- 1 | datadog-api-client==2.30.0 2 | -------------------------------------------------------------------------------- /update_host_tags_using_metadata_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/update_host_tags_using_metadata_example.py -------------------------------------------------------------------------------- /update_multiple_monitors_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/update_multiple_monitors_example.py -------------------------------------------------------------------------------- /uptime/conf.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/uptime/conf.yaml.example -------------------------------------------------------------------------------- /uptime/manual_test_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/uptime/manual_test_instructions.md -------------------------------------------------------------------------------- /uptime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/uptime/readme.md -------------------------------------------------------------------------------- /uptime/uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/uptime/uptime.py -------------------------------------------------------------------------------- /webhooks/Incidents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Incidents/README.md -------------------------------------------------------------------------------- /webhooks/Incidents/create_incident_SEV-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Incidents/create_incident_SEV-1.json -------------------------------------------------------------------------------- /webhooks/Logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Logs/README.md -------------------------------------------------------------------------------- /webhooks/Logs/synthetics-payload_disable_exclusion_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Logs/synthetics-payload_disable_exclusion_filter.json -------------------------------------------------------------------------------- /webhooks/Logs/synthetics-payload_enable_exclusion_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Logs/synthetics-payload_enable_exclusion_filter.json -------------------------------------------------------------------------------- /webhooks/Logs/synthetics-payload_set_main_index_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Logs/synthetics-payload_set_main_index_limit.json -------------------------------------------------------------------------------- /webhooks/Monitors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Monitors/README.md -------------------------------------------------------------------------------- /webhooks/Monitors/mute_host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Monitors/mute_host.json -------------------------------------------------------------------------------- /webhooks/Notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Notebooks/README.md -------------------------------------------------------------------------------- /webhooks/Notebooks/create_notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Notebooks/create_notebook.json -------------------------------------------------------------------------------- /webhooks/Notebooks/list_webhook_variables_to_notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Notebooks/list_webhook_variables_to_notebook.json -------------------------------------------------------------------------------- /webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/README.md -------------------------------------------------------------------------------- /webhooks/Synthetics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Synthetics/README.md -------------------------------------------------------------------------------- /webhooks/Synthetics/trigger_synthetic_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/Synthetics/trigger_synthetic_test.json -------------------------------------------------------------------------------- /webhooks/images/request_headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/Miscellany/HEAD/webhooks/images/request_headers.png --------------------------------------------------------------------------------