Difference between revisions of "Newrelic minion"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
# Kubernetes | # Kubernetes | ||
+ | - https://artifacthub.io/packages/helm/newrelic/synthetics-minion | ||
- https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/private-locations/install-containerized-private-minions-cpms/ | - https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/private-locations/install-containerized-private-minions-cpms/ | ||
+ | |||
+ | ``` | ||
+ | helm install k8s-newrelic1 newrelic/synthetics-minion -n newrelic --set synthetics.privateLocationKey=<MY_KEY>,persistence.storageClass=<MY_SC> | ||
+ | ``` | ||
+ | |||
+ | # Create Private location | ||
+ | - https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/private-locations/private-locations-overview-monitor-internal-sites-add-new-locations/ | ||
+ | |||
+ | # Debug | ||
+ | - https://discuss.newrelic.com/t/containerized-private-minion-cpm-troubleshooting-framework-kubernetes-specific/124135 | ||
+ | |||
+ | # Docker | ||
https://github.com/newrelic/docs-website/blob/develop/src/content/docs/synthetics/synthetic-monitoring/private-locations/install-containerized-private-minions-cpms.mdx | https://github.com/newrelic/docs-website/blob/develop/src/content/docs/synthetics/synthetic-monitoring/private-locations/install-containerized-private-minions-cpms.mdx |
Latest revision as of 17:51, 1 September 2022
Kubernetes
- https://artifacthub.io/packages/helm/newrelic/synthetics-minion
- https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/private-locations/install-containerized-private-minions-cpms/
helm install k8s-newrelic1 newrelic/synthetics-minion -n newrelic --set synthetics.privateLocationKey=<MY_KEY>,persistence.storageClass=<MY_SC>
Create Private location
Debug
Docker
docker run \ --name <var>YOUR_CONTAINER_NAME</var> \ -e "MINION_PRIVATE_LOCATION_KEY=<var>YOUR_PRIVATE_LOCATION_KEY</var>" \ -v /tmp:/tmp:rw \ -v /var/run/docker.sock:/var/run/docker.sock:rw \ -d \ --restart unless-stopped \ quay.io/newrelic/synthetics-minion:latest