├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement.md ├── deprecated-tests.json └── workflows │ ├── cleanup-eu.yml │ ├── cleanup.yml │ ├── local-repo-pr.yml │ ├── nonregression-dp.yml │ ├── nonregression-eu-dp.yml │ ├── nonregression-eu.yml │ ├── nonregression.yml │ ├── release.yml │ ├── scripts │ ├── deployer-platform │ │ ├── main.js │ │ └── package.json │ └── ohiValidationTimeout.js │ ├── smoke-eu-dp.yml │ ├── smoke-eu.yml │ └── validation.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile.validator ├── LICENSE ├── README.md ├── cla.md ├── docs ├── README.md ├── error-codes.md ├── guided-java.md ├── kubernetes-eks.md ├── kubernetes.md ├── mongodb.md ├── recipe-spec │ ├── recipe-spec.md │ └── spec.json ├── release.md ├── supported_installations.md ├── test-framework │ ├── README.md │ ├── deployer.md │ ├── lambda-terminate-old-git-ec2.py │ ├── terminate-ec2-missing-owning-team.py │ ├── terraform.md │ └── terraform │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── resource.tf │ │ ├── terraform.tf │ │ └── variables.tf └── uninstall │ ├── README.md │ ├── aws.md │ └── java.md ├── examples └── sample-linux-infrastructure.yaml ├── recipes └── newrelic │ ├── apm │ ├── dotNet │ │ ├── linux-systemd.yml │ │ ├── windows-iis-unsupported.yml │ │ └── windows-iis.yml │ ├── java │ │ └── linux.yml │ ├── node │ │ ├── linux.yml │ │ └── windows.yml │ ├── php │ │ ├── debian.yml │ │ ├── redhat.yml │ │ └── redhat64.yml │ ├── python │ │ └── linux.yml │ └── ruby │ │ └── linux.yml │ ├── ebpf │ ├── centos.yml │ └── ubuntu.yml │ └── infrastructure │ ├── agent-control │ ├── debian.yml │ ├── rhel.yml │ └── suse.yml │ ├── alerts │ └── golden.yml │ ├── awslinux.yml │ ├── centos_rhel.yml │ ├── cloud │ ├── aws-linux.yml │ ├── aws-windows.yml │ ├── azure-linux.yml │ ├── azure-windows.yml │ ├── gcp-linux.yml │ └── gcp-windows.yml │ ├── darwin.yml │ ├── debian.yml │ ├── kubernetes.yml │ ├── logs │ ├── linux-logs.yml │ └── windows-logs.yml │ ├── ohi │ ├── apache │ │ ├── debian.yml │ │ └── rhel.yml │ ├── cassandra │ │ ├── debian.yml │ │ └── rhel.yml │ ├── consul │ │ ├── debian.yml │ │ └── rhel.yml │ ├── couchbase │ │ ├── debian.yml │ │ └── rhel.yml │ ├── elasticsearch │ │ ├── debian.yml │ │ ├── rhel.yml │ │ ├── suse.yml │ │ └── windows.yml │ ├── haproxy │ │ ├── debian.yml │ │ └── rhel.yml │ ├── kafka │ │ ├── linux.yml │ │ └── windows.yml │ ├── memcached │ │ ├── debian.yml │ │ └── rhel.yml │ ├── mongodb │ │ ├── debian.yml │ │ ├── rhel.yml │ │ └── windows.yml │ ├── mysql │ │ ├── debian.yml │ │ ├── rds.yml │ │ ├── rhel.yml │ │ ├── suse.yml │ │ └── windows.yml │ ├── nagios │ │ ├── debian.yml │ │ └── rhel.yml │ ├── nginx │ │ ├── linux.yml │ │ └── suse.yml │ ├── oracle │ │ └── linux.yml │ ├── postgres │ │ ├── debian.yml │ │ ├── rhel.yml │ │ └── windows.yml │ ├── rabbitmq │ │ ├── debian.yml │ │ ├── rhel.yml │ │ └── windows.yml │ ├── redis │ │ ├── debian.yml │ │ └── rhel.yml │ ├── sql │ │ ├── ms-linux.yml │ │ └── ms-sql.yml │ └── varnish │ │ ├── debian.yml │ │ └── rhel.yml │ ├── suse.yml │ ├── ubuntu.yml │ └── windows.yml ├── test ├── definitions-eu │ ├── agent-control │ │ ├── debians │ │ │ ├── debian11-agent-control-eu.json │ │ │ ├── ubuntu16-agent-control-eu.json │ │ │ ├── ubuntu18-agent-control-eu.json │ │ │ ├── ubuntu20-agent-control-eu.json │ │ │ ├── ubuntu20arm64-agent-control-eu.json │ │ │ └── ubuntu22-agent-control-eu.json │ │ ├── logs │ │ │ ├── amazonlinux2-agent-control-logs-eu.json │ │ │ ├── amazonlinux2023-agent-control-logs-eu.json │ │ │ ├── debian11-agent-control-logs-eu.json │ │ │ ├── redhat8-agent-control-logs-eu.json │ │ │ ├── redhat9-agent-control-logs-eu.json │ │ │ ├── suse154-agent-control-logs-eu.json │ │ │ ├── ubuntu20-agent-control-logs-eu.json │ │ │ └── ubuntu22-agent-control-logs-eu.json │ │ ├── rhel │ │ │ ├── awslinux23-agent-control-eu.json │ │ │ ├── awslinuxarm64-agent-control-eu.json │ │ │ └── redhat8arm64-agent-control-eu.json │ │ └── suse │ │ │ ├── suse125-agent-control-eu.json │ │ │ └── suse154-agent-control-eu.json │ ├── apm │ │ ├── dotNet │ │ │ ├── linux │ │ │ │ ├── debian10-nginx-aspnetcore.json │ │ │ │ └── ubuntu20-apache-aspnetcore.json │ │ │ └── windows │ │ │ │ ├── iis-blank.json │ │ │ │ ├── windows2016-iis.json │ │ │ │ ├── windows2019-core-only-iis.json │ │ │ │ └── windows2019-iis.json │ │ ├── java │ │ │ ├── deb10-supd-javatron.json │ │ │ ├── deb10-sysd-custom-sh.json │ │ │ ├── deb10-sysd-tomcat-cmd.json │ │ │ ├── deb10-sysd-tomcat-sh.json │ │ │ ├── deb11-apt-sysd-tomcat.json │ │ │ ├── deb11-jetty.json │ │ │ ├── deb11-sysd-jboss.json │ │ │ ├── rhl2-jetty.json │ │ │ ├── rhl2-supd-javatron.json │ │ │ ├── rhl2-sysd-custom-sh.json │ │ │ ├── rhl2-sysd-tomcat-cmd.json │ │ │ ├── rhl2-sysd-tomcat-sh.json │ │ │ ├── rhl2-yum-docker-jboss.json │ │ │ ├── rhl2-yum-sysd-tomcat.json │ │ │ ├── ub20-apt-docker-jboss.json │ │ │ ├── ub20-apt-docker-tomcat.json │ │ │ └── ub20-apt-sysd-tomcat.json │ │ ├── node │ │ │ └── node-linux2.json │ │ └── php-agent │ │ │ ├── php-apache-fpm-wordpress-linux2.json │ │ │ ├── php-apache-fpm-wordpress-ubuntu18.json │ │ │ ├── php-apache-wordpress-linux2.json │ │ │ ├── php-apache-wordpress-ubuntu18.json │ │ │ ├── php-nginx-fpm-wordpress-linux2.json │ │ │ └── php-nginx-fpm-wordpress-ubuntu18.json │ ├── infra-agent │ │ ├── debians │ │ │ ├── debian10-infra.json │ │ │ ├── debian10arm64-infra.json │ │ │ ├── debian11-infra.json │ │ │ ├── debian12-infra.json │ │ │ ├── ubuntu16-infra.json │ │ │ ├── ubuntu18-infra.json │ │ │ ├── ubuntu20-infra.json │ │ │ └── ubuntu20arm64-infra.json │ │ ├── rhel │ │ │ ├── awslinux-infra.json │ │ │ ├── awslinuxarm64-infra.json │ │ │ ├── oracle8-infra.json │ │ │ ├── redhat7-infra.json │ │ │ ├── redhat8arm64-infra.json │ │ │ └── redhat8x-infra.json │ │ ├── suse │ │ │ ├── suse125-infra.json │ │ │ ├── suse153-infra.json │ │ │ └── suse154-infra.json │ │ └── windows │ │ │ └── windows2016.json │ ├── logging │ │ ├── debian │ │ │ ├── debian10-arm64-logs.json │ │ │ └── ubuntu20-arm64-logs.json │ │ └── rhel │ │ │ └── amazonlinux2-arm64-logs.json │ └── smoke │ │ ├── awslinux2-infra.json │ │ ├── awslinuxarm64-infra.json │ │ ├── debian10-infra.json │ │ ├── nginx-linux2-ami.json │ │ ├── ubuntu20-infra.json │ │ └── windows2019.json ├── definitions │ ├── agent-control │ │ ├── debians │ │ │ ├── debian11-agent-control.json │ │ │ ├── ubuntu16-agent-control.json │ │ │ ├── ubuntu18-agent-control.json │ │ │ ├── ubuntu20-agent-control.json │ │ │ ├── ubuntu20arm64-agent-control.json │ │ │ └── ubuntu22-agent-control.json │ │ ├── logs │ │ │ ├── amazonlinux2-agent-control-logs.json │ │ │ ├── amazonlinux2023-aarch64-agent-control-logs.json │ │ │ ├── amazonlinux2023-x86-agent-control-logs.json │ │ │ ├── debian11-agent-control-logs.json │ │ │ ├── redhat8-agent-control-logs.json │ │ │ ├── redhat9-agent-control-logs.json │ │ │ ├── suse154-agent-control-logs.json │ │ │ ├── suse155-agent-control-logs.json │ │ │ ├── ubuntu20-agent-control-logs.json │ │ │ └── ubuntu22-agent-control-logs.json │ │ ├── rhel │ │ │ ├── awslinux23-agent-control.json │ │ │ ├── awslinuxarm64-agent-control.json │ │ │ └── redhat8arm64-agent-control.json │ │ └── suse │ │ │ ├── suse125-agent-control.json │ │ │ └── suse154-agent-control.json │ ├── alerts │ │ └── amazonlinux-2023-golden.json │ ├── apm │ │ ├── dotNet │ │ │ └── linux │ │ │ │ └── linux2-aspnetcore5.json │ │ ├── us-php-apache-fpm-wordpress-ubuntu18.json │ │ └── us-php-nginx-fpm-wordpress-linux2.json │ ├── ebpf │ │ └── debians │ │ │ └── ubuntu22-ebpf-agent.json │ ├── infra-agent │ │ ├── RHEL9-infra.json │ │ ├── amazonlinux2023-infra.json │ │ ├── suse154-infra.json │ │ ├── ubuntu22-infra.json │ │ └── ubuntu24-infra.json │ ├── logging │ │ ├── RHEL9.json │ │ ├── amazonlinux2-logs.json │ │ ├── amazonlinux2023-arm64-logs.json │ │ ├── amazonlinux2023.json │ │ ├── debian11-logs.json │ │ ├── redhat8-logs.json │ │ ├── suse154-logs.json │ │ ├── suse155-logs.json │ │ ├── ubuntu20-logs.json │ │ ├── ubuntu22-logs.json │ │ ├── ubuntu24-logs.json │ │ └── w19-logs.json │ ├── ohi │ │ ├── linux │ │ │ ├── apache-rhel.json │ │ │ ├── cassandra-debian.json │ │ │ ├── consul-debian.json │ │ │ ├── consul-rhel.json │ │ │ ├── couchbase-debian.json │ │ │ ├── couchbase-rhel.json │ │ │ ├── docker-linux2.json │ │ │ ├── elasticsearch-debian.json │ │ │ ├── elasticsearch-rhel.json │ │ │ ├── elasticsearch-suse.json │ │ │ ├── haproxy-debian.json │ │ │ ├── haproxy-rhel.json │ │ │ ├── k8-linux2.json │ │ │ ├── memcached-debian.json │ │ │ ├── memcached-rhel.json │ │ │ ├── mongodb-debian.json │ │ │ ├── mongodb-rhel.json │ │ │ ├── mysql-debian.json │ │ │ ├── mysql-suse.json │ │ │ ├── mysql-ubuntu22.json │ │ │ ├── mysql-ubuntu24.json │ │ │ ├── nagios-debian.json │ │ │ ├── nagios-rhel.json │ │ │ ├── nginx-debian.json │ │ │ ├── nginx-linux2-ami.json │ │ │ ├── nginx-linux2-svc.json │ │ │ ├── nginx-ubuntu.json │ │ │ ├── postgres-debian-targeted-failure.json │ │ │ ├── postgres-debian.json │ │ │ ├── postgres-rhel.json │ │ │ ├── rabbitmq-debian.json │ │ │ ├── rabbitmq-rhel.json │ │ │ ├── redis-debian.json │ │ │ ├── redis-rhel.json │ │ │ ├── redis-ubuntu22.json │ │ │ ├── varnish-debian.json │ │ │ └── varnish-rhel.json │ │ └── windows │ │ │ └── ms-sql-server2019Standard.json │ └── smoke │ │ ├── apache-debian.json │ │ ├── awslinux2-infra.json │ │ ├── infra-win2016.json │ │ ├── infra-win2019.json │ │ ├── linux2-aspnetcore5.json │ │ ├── mysql-rhel.json │ │ ├── redhat84-infra.json │ │ └── rhl2-sysd-jboss.json ├── deploy │ ├── assertions │ │ ├── is-reporting │ │ │ └── roles │ │ │ │ └── onafterstart │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── entity-search.source.gql │ │ │ │ └── gql-query.source.json │ │ └── recipe-is-valid │ │ │ └── roles │ │ │ └── onafterstart │ │ │ ├── tasks │ │ │ ├── main.yml │ │ │ └── nrql_has_data.yml │ │ │ └── templates │ │ │ ├── gql-query.source.json │ │ │ └── nrql-query.source.gql │ ├── crowdstrike │ │ └── roles │ │ │ └── configure │ │ │ └── tasks │ │ │ └── main.yml │ ├── linux │ │ ├── apache │ │ │ ├── deploy-application │ │ │ │ └── dotNet │ │ │ │ │ ├── debian │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── onafterstart │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── onbeforestart │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── net5webapplication.conf │ │ │ │ │ │ │ └── net5webapplication.service │ │ │ │ │ │ └── start │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── reverse-proxy.conf │ │ │ │ │ └── rhel │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── onafterstart │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── onbeforestart │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── net5webapplication.conf │ │ │ │ │ │ └── net5webapplication.service │ │ │ │ │ └── start │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── reverse-proxy.conf │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── server-status.conf │ │ ├── cassandra │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── prepare │ │ │ │ │ └── tasks │ │ │ │ │ ├── installCassandra.yml │ │ │ │ │ ├── installDependencies.yml │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ ├── configure │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── prepare │ │ │ │ └── tasks │ │ │ │ ├── installCassandra.yml │ │ │ │ ├── installDependencies.yml │ │ │ │ ├── installJava.yml │ │ │ │ └── main.yml │ │ ├── consul │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── config.json │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── consul.hcl │ │ ├── couchbase │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── docker │ │ │ └── install │ │ │ │ └── roles │ │ │ │ └── prepare │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── dotNet │ │ │ └── install │ │ │ │ ├── rhel │ │ │ │ └── roles │ │ │ │ │ └── prepare │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── ubuntu20 │ │ │ │ └── roles │ │ │ │ └── prepare │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── elasticsearch │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── rhel │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── elasticsearch.repo │ │ │ │ └── suse │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── elasticsearch.repo │ │ ├── go │ │ │ ├── redhat │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── server.go │ │ ├── haproxy │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── haproxy.cfg │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── haproxy.cfg │ │ ├── java │ │ │ ├── docker-flow │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── gradle-flow │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── javaApp │ │ │ │ ├── pom.xml │ │ │ │ ├── src │ │ │ │ │ └── main │ │ │ │ │ │ └── webapp │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ ├── dummy.jsp │ │ │ │ │ │ └── index.jsp │ │ │ │ └── target │ │ │ │ │ ├── javaApp │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ ├── dummy.jsp │ │ │ │ │ │ └── web.xml │ │ │ │ │ └── index.jsp │ │ │ │ │ └── maven-archiver │ │ │ │ │ └── pom.properties │ │ │ ├── javaGradleApp │ │ │ │ ├── .gitignore │ │ │ │ ├── .gradle │ │ │ │ │ ├── buildOutputCleanup │ │ │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ │ │ └── cache.properties │ │ │ │ │ └── vcs-1 │ │ │ │ │ │ └── gc.properties │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── settings.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── example │ │ │ │ │ │ └── Main.java │ │ │ │ │ └── webapp │ │ │ │ │ ├── WEB-INF │ │ │ │ │ └── web.xml │ │ │ │ │ ├── dummy.jsp │ │ │ │ │ └── index.jsp │ │ │ ├── redhat │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── javaApp │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── dummy.jsp │ │ │ │ └── web.xml │ │ │ │ └── index.jsp │ │ ├── jboss │ │ │ ├── docker │ │ │ │ ├── debian │ │ │ │ │ └── restApp │ │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ ├── files │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── install │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── start │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── linux │ │ │ │ │ └── restApp │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── files │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── systemd │ │ │ │ └── install │ │ │ │ ├── linux │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── jetty │ │ │ ├── docker │ │ │ │ └── install │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── start │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── systemd │ │ │ │ └── install │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── jmx-jboss │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── jmx-jetty │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ ├── jetty │ │ │ │ │ └── start.ini │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── jetty │ │ │ │ └── start.ini │ │ ├── jmx-tomcat │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ ├── setenv.sh │ │ │ │ │ └── tomcat.service │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── setenv.sh │ │ │ │ └── tomcat.service │ │ ├── kafka │ │ │ └── install │ │ │ │ └── roles │ │ │ │ └── start │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── kubernetes │ │ │ ├── eks │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── installOnlineBoutique.yml │ │ │ │ │ │ ├── installSockShop.yml │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── prepare │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── createAutoScaler.yml │ │ │ │ │ │ ├── createCluster.yml │ │ │ │ │ │ ├── installEksctl.yml │ │ │ │ │ │ ├── installGit.yml │ │ │ │ │ │ ├── installKubectl.yml │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── teardown │ │ │ │ │ └── tasks │ │ │ │ │ ├── deleteCluster.yml │ │ │ │ │ └── main.yml │ │ │ └── minikube │ │ │ │ └── roles │ │ │ │ └── prepare │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── kubectl.wrap │ │ ├── memcached │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ ├── memcached.conf │ │ │ │ │ └── sasl │ │ │ │ │ └── memcached.conf │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── memcached │ │ │ │ └── sasl │ │ │ │ └── memcached.conf │ │ ├── mongodb │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── initiate_script.js │ │ │ │ │ └── mongod.conf │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── commands.js │ │ │ │ ├── initiate.js │ │ │ │ ├── mongod.conf │ │ │ │ └── mongodb-org-6.0.repo │ │ ├── mysql │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── rhel │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── suse │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── nagios │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── newrelic-cli │ │ │ ├── install-copy-command │ │ │ │ └── roles │ │ │ │ │ └── onafterstart │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── install-recipe │ │ │ │ └── roles │ │ │ │ │ └── onafterstart │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── install │ │ │ │ └── roles │ │ │ │ │ └── onafterstart │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── remove_golden_alerts.sh │ │ │ └── validate-recipe │ │ │ │ └── roles │ │ │ │ └── onafterstart │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── application-agent-context-query.source.gpl │ │ │ │ └── gql-query.source.gpl │ │ ├── nginx │ │ │ ├── deploy-application │ │ │ │ └── dotNet │ │ │ │ │ └── debian │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── onafterstart │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ ├── onbeforestart │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── nginx.service │ │ │ │ │ │ └── nginx.site │ │ │ │ │ ├── start │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── stop │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── install │ │ │ │ ├── debian │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ ├── linux2 │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── default-status-nginx.conf │ │ │ │ └── suse │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── open-default │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── yum-fix │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── nodejs │ │ │ ├── docker-flow │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── redhat │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ ├── Dockerfile │ │ │ │ └── myNodeApp │ │ │ │ ├── app.js │ │ │ │ └── package.json │ │ ├── oracle │ │ │ └── install │ │ │ │ ├── centos │ │ │ │ └── roles │ │ │ │ │ └── start │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── linux │ │ │ │ └── roles │ │ │ │ └── start │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── php │ │ │ ├── apache-fpm-wordpress │ │ │ │ ├── debian │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── redhat │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── apache-wordpress │ │ │ │ ├── debian │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── redhat │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── docker-php │ │ │ │ └── redhat │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── docker-templates │ │ │ │ ├── Dockerfile │ │ │ │ └── index.php │ │ │ ├── nginx-fpm-wordpress │ │ │ │ ├── debian │ │ │ │ │ └── roles │ │ │ │ │ │ └── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ └── redhat │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ ├── install-wordpress.sh │ │ │ │ ├── wordpress-fpm.conf │ │ │ │ ├── wordpress-httpd.conf │ │ │ │ ├── wordpress-site │ │ │ │ └── wordpress.conf │ │ ├── postgres │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── pg_hba.conf │ │ │ │ └── pgdg.repo │ │ ├── python │ │ │ └── install │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ ├── app.py │ │ │ │ └── requirements.txt │ │ ├── rabbitmq │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── redis │ │ │ └── install │ │ │ │ ├── debian │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── tasks │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ └── redis.conf │ │ │ │ └── rhel │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ │ └── templates │ │ │ │ └── redis.conf │ │ ├── ruby │ │ │ └── ruby-on-rails │ │ │ │ └── redhat │ │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── shell │ │ │ └── roles │ │ │ │ ├── configure │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── onafterstart │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── onbeforestart │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── onstart │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ ├── prepare │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── upload │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── tomcat │ │ │ ├── docker │ │ │ │ └── debian │ │ │ │ │ ├── noApp │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── start │ │ │ │ │ │ └── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── restApp │ │ │ │ │ └── roles │ │ │ │ │ └── configure │ │ │ │ │ ├── files │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ ├── supervisord │ │ │ │ └── shScript │ │ │ │ │ └── install │ │ │ │ │ └── linux │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── supervisord.yml │ │ │ │ │ └── templates │ │ │ │ │ │ └── supervisord.conf │ │ │ │ │ └── prepare │ │ │ │ │ ├── files │ │ │ │ │ ├── init.d-supervisord │ │ │ │ │ └── supervisord.conf │ │ │ │ │ └── tasks │ │ │ │ │ ├── installJava.yml │ │ │ │ │ ├── installMaven.yml │ │ │ │ │ ├── installSupervisord.yml │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ └── main.yml │ │ │ └── systemd │ │ │ │ ├── apt │ │ │ │ └── install │ │ │ │ │ └── linux │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── main.yml │ │ │ │ │ └── templates │ │ │ │ │ │ └── tomcat9.service │ │ │ │ │ └── prepare │ │ │ │ │ └── tasks │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── cmdLine │ │ │ │ └── install │ │ │ │ │ └── linux │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── systemd.yml │ │ │ │ │ └── templates │ │ │ │ │ │ ├── systemd.conf │ │ │ │ │ │ └── tomcat-env │ │ │ │ │ └── prepare │ │ │ │ │ └── tasks │ │ │ │ │ ├── installJava.yml │ │ │ │ │ ├── installMaven.yml │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── shScript │ │ │ │ ├── catalina │ │ │ │ │ └── install │ │ │ │ │ │ └── linux │ │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ │ └── systemd.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── systemd.conf │ │ │ │ │ │ └── prepare │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── installJava.yml │ │ │ │ │ │ ├── installMaven.yml │ │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ │ └── main.yml │ │ │ │ ├── custom │ │ │ │ │ └── install │ │ │ │ │ │ └── linux │ │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ │ └── systemd.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── custom-start.sh │ │ │ │ │ │ │ ├── custom-stop.sh │ │ │ │ │ │ │ └── systemd.conf │ │ │ │ │ │ └── prepare │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── installJava.yml │ │ │ │ │ │ ├── installMaven.yml │ │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ │ └── main.yml │ │ │ │ ├── gradle │ │ │ │ │ └── install │ │ │ │ │ │ └── linux │ │ │ │ │ │ └── roles │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ │ └── systemd.yml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── systemd.conf │ │ │ │ │ │ └── prepare │ │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── installGradle.yml │ │ │ │ │ │ ├── installJava.yml │ │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ │ └── main.yml │ │ │ │ └── start │ │ │ │ │ └── install │ │ │ │ │ └── linux │ │ │ │ │ └── roles │ │ │ │ │ ├── configure │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── main.yml │ │ │ │ │ │ └── systemd.yml │ │ │ │ │ └── templates │ │ │ │ │ │ └── systemd.conf │ │ │ │ │ └── prepare │ │ │ │ │ └── tasks │ │ │ │ │ ├── installJava.yml │ │ │ │ │ ├── installMaven.yml │ │ │ │ │ ├── installTomcat.yml │ │ │ │ │ └── main.yml │ │ │ │ └── yum │ │ │ │ └── install │ │ │ │ └── linux │ │ │ │ └── roles │ │ │ │ ├── configure │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── prepare │ │ │ │ └── tasks │ │ │ │ ├── installTomcat.yml │ │ │ │ └── main.yml │ │ └── varnish │ │ │ └── install │ │ │ ├── debian │ │ │ └── roles │ │ │ │ └── configure │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ │ └── rhel │ │ │ └── roles │ │ │ └── configure │ │ │ └── tasks │ │ │ └── main.yml │ └── windows │ │ ├── elasticsearch │ │ └── install │ │ │ └── roles │ │ │ └── prepare │ │ │ └── tasks │ │ │ └── main.yml │ │ ├── iis │ │ ├── deploy-webapplication │ │ │ └── roles │ │ │ │ ├── configure │ │ │ │ └── tasks │ │ │ │ │ └── main.yml │ │ │ │ └── start │ │ │ │ └── tasks │ │ │ │ └── main.yml │ │ └── install │ │ │ └── roles │ │ │ └── prepare │ │ │ └── tasks │ │ │ └── main.yml │ │ ├── kafka │ │ └── install │ │ │ └── roles │ │ │ └── start │ │ │ └── tasks │ │ │ └── main.yml │ │ ├── ms-sql │ │ └── create-newrelic │ │ │ └── roles │ │ │ └── configure │ │ │ └── tasks │ │ │ └── main.yml │ │ └── newrelic-cli │ │ ├── install-recipe │ │ └── roles │ │ │ └── onafterstart │ │ │ └── tasks │ │ │ └── main.yml │ │ └── install │ │ └── roles │ │ └── onafterstart │ │ └── tasks │ │ └── main.yml ├── deprecated │ ├── EU │ │ ├── centos7-infra.json │ │ ├── centos8-arm64-logs.json │ │ ├── centos8-infra.json │ │ └── centos8arm64-infra.json │ └── US │ │ └── amazonlinux2018-logs-unsupported.json └── manual │ ├── definitions │ ├── apm │ │ ├── dotNet │ │ │ ├── linux │ │ │ │ ├── debian10-nginx-aspnetcore.json │ │ │ │ ├── linux2-aspnetcore5.json │ │ │ │ ├── ubuntu20-apache-aspnetcore.json │ │ │ │ └── ubuntu20-nginx-aspnetcore.json │ │ │ └── windows │ │ │ │ ├── iis-blank.json │ │ │ │ └── iis-server2019.json │ │ ├── go │ │ │ └── go-linux2.json │ │ ├── java │ │ │ └── linux │ │ │ │ ├── docker-flows │ │ │ │ └── java-docker-flows.json │ │ │ │ ├── java-tomcat-gradle-linux2.json │ │ │ │ ├── java-tomcat-maven-linux2.json │ │ │ │ ├── jboss │ │ │ │ ├── docker │ │ │ │ │ ├── rhel-dockerjboss-tomcat.json │ │ │ │ │ ├── rhl2-yum-docker.json │ │ │ │ │ ├── ub20-apt-docker.json │ │ │ │ │ ├── ub20-docker-rest.json │ │ │ │ │ ├── ub20-docker-tcAndJb.json │ │ │ │ │ ├── ub20-dockertomcat-jboss.json │ │ │ │ │ └── ub20-tomcat-jboss.json │ │ │ │ └── systemd │ │ │ │ │ ├── deb10-sysd-jboss.json │ │ │ │ │ └── rhl2-sysd-jboss.json │ │ │ │ ├── jetty │ │ │ │ ├── deb10-jetty.json │ │ │ │ └── rhl2-jetty.json │ │ │ │ └── tomcat │ │ │ │ ├── docker │ │ │ │ ├── ub20-apt-docker-tomcat.json │ │ │ │ └── ub20-docker-rest.json │ │ │ │ ├── supervisord │ │ │ │ ├── deb10-supd-javatron.json │ │ │ │ ├── deb10-supd-tomcat-sh.json │ │ │ │ ├── rhl2-supd-javatron.json │ │ │ │ └── rhl2-supd-tomcat-sh.json │ │ │ │ └── systemd │ │ │ │ ├── deb10-apt-sysd-tomcat.json │ │ │ │ ├── deb10-sysd-catalina-sh.json │ │ │ │ ├── deb10-sysd-custom-sh.json │ │ │ │ ├── deb10-sysd-start-sh.json │ │ │ │ ├── deb10-sysd-tomcat-cmd.json │ │ │ │ ├── rhl2-sysd-catalina-sh.json │ │ │ │ ├── rhl2-sysd-custom-sh.json │ │ │ │ ├── rhl2-sysd-start-sh.json │ │ │ │ ├── rhl2-sysd-tomcat-cmd.json │ │ │ │ ├── rhl2-yum-sysd-tomcat.json │ │ │ │ └── ub20-apt-sysd-tomcat.json │ │ ├── node │ │ │ ├── node-js-docker.json │ │ │ └── node-linux2.json │ │ ├── php-agent │ │ │ ├── docker-php-linux2.json │ │ │ ├── php-apache-fpm-wordpress-linux2.json │ │ │ ├── php-apache-fpm-wordpress-ubuntu18.json │ │ │ ├── php-apache-wordpress-linux2.json │ │ │ ├── php-apache-wordpress-ubuntu18.json │ │ │ ├── php-nginx-fpm-wordpress-linux2.json │ │ │ └── php-nginx-fpm-wordpress-ubuntu18.json │ │ ├── python │ │ │ └── python-al2.json │ │ └── ruby │ │ │ └── rubyonrails.json │ ├── fleet.json │ ├── infra-agent │ │ ├── awslinux-infra.json │ │ ├── awslinux2-infra.json │ │ ├── awslinuxarm64-infra.json │ │ ├── centos7-infra.json │ │ ├── centos8-infra.json │ │ ├── centos8arm64-infra.json │ │ ├── debian10-infra.json │ │ ├── debian10arm64-infra.json │ │ ├── redhat7-infra.json │ │ ├── redhat8-infra.json │ │ ├── redhat8arm64-infra.json │ │ ├── redhat9-infra.json │ │ ├── suse124-infra.json │ │ ├── suse125-infra.json │ │ ├── suse154-infra.json │ │ ├── ubuntu14-infra.json │ │ ├── ubuntu16-infra.json │ │ ├── ubuntu18-infra.json │ │ ├── ubuntu20-infra-crowdstrike.json │ │ ├── ubuntu20-infra.json │ │ ├── ubuntu20arm64-infra.json │ │ ├── ubuntu20x10arm64-infra.json │ │ ├── windows2016.json │ │ └── windows2019.json │ ├── kubernetes │ │ ├── eks-empty.json │ │ └── minikube-empty.json │ ├── logging │ │ ├── amazonlinux2-arm64-logs.json │ │ ├── centos8-arm64-logs.json │ │ ├── debian10-arm64-logs.json │ │ ├── ubuntu20-arm64-logs.json │ │ └── w19-logs.json │ ├── ohi-auto-config │ │ ├── linux │ │ │ ├── apache-mysql-ubuntu18-auto.json │ │ │ ├── mongodb-debian.json │ │ │ ├── mongodb-rhel.json │ │ │ ├── nginx-elasticsearch-debian-auto.json │ │ │ ├── nginx-mysql-linux2-auto.json │ │ │ ├── nginx-mysql-redis-linux2-auto.json │ │ │ └── postgres-rhel.json │ │ └── windows │ │ │ └── ms-sql-server2019Standard-auto.json │ └── ohi │ │ ├── linux │ │ ├── apache-cassandra-debian10.json │ │ ├── apache-cassandra-linux2.json │ │ ├── apache-mysql-ubuntu18.json │ │ ├── apache-tomcat.json │ │ ├── docker-linux2.json │ │ ├── kafka-centos8.json │ │ ├── kafka-ubuntu20.json │ │ ├── memcached-debian.json │ │ ├── memcached-rhel.json │ │ ├── mongodb-debian.json │ │ ├── mongodb-rhel.json │ │ ├── nginx-elasticsearch-debian.json │ │ ├── nginx-mysql-linux2.json │ │ ├── nginx-mysql-redis-linux2.json │ │ ├── oracle-enterprise-linux.json │ │ ├── oracle-standard-centos.json │ │ ├── postgres-debian.json │ │ ├── postgres-rhel.json │ │ ├── rabbitmq-debian.json │ │ ├── rabbitmq-rhel.json │ │ ├── redis-debian.json │ │ └── redis-rhel.json │ │ └── windows │ │ ├── elasticsearch-ch.json │ │ ├── kafka-server2019.json │ │ ├── mongodb-server2016.json │ │ ├── ms-redis.json │ │ ├── ms-sql-server2019.json │ │ ├── mysql-server2019.json │ │ ├── postgresql-server2016.json │ │ └── rabbitMQ-server2016.json │ └── readme.MD └── validator ├── README.md ├── package-lock.json ├── package.json └── schema-v1.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/deprecated-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/deprecated-tests.json -------------------------------------------------------------------------------- /.github/workflows/cleanup-eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/cleanup-eu.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/local-repo-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/local-repo-pr.yml -------------------------------------------------------------------------------- /.github/workflows/nonregression-dp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/nonregression-dp.yml -------------------------------------------------------------------------------- /.github/workflows/nonregression-eu-dp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/nonregression-eu-dp.yml -------------------------------------------------------------------------------- /.github/workflows/nonregression-eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/nonregression-eu.yml -------------------------------------------------------------------------------- /.github/workflows/nonregression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/nonregression.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/deployer-platform/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/scripts/deployer-platform/main.js -------------------------------------------------------------------------------- /.github/workflows/scripts/deployer-platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/scripts/deployer-platform/package.json -------------------------------------------------------------------------------- /.github/workflows/scripts/ohiValidationTimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/scripts/ohiValidationTimeout.js -------------------------------------------------------------------------------- /.github/workflows/smoke-eu-dp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/smoke-eu-dp.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/smoke-eu.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.validator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/Dockerfile.validator -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/README.md -------------------------------------------------------------------------------- /cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/cla.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/error-codes.md -------------------------------------------------------------------------------- /docs/guided-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/guided-java.md -------------------------------------------------------------------------------- /docs/kubernetes-eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/kubernetes-eks.md -------------------------------------------------------------------------------- /docs/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/kubernetes.md -------------------------------------------------------------------------------- /docs/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/mongodb.md -------------------------------------------------------------------------------- /docs/recipe-spec/recipe-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/recipe-spec/recipe-spec.md -------------------------------------------------------------------------------- /docs/recipe-spec/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/recipe-spec/spec.json -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/release.md -------------------------------------------------------------------------------- /docs/supported_installations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/supported_installations.md -------------------------------------------------------------------------------- /docs/test-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/README.md -------------------------------------------------------------------------------- /docs/test-framework/deployer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/deployer.md -------------------------------------------------------------------------------- /docs/test-framework/lambda-terminate-old-git-ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/lambda-terminate-old-git-ec2.py -------------------------------------------------------------------------------- /docs/test-framework/terminate-ec2-missing-owning-team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terminate-ec2-missing-owning-team.py -------------------------------------------------------------------------------- /docs/test-framework/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terraform.md -------------------------------------------------------------------------------- /docs/test-framework/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terraform/outputs.tf -------------------------------------------------------------------------------- /docs/test-framework/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terraform/provider.tf -------------------------------------------------------------------------------- /docs/test-framework/terraform/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terraform/resource.tf -------------------------------------------------------------------------------- /docs/test-framework/terraform/terraform.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.12.2" 3 | } 4 | -------------------------------------------------------------------------------- /docs/test-framework/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/test-framework/terraform/variables.tf -------------------------------------------------------------------------------- /docs/uninstall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/uninstall/README.md -------------------------------------------------------------------------------- /docs/uninstall/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/uninstall/aws.md -------------------------------------------------------------------------------- /docs/uninstall/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/docs/uninstall/java.md -------------------------------------------------------------------------------- /examples/sample-linux-infrastructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/examples/sample-linux-infrastructure.yaml -------------------------------------------------------------------------------- /recipes/newrelic/apm/dotNet/linux-systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/dotNet/linux-systemd.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/dotNet/windows-iis-unsupported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/dotNet/windows-iis-unsupported.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/dotNet/windows-iis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/dotNet/windows-iis.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/java/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/java/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/node/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/node/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/node/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/node/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/php/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/php/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/php/redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/php/redhat.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/php/redhat64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/php/redhat64.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/python/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/python/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/apm/ruby/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/apm/ruby/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/ebpf/centos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/ebpf/centos.yml -------------------------------------------------------------------------------- /recipes/newrelic/ebpf/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/ebpf/ubuntu.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/agent-control/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/agent-control/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/agent-control/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/agent-control/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/agent-control/suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/agent-control/suse.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/alerts/golden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/alerts/golden.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/awslinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/awslinux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/centos_rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/centos_rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/aws-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/aws-linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/aws-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/aws-windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/azure-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/azure-linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/azure-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/azure-windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/gcp-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/gcp-linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/cloud/gcp-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/cloud/gcp-windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/darwin.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/kubernetes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/kubernetes.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/logs/linux-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/logs/linux-logs.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/logs/windows-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/logs/windows-logs.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/apache/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/apache/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/apache/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/apache/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/cassandra/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/cassandra/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/cassandra/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/cassandra/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/consul/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/consul/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/consul/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/consul/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/couchbase/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/couchbase/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/couchbase/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/couchbase/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/elasticsearch/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/elasticsearch/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/elasticsearch/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/elasticsearch/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/elasticsearch/suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/elasticsearch/suse.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/elasticsearch/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/elasticsearch/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/haproxy/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/haproxy/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/haproxy/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/haproxy/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/kafka/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/kafka/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/kafka/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/kafka/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/memcached/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/memcached/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/memcached/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/memcached/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mongodb/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mongodb/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mongodb/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mongodb/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mongodb/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mongodb/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mysql/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mysql/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mysql/rds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mysql/rds.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mysql/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mysql/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mysql/suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mysql/suse.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/mysql/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/mysql/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/nagios/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/nagios/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/nagios/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/nagios/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/nginx/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/nginx/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/nginx/suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/nginx/suse.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/oracle/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/oracle/linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/postgres/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/postgres/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/postgres/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/postgres/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/postgres/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/postgres/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/rabbitmq/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/rabbitmq/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/rabbitmq/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/rabbitmq/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/rabbitmq/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/rabbitmq/windows.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/redis/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/redis/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/redis/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/redis/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/sql/ms-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/sql/ms-linux.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/sql/ms-sql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/sql/ms-sql.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/varnish/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/varnish/debian.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ohi/varnish/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ohi/varnish/rhel.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/suse.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/ubuntu.yml -------------------------------------------------------------------------------- /recipes/newrelic/infrastructure/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/recipes/newrelic/infrastructure/windows.yml -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/debian11-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/debian11-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/ubuntu16-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/ubuntu16-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/ubuntu18-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/ubuntu18-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/ubuntu20-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/ubuntu20-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/ubuntu20arm64-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/ubuntu20arm64-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/debians/ubuntu22-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/debians/ubuntu22-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/amazonlinux2-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/amazonlinux2-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/amazonlinux2023-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/amazonlinux2023-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/debian11-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/debian11-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/redhat8-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/redhat8-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/redhat9-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/redhat9-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/suse154-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/suse154-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/ubuntu20-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/ubuntu20-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/logs/ubuntu22-agent-control-logs-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/logs/ubuntu22-agent-control-logs-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/rhel/awslinux23-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/rhel/awslinux23-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/rhel/awslinuxarm64-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/rhel/awslinuxarm64-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/rhel/redhat8arm64-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/rhel/redhat8arm64-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/suse/suse125-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/suse/suse125-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/agent-control/suse/suse154-agent-control-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/agent-control/suse/suse154-agent-control-eu.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/linux/debian10-nginx-aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/linux/debian10-nginx-aspnetcore.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/linux/ubuntu20-apache-aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/linux/ubuntu20-apache-aspnetcore.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/windows/iis-blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/windows/iis-blank.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/windows/windows2016-iis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/windows/windows2016-iis.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/windows/windows2019-core-only-iis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/windows/windows2019-core-only-iis.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/dotNet/windows/windows2019-iis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/dotNet/windows/windows2019-iis.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb10-supd-javatron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb10-supd-javatron.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb10-sysd-custom-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb10-sysd-custom-sh.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb10-sysd-tomcat-cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb10-sysd-tomcat-cmd.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb10-sysd-tomcat-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb10-sysd-tomcat-sh.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb11-apt-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb11-apt-sysd-tomcat.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb11-jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb11-jetty.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/deb11-sysd-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/deb11-sysd-jboss.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-jetty.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-supd-javatron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-supd-javatron.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-sysd-custom-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-sysd-custom-sh.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-sysd-tomcat-cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-sysd-tomcat-cmd.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-sysd-tomcat-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-sysd-tomcat-sh.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-yum-docker-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-yum-docker-jboss.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/rhl2-yum-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/rhl2-yum-sysd-tomcat.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/ub20-apt-docker-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/ub20-apt-docker-jboss.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/ub20-apt-docker-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/ub20-apt-docker-tomcat.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/java/ub20-apt-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/java/ub20-apt-sysd-tomcat.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/node/node-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/node/node-linux2.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-apache-fpm-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-apache-fpm-wordpress-linux2.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-apache-fpm-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-apache-fpm-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-apache-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-apache-wordpress-linux2.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-apache-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-apache-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-nginx-fpm-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-nginx-fpm-wordpress-linux2.json -------------------------------------------------------------------------------- /test/definitions-eu/apm/php-agent/php-nginx-fpm-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/apm/php-agent/php-nginx-fpm-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/debian10-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/debian10-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/debian10arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/debian10arm64-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/debian11-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/debian11-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/debian12-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/debian12-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/ubuntu16-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/ubuntu16-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/ubuntu18-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/ubuntu18-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/ubuntu20-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/ubuntu20-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/debians/ubuntu20arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/debians/ubuntu20arm64-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/awslinux-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/awslinux-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/awslinuxarm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/awslinuxarm64-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/oracle8-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/oracle8-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/redhat7-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/redhat7-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/redhat8arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/redhat8arm64-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/rhel/redhat8x-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/rhel/redhat8x-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/suse/suse125-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/suse/suse125-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/suse/suse153-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/suse/suse153-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/suse/suse154-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/suse/suse154-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/infra-agent/windows/windows2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/infra-agent/windows/windows2016.json -------------------------------------------------------------------------------- /test/definitions-eu/logging/debian/debian10-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/logging/debian/debian10-arm64-logs.json -------------------------------------------------------------------------------- /test/definitions-eu/logging/debian/ubuntu20-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/logging/debian/ubuntu20-arm64-logs.json -------------------------------------------------------------------------------- /test/definitions-eu/logging/rhel/amazonlinux2-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/logging/rhel/amazonlinux2-arm64-logs.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/awslinux2-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/awslinux2-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/awslinuxarm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/awslinuxarm64-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/debian10-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/debian10-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/nginx-linux2-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/nginx-linux2-ami.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/ubuntu20-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/ubuntu20-infra.json -------------------------------------------------------------------------------- /test/definitions-eu/smoke/windows2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions-eu/smoke/windows2019.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/debian11-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/debian11-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/ubuntu16-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/ubuntu16-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/ubuntu18-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/ubuntu18-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/ubuntu20-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/ubuntu20-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/ubuntu20arm64-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/ubuntu20arm64-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/debians/ubuntu22-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/debians/ubuntu22-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/amazonlinux2-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/amazonlinux2-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/amazonlinux2023-aarch64-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/amazonlinux2023-aarch64-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/amazonlinux2023-x86-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/amazonlinux2023-x86-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/debian11-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/debian11-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/redhat8-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/redhat8-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/redhat9-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/redhat9-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/suse154-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/suse154-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/suse155-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/suse155-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/ubuntu20-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/ubuntu20-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/logs/ubuntu22-agent-control-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/logs/ubuntu22-agent-control-logs.json -------------------------------------------------------------------------------- /test/definitions/agent-control/rhel/awslinux23-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/rhel/awslinux23-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/rhel/awslinuxarm64-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/rhel/awslinuxarm64-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/rhel/redhat8arm64-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/rhel/redhat8arm64-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/suse/suse125-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/suse/suse125-agent-control.json -------------------------------------------------------------------------------- /test/definitions/agent-control/suse/suse154-agent-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/agent-control/suse/suse154-agent-control.json -------------------------------------------------------------------------------- /test/definitions/alerts/amazonlinux-2023-golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/alerts/amazonlinux-2023-golden.json -------------------------------------------------------------------------------- /test/definitions/apm/dotNet/linux/linux2-aspnetcore5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/apm/dotNet/linux/linux2-aspnetcore5.json -------------------------------------------------------------------------------- /test/definitions/apm/us-php-apache-fpm-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/apm/us-php-apache-fpm-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/definitions/apm/us-php-nginx-fpm-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/apm/us-php-nginx-fpm-wordpress-linux2.json -------------------------------------------------------------------------------- /test/definitions/ebpf/debians/ubuntu22-ebpf-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ebpf/debians/ubuntu22-ebpf-agent.json -------------------------------------------------------------------------------- /test/definitions/infra-agent/RHEL9-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/infra-agent/RHEL9-infra.json -------------------------------------------------------------------------------- /test/definitions/infra-agent/amazonlinux2023-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/infra-agent/amazonlinux2023-infra.json -------------------------------------------------------------------------------- /test/definitions/infra-agent/suse154-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/infra-agent/suse154-infra.json -------------------------------------------------------------------------------- /test/definitions/infra-agent/ubuntu22-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/infra-agent/ubuntu22-infra.json -------------------------------------------------------------------------------- /test/definitions/infra-agent/ubuntu24-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/infra-agent/ubuntu24-infra.json -------------------------------------------------------------------------------- /test/definitions/logging/RHEL9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/RHEL9.json -------------------------------------------------------------------------------- /test/definitions/logging/amazonlinux2-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/amazonlinux2-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/amazonlinux2023-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/amazonlinux2023-arm64-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/amazonlinux2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/amazonlinux2023.json -------------------------------------------------------------------------------- /test/definitions/logging/debian11-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/debian11-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/redhat8-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/redhat8-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/suse154-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/suse154-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/suse155-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/suse155-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/ubuntu20-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/ubuntu20-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/ubuntu22-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/ubuntu22-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/ubuntu24-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/ubuntu24-logs.json -------------------------------------------------------------------------------- /test/definitions/logging/w19-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/logging/w19-logs.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/apache-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/apache-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/cassandra-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/cassandra-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/consul-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/consul-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/consul-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/consul-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/couchbase-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/couchbase-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/couchbase-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/couchbase-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/docker-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/docker-linux2.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/elasticsearch-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/elasticsearch-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/elasticsearch-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/elasticsearch-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/elasticsearch-suse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/elasticsearch-suse.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/haproxy-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/haproxy-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/haproxy-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/haproxy-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/k8-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/k8-linux2.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/memcached-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/memcached-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/memcached-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/memcached-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mongodb-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mongodb-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mongodb-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mongodb-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mysql-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mysql-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mysql-suse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mysql-suse.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mysql-ubuntu22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mysql-ubuntu22.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/mysql-ubuntu24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/mysql-ubuntu24.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nagios-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nagios-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nagios-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nagios-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nginx-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nginx-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nginx-linux2-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nginx-linux2-ami.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nginx-linux2-svc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nginx-linux2-svc.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/nginx-ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/nginx-ubuntu.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/postgres-debian-targeted-failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/postgres-debian-targeted-failure.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/postgres-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/postgres-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/postgres-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/postgres-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/rabbitmq-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/rabbitmq-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/rabbitmq-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/rabbitmq-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/redis-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/redis-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/redis-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/redis-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/redis-ubuntu22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/redis-ubuntu22.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/varnish-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/varnish-debian.json -------------------------------------------------------------------------------- /test/definitions/ohi/linux/varnish-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/linux/varnish-rhel.json -------------------------------------------------------------------------------- /test/definitions/ohi/windows/ms-sql-server2019Standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/ohi/windows/ms-sql-server2019Standard.json -------------------------------------------------------------------------------- /test/definitions/smoke/apache-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/apache-debian.json -------------------------------------------------------------------------------- /test/definitions/smoke/awslinux2-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/awslinux2-infra.json -------------------------------------------------------------------------------- /test/definitions/smoke/infra-win2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/infra-win2016.json -------------------------------------------------------------------------------- /test/definitions/smoke/infra-win2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/infra-win2019.json -------------------------------------------------------------------------------- /test/definitions/smoke/linux2-aspnetcore5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/linux2-aspnetcore5.json -------------------------------------------------------------------------------- /test/definitions/smoke/mysql-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/mysql-rhel.json -------------------------------------------------------------------------------- /test/definitions/smoke/redhat84-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/redhat84-infra.json -------------------------------------------------------------------------------- /test/definitions/smoke/rhl2-sysd-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/definitions/smoke/rhl2-sysd-jboss.json -------------------------------------------------------------------------------- /test/deploy/assertions/is-reporting/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/is-reporting/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/assertions/is-reporting/roles/onafterstart/templates/entity-search.source.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/is-reporting/roles/onafterstart/templates/entity-search.source.gql -------------------------------------------------------------------------------- /test/deploy/assertions/is-reporting/roles/onafterstart/templates/gql-query.source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/is-reporting/roles/onafterstart/templates/gql-query.source.json -------------------------------------------------------------------------------- /test/deploy/assertions/recipe-is-valid/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/recipe-is-valid/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/assertions/recipe-is-valid/roles/onafterstart/tasks/nrql_has_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/recipe-is-valid/roles/onafterstart/tasks/nrql_has_data.yml -------------------------------------------------------------------------------- /test/deploy/assertions/recipe-is-valid/roles/onafterstart/templates/gql-query.source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/recipe-is-valid/roles/onafterstart/templates/gql-query.source.json -------------------------------------------------------------------------------- /test/deploy/assertions/recipe-is-valid/roles/onafterstart/templates/nrql-query.source.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/assertions/recipe-is-valid/roles/onafterstart/templates/nrql-query.source.gql -------------------------------------------------------------------------------- /test/deploy/crowdstrike/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/crowdstrike/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/templates/net5webapplication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/templates/net5webapplication.conf -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/templates/net5webapplication.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/onbeforestart/templates/net5webapplication.service -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/debian/roles/start/templates/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/debian/roles/start/templates/reverse-proxy.conf -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/templates/net5webapplication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/templates/net5webapplication.conf -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/templates/net5webapplication.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/onbeforestart/templates/net5webapplication.service -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/start/templates/reverse-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/deploy-application/dotNet/rhel/roles/start/templates/reverse-proxy.conf -------------------------------------------------------------------------------- /test/deploy/linux/apache/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/apache/install/rhel/roles/configure/templates/server-status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/apache/install/rhel/roles/configure/templates/server-status.conf -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/installCassandra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/installCassandra.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/installDependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/installDependencies.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/debian/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installCassandra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installCassandra.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installDependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installDependencies.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/cassandra/install/rhel/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/consul/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/consul/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/consul/install/debian/roles/configure/templates/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/consul/install/debian/roles/configure/templates/config.json -------------------------------------------------------------------------------- /test/deploy/linux/consul/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/consul/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/consul/install/rhel/roles/configure/templates/consul.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/consul/install/rhel/roles/configure/templates/consul.hcl -------------------------------------------------------------------------------- /test/deploy/linux/couchbase/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/couchbase/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/couchbase/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/couchbase/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/docker/install/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/docker/install/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/dotNet/install/rhel/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/dotNet/install/rhel/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/dotNet/install/ubuntu20/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/dotNet/install/ubuntu20/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/elasticsearch/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/elasticsearch/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/elasticsearch/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/elasticsearch/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/elasticsearch/install/rhel/roles/configure/templates/elasticsearch.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/elasticsearch/install/rhel/roles/configure/templates/elasticsearch.repo -------------------------------------------------------------------------------- /test/deploy/linux/elasticsearch/install/suse/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/elasticsearch/install/suse/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/elasticsearch/install/suse/roles/configure/templates/elasticsearch.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/elasticsearch/install/suse/roles/configure/templates/elasticsearch.repo -------------------------------------------------------------------------------- /test/deploy/linux/go/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/go/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/go/templates/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/go/templates/server.go -------------------------------------------------------------------------------- /test/deploy/linux/haproxy/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/haproxy/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/haproxy/install/debian/roles/configure/templates/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/haproxy/install/debian/roles/configure/templates/haproxy.cfg -------------------------------------------------------------------------------- /test/deploy/linux/haproxy/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/haproxy/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/haproxy/install/rhel/roles/configure/templates/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/haproxy/install/rhel/roles/configure/templates/haproxy.cfg -------------------------------------------------------------------------------- /test/deploy/linux/java/docker-flow/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/docker-flow/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/java/gradle-flow/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/gradle-flow/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/pom.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/src/main/webapp/dummy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/src/main/webapp/dummy.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/target/javaApp/WEB-INF/dummy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/target/javaApp/WEB-INF/dummy.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/target/javaApp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/target/javaApp/WEB-INF/web.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/target/javaApp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaApp/target/javaApp/index.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/javaApp/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=javaApp 2 | groupId=com.newrelic 3 | version=1.0-SNAPSHOT 4 | -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/.gitignore -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Feb 26 16:02:18 IST 2025 2 | gradle.version=8.4 3 | -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/build.gradle -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/gradlew -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/gradlew.bat -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'javaGradleApp' -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/src/main/java/org/example/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/src/main/java/org/example/Main.java -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/src/main/webapp/dummy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/src/main/webapp/dummy.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/javaGradleApp/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/javaGradleApp/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/java/templates/javaApp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/templates/javaApp/pom.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/templates/javaApp/src/main/webapp/WEB-INF/dummy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/templates/javaApp/src/main/webapp/WEB-INF/dummy.jsp -------------------------------------------------------------------------------- /test/deploy/linux/java/templates/javaApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/templates/javaApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /test/deploy/linux/java/templates/javaApp/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/java/templates/javaApp/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/debian/restApp/roles/configure/files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/debian/restApp/roles/configure/files/Dockerfile -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/debian/restApp/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/debian/restApp/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/install/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/install/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/install/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/install/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/linux/restApp/roles/configure/files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/linux/restApp/roles/configure/files/Dockerfile -------------------------------------------------------------------------------- /test/deploy/linux/jboss/docker/linux/restApp/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/docker/linux/restApp/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jboss/systemd/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/systemd/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jboss/systemd/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jboss/systemd/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jetty/docker/install/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jetty/docker/install/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jetty/docker/install/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jetty/docker/install/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jetty/systemd/install/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jetty/systemd/install/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jboss/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jboss/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jboss/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jboss/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/debian/roles/configure/templates/jetty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/debian/roles/configure/templates/jetty -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/debian/roles/configure/templates/start.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/debian/roles/configure/templates/start.ini -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/rhel/roles/configure/templates/jetty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/rhel/roles/configure/templates/jetty -------------------------------------------------------------------------------- /test/deploy/linux/jmx-jetty/install/rhel/roles/configure/templates/start.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-jetty/install/rhel/roles/configure/templates/start.ini -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/debian/roles/configure/templates/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/debian/roles/configure/templates/setenv.sh -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/debian/roles/configure/templates/tomcat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/debian/roles/configure/templates/tomcat.service -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/templates/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/templates/setenv.sh -------------------------------------------------------------------------------- /test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/templates/tomcat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/jmx-tomcat/install/rhel/roles/configure/templates/tomcat.service -------------------------------------------------------------------------------- /test/deploy/linux/kafka/install/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kafka/install/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/configure/tasks/installOnlineBoutique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/configure/tasks/installOnlineBoutique.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/configure/tasks/installSockShop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/configure/tasks/installSockShop.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/createAutoScaler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/createAutoScaler.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/createCluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/createCluster.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installEksctl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installEksctl.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installGit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installGit.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installKubectl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/installKubectl.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/teardown/tasks/deleteCluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/teardown/tasks/deleteCluster.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/eks/roles/teardown/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/eks/roles/teardown/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/minikube/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/minikube/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/kubernetes/minikube/roles/prepare/templates/kubectl.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/kubernetes/minikube/roles/prepare/templates/kubectl.wrap -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/debian/roles/configure/templates/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/debian/roles/configure/templates/memcached.conf -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/debian/roles/configure/templates/sasl/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/debian/roles/configure/templates/sasl/memcached.conf -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/rhel/roles/configure/templates/memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/rhel/roles/configure/templates/memcached -------------------------------------------------------------------------------- /test/deploy/linux/memcached/install/rhel/roles/configure/templates/sasl/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/memcached/install/rhel/roles/configure/templates/sasl/memcached.conf -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/debian/roles/configure/templates/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/debian/roles/configure/templates/commands.js -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/debian/roles/configure/templates/initiate_script.js: -------------------------------------------------------------------------------- 1 | rs.initiate(); 2 | -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/debian/roles/configure/templates/mongod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/debian/roles/configure/templates/mongod.conf -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/rhel/roles/configure/templates/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/rhel/roles/configure/templates/commands.js -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/rhel/roles/configure/templates/initiate.js: -------------------------------------------------------------------------------- 1 | rs.initiate(); -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/rhel/roles/configure/templates/mongod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/rhel/roles/configure/templates/mongod.conf -------------------------------------------------------------------------------- /test/deploy/linux/mongodb/install/rhel/roles/configure/templates/mongodb-org-6.0.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mongodb/install/rhel/roles/configure/templates/mongodb-org-6.0.repo -------------------------------------------------------------------------------- /test/deploy/linux/mysql/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mysql/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/mysql/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mysql/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/mysql/install/suse/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/mysql/install/suse/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nagios/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nagios/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nagios/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nagios/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/install-copy-command/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/install-copy-command/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/install-recipe/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/install-recipe/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/install/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/install/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/install/roles/onafterstart/templates/remove_golden_alerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/install/roles/onafterstart/templates/remove_golden_alerts.sh -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/validate-recipe/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/validate-recipe/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/newrelic-cli/validate-recipe/roles/onafterstart/templates/gql-query.source.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/newrelic-cli/validate-recipe/roles/onafterstart/templates/gql-query.source.gpl -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/templates/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/templates/nginx.service -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/templates/nginx.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/onbeforestart/templates/nginx.site -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/stop/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/deploy-application/dotNet/debian/roles/stop/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/install/linux2/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/install/linux2/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/install/linux2/roles/configure/templates/default-status-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/install/linux2/roles/configure/templates/default-status-nginx.conf -------------------------------------------------------------------------------- /test/deploy/linux/nginx/install/suse/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/install/suse/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/open-default/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/open-default/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nginx/yum-fix/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nginx/yum-fix/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nodejs/docker-flow/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nodejs/docker-flow/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nodejs/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nodejs/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/nodejs/templates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nodejs/templates/Dockerfile -------------------------------------------------------------------------------- /test/deploy/linux/nodejs/templates/myNodeApp/app.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, World!'); -------------------------------------------------------------------------------- /test/deploy/linux/nodejs/templates/myNodeApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/nodejs/templates/myNodeApp/package.json -------------------------------------------------------------------------------- /test/deploy/linux/oracle/install/centos/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/oracle/install/centos/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/oracle/install/linux/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/oracle/install/linux/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/apache-fpm-wordpress/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/apache-fpm-wordpress/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/apache-fpm-wordpress/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/apache-fpm-wordpress/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/apache-wordpress/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/apache-wordpress/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/apache-wordpress/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/apache-wordpress/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/docker-php/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/docker-php/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/docker-templates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/docker-templates/Dockerfile -------------------------------------------------------------------------------- /test/deploy/linux/php/docker-templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/docker-templates/index.php -------------------------------------------------------------------------------- /test/deploy/linux/php/nginx-fpm-wordpress/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/nginx-fpm-wordpress/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/nginx-fpm-wordpress/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/nginx-fpm-wordpress/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/php/templates/install-wordpress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/templates/install-wordpress.sh -------------------------------------------------------------------------------- /test/deploy/linux/php/templates/wordpress-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/templates/wordpress-fpm.conf -------------------------------------------------------------------------------- /test/deploy/linux/php/templates/wordpress-httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/templates/wordpress-httpd.conf -------------------------------------------------------------------------------- /test/deploy/linux/php/templates/wordpress-site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/templates/wordpress-site -------------------------------------------------------------------------------- /test/deploy/linux/php/templates/wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/php/templates/wordpress.conf -------------------------------------------------------------------------------- /test/deploy/linux/postgres/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/postgres/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/postgres/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/postgres/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/postgres/install/rhel/roles/configure/templates/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/postgres/install/rhel/roles/configure/templates/pg_hba.conf -------------------------------------------------------------------------------- /test/deploy/linux/postgres/install/rhel/roles/configure/templates/pgdg.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/postgres/install/rhel/roles/configure/templates/pgdg.repo -------------------------------------------------------------------------------- /test/deploy/linux/python/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/python/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/python/install/rhel/roles/configure/templates/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/python/install/rhel/roles/configure/templates/app.py -------------------------------------------------------------------------------- /test/deploy/linux/python/install/rhel/roles/configure/templates/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/python/install/rhel/roles/configure/templates/requirements.txt -------------------------------------------------------------------------------- /test/deploy/linux/rabbitmq/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/rabbitmq/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/rabbitmq/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/rabbitmq/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/redis/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/redis/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/redis/install/debian/roles/configure/templates/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/redis/install/debian/roles/configure/templates/redis.conf -------------------------------------------------------------------------------- /test/deploy/linux/redis/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/redis/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/redis/install/rhel/roles/configure/templates/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/redis/install/rhel/roles/configure/templates/redis.conf -------------------------------------------------------------------------------- /test/deploy/linux/ruby/ruby-on-rails/redhat/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/ruby/ruby-on-rails/redhat/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/onbeforestart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/onbeforestart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/onstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/onstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/shell/roles/upload/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/shell/roles/upload/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/docker/debian/noApp/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/docker/debian/noApp/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/docker/debian/noApp/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/docker/debian/noApp/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/docker/debian/restApp/roles/configure/files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/docker/debian/restApp/roles/configure/files/Dockerfile -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/docker/debian/restApp/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/docker/debian/restApp/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/tasks/supervisord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/tasks/supervisord.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/templates/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/configure/templates/supervisord.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/files/init.d-supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/files/init.d-supervisord -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/files/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/files/supervisord.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installMaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installMaven.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installSupervisord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installSupervisord.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/supervisord/shScript/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/apt/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/apt/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/apt/install/linux/roles/configure/templates/tomcat9.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/apt/install/linux/roles/configure/templates/tomcat9.service -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/apt/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/apt/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/apt/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - include_tasks: installTomcat.yml 4 | -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/tasks/systemd.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/templates/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/templates/systemd.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/templates/tomcat-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/configure/templates/tomcat-env -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installMaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installMaven.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/cmdLine/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/tasks/systemd.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/templates/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/configure/templates/systemd.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installMaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installMaven.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/catalina/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/tasks/systemd.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/custom-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/custom-start.sh -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/custom-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/custom-stop.sh -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/configure/templates/systemd.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installMaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installMaven.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/custom/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/tasks/systemd.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/templates/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/configure/templates/systemd.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installGradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installGradle.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/gradle/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/tasks/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/tasks/systemd.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/templates/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/configure/templates/systemd.conf -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installJava.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installJava.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installMaven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installMaven.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/shScript/start/install/linux/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/yum/install/linux/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/yum/install/linux/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/yum/install/linux/roles/prepare/tasks/installTomcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/tomcat/systemd/yum/install/linux/roles/prepare/tasks/installTomcat.yml -------------------------------------------------------------------------------- /test/deploy/linux/tomcat/systemd/yum/install/linux/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - include_tasks: installTomcat.yml 4 | -------------------------------------------------------------------------------- /test/deploy/linux/varnish/install/debian/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/varnish/install/debian/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/linux/varnish/install/rhel/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/linux/varnish/install/rhel/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/elasticsearch/install/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/elasticsearch/install/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/iis/deploy-webapplication/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/iis/deploy-webapplication/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/iis/deploy-webapplication/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/iis/deploy-webapplication/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/iis/install/roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/iis/install/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/kafka/install/roles/start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/kafka/install/roles/start/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/ms-sql/create-newrelic/roles/configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/ms-sql/create-newrelic/roles/configure/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/newrelic-cli/install-recipe/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/newrelic-cli/install-recipe/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deploy/windows/newrelic-cli/install/roles/onafterstart/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deploy/windows/newrelic-cli/install/roles/onafterstart/tasks/main.yml -------------------------------------------------------------------------------- /test/deprecated/EU/centos7-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deprecated/EU/centos7-infra.json -------------------------------------------------------------------------------- /test/deprecated/EU/centos8-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deprecated/EU/centos8-arm64-logs.json -------------------------------------------------------------------------------- /test/deprecated/EU/centos8-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deprecated/EU/centos8-infra.json -------------------------------------------------------------------------------- /test/deprecated/EU/centos8arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deprecated/EU/centos8arm64-infra.json -------------------------------------------------------------------------------- /test/deprecated/US/amazonlinux2018-logs-unsupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/deprecated/US/amazonlinux2018-logs-unsupported.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/linux/debian10-nginx-aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/linux/debian10-nginx-aspnetcore.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/linux/linux2-aspnetcore5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/linux/linux2-aspnetcore5.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/linux/ubuntu20-apache-aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/linux/ubuntu20-apache-aspnetcore.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/linux/ubuntu20-nginx-aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/linux/ubuntu20-nginx-aspnetcore.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/windows/iis-blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/windows/iis-blank.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/dotNet/windows/iis-server2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/dotNet/windows/iis-server2019.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/go/go-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/go/go-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/docker-flows/java-docker-flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/docker-flows/java-docker-flows.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/java-tomcat-gradle-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/java-tomcat-gradle-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/java-tomcat-maven-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/java-tomcat-maven-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/rhel-dockerjboss-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/rhel-dockerjboss-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/rhl2-yum-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/rhl2-yum-docker.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/ub20-apt-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/ub20-apt-docker.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/ub20-docker-rest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/ub20-docker-rest.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/ub20-docker-tcAndJb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/ub20-docker-tcAndJb.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/ub20-dockertomcat-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/ub20-dockertomcat-jboss.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/docker/ub20-tomcat-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/docker/ub20-tomcat-jboss.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/systemd/deb10-sysd-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/systemd/deb10-sysd-jboss.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jboss/systemd/rhl2-sysd-jboss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jboss/systemd/rhl2-sysd-jboss.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jetty/deb10-jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jetty/deb10-jetty.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/jetty/rhl2-jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/jetty/rhl2-jetty.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/docker/ub20-apt-docker-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/docker/ub20-apt-docker-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/docker/ub20-docker-rest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/docker/ub20-docker-rest.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/supervisord/deb10-supd-javatron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/supervisord/deb10-supd-javatron.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/supervisord/deb10-supd-tomcat-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/supervisord/deb10-supd-tomcat-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/supervisord/rhl2-supd-javatron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/supervisord/rhl2-supd-javatron.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/supervisord/rhl2-supd-tomcat-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/supervisord/rhl2-supd-tomcat-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-apt-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-apt-sysd-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-catalina-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-catalina-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-custom-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-custom-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-start-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-start-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-tomcat-cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/deb10-sysd-tomcat-cmd.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-catalina-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-catalina-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-custom-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-custom-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-start-sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-start-sh.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-tomcat-cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-sysd-tomcat-cmd.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-yum-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/rhl2-yum-sysd-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/java/linux/tomcat/systemd/ub20-apt-sysd-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/java/linux/tomcat/systemd/ub20-apt-sysd-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/node/node-js-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/node/node-js-docker.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/node/node-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/node/node-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/docker-php-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/docker-php-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-apache-fpm-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-apache-fpm-wordpress-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-apache-fpm-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-apache-fpm-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-apache-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-apache-wordpress-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-apache-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-apache-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-nginx-fpm-wordpress-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-nginx-fpm-wordpress-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/php-agent/php-nginx-fpm-wordpress-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/php-agent/php-nginx-fpm-wordpress-ubuntu18.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/python/python-al2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/python/python-al2.json -------------------------------------------------------------------------------- /test/manual/definitions/apm/ruby/rubyonrails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/apm/ruby/rubyonrails.json -------------------------------------------------------------------------------- /test/manual/definitions/fleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/fleet.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/awslinux-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/awslinux-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/awslinux2-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/awslinux2-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/awslinuxarm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/awslinuxarm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/centos7-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/centos7-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/centos8-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/centos8-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/centos8arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/centos8arm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/debian10-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/debian10-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/debian10arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/debian10arm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/redhat7-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/redhat7-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/redhat8-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/redhat8-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/redhat8arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/redhat8arm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/redhat9-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/redhat9-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/suse124-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/suse124-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/suse125-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/suse125-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/suse154-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/suse154-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu14-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu14-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu16-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu16-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu18-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu18-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu20-infra-crowdstrike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu20-infra-crowdstrike.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu20-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu20-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu20arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu20arm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/ubuntu20x10arm64-infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/ubuntu20x10arm64-infra.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/windows2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/windows2016.json -------------------------------------------------------------------------------- /test/manual/definitions/infra-agent/windows2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/infra-agent/windows2019.json -------------------------------------------------------------------------------- /test/manual/definitions/kubernetes/eks-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/kubernetes/eks-empty.json -------------------------------------------------------------------------------- /test/manual/definitions/kubernetes/minikube-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/kubernetes/minikube-empty.json -------------------------------------------------------------------------------- /test/manual/definitions/logging/amazonlinux2-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/logging/amazonlinux2-arm64-logs.json -------------------------------------------------------------------------------- /test/manual/definitions/logging/centos8-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/logging/centos8-arm64-logs.json -------------------------------------------------------------------------------- /test/manual/definitions/logging/debian10-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/logging/debian10-arm64-logs.json -------------------------------------------------------------------------------- /test/manual/definitions/logging/ubuntu20-arm64-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/logging/ubuntu20-arm64-logs.json -------------------------------------------------------------------------------- /test/manual/definitions/logging/w19-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/logging/w19-logs.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/apache-mysql-ubuntu18-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/apache-mysql-ubuntu18-auto.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/mongodb-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/mongodb-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/mongodb-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/mongodb-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/nginx-elasticsearch-debian-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/nginx-elasticsearch-debian-auto.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/nginx-mysql-linux2-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/nginx-mysql-linux2-auto.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/nginx-mysql-redis-linux2-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/nginx-mysql-redis-linux2-auto.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/linux/postgres-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/linux/postgres-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi-auto-config/windows/ms-sql-server2019Standard-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi-auto-config/windows/ms-sql-server2019Standard-auto.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/apache-cassandra-debian10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/apache-cassandra-debian10.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/apache-cassandra-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/apache-cassandra-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/apache-mysql-ubuntu18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/apache-mysql-ubuntu18.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/apache-tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/apache-tomcat.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/docker-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/docker-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/kafka-centos8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/kafka-centos8.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/kafka-ubuntu20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/kafka-ubuntu20.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/memcached-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/memcached-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/memcached-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/memcached-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/mongodb-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/mongodb-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/mongodb-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/mongodb-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/nginx-elasticsearch-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/nginx-elasticsearch-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/nginx-mysql-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/nginx-mysql-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/nginx-mysql-redis-linux2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/nginx-mysql-redis-linux2.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/oracle-enterprise-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/oracle-enterprise-linux.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/oracle-standard-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/oracle-standard-centos.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/postgres-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/postgres-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/postgres-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/postgres-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/rabbitmq-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/rabbitmq-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/rabbitmq-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/rabbitmq-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/redis-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/redis-debian.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/linux/redis-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/linux/redis-rhel.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/elasticsearch-ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/elasticsearch-ch.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/kafka-server2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/kafka-server2019.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/mongodb-server2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/mongodb-server2016.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/ms-redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/ms-redis.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/ms-sql-server2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/ms-sql-server2019.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/mysql-server2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/mysql-server2019.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/postgresql-server2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/postgresql-server2016.json -------------------------------------------------------------------------------- /test/manual/definitions/ohi/windows/rabbitMQ-server2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/definitions/ohi/windows/rabbitMQ-server2016.json -------------------------------------------------------------------------------- /test/manual/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/test/manual/readme.MD -------------------------------------------------------------------------------- /validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/validator/README.md -------------------------------------------------------------------------------- /validator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/validator/package-lock.json -------------------------------------------------------------------------------- /validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/validator/package.json -------------------------------------------------------------------------------- /validator/schema-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/open-install-library/HEAD/validator/schema-v1.json --------------------------------------------------------------------------------