Private locations 🔗
A private location is a software package that offers a quick and easy deployment of Splunk Synthetic Monitoring solutions beyond the public network so that you can find, fix, and prevent web performance defects on any internal web application, in any environment - whether inside or outside of your firewalls. Private locations allow Splunk Synthetics Monitoring users to test sooner in the development cycle and against internal sites or applications that aren’t available to the public.
Customers can, through the Splunk Synthetics Monitoring web interface, create new private locations and open a runner to run any checks assigned to them.
What is a runner? 🔗
A runner is a Docker container set up to run tests from a particular private location. A single private location can have one or more runners.
A location consists of a queue of tests assigned to a particular private location. Runners pick up runs from the queue, so the more active runners you have, the faster the queue of tests is processed.
Splunk Synthetic Monitoring doesn’t track how many runners there are for a given location. It is up to you to manage your own fleet of runners.
Use cases for private locations 🔗
Test private applications that aren’t exposed to the public.
Test pre-production applications which don’t have public staging sites.
Gain a higher level of flexibility in giving Splunk Synthetic Monitoring access to applications.
Test from locations not currently supported by Splunk Synthetic Monitoring’s public locations.
Requirements 🔗
Requirement |
Description |
---|---|
Docker |
|
Allowlist |
|
Operating system |
Linux, Windows, or macOS |
For optimal performance when running Browser tests:
Linux
2.3 GHz Dual-Core Intel Xeon (or equivalent) processor
8 GB RAM, 2 cores
Set up a new private location 🔗
Follow these steps to set up a new private location:
In Splunk Synthetic Monitoring, select the settings gear icon, then Private locations.
Select + Add and add a name.
Follow the steps in the guided setup to set up your runner.
Save your private location.
What you can do with your private location ID 🔗
Each private location has a corresponding private location ID. With this ID, you can:
Build charts or dashboards
Search for metrics by private location
Refer to your private location ID if you’re interacting with the Splunk Synthetics Monitoring APIs.
Manage your tokens 🔗
It is your responsibility to update and manage your tokens. Tokens are valid for one year. For added security, create a secret environment variable for your token in Docker. Consider creating a second token to provide coverage before your first token expires. You are not notified of expiring tokens.
Working with Docker 🔗
Here is some guidance for working with Docker.
Limit logging in Docker 🔗
Follow these steps to limit logging:
Create a file in a directory like this:
/etc/docker/daemon.json
.In the file, add:
{
"log-driver": "local",
"log-opts": {
"max-size": "10m",
"max-file": "3"
}
}
Restart your docker service:
sudo systemctl docker.service restart
.
Add certificates in Synthetics 🔗
Splunk Synthetic Monitoring supports injecting custom root CA certificates for Uptime tests running from your private locations. Client keys and certificates aren’t supported at this time.
Create a folder called
certs
on your host machine and place the CA Certificate (in CRT format) in the folder.Add the certs folder as a volume to the container
(-v ./certs:/usr/local/share/ca-certificates/my_certs/)
.Modify the command you use when launching the container to update the CA Certificate cache before starting the agent binary
(bash -c "sudo update-ca-certificates && bundle exec bin/start_runner)
.
For example, here is what a command might look like after you modify it to fit your environment:
docker run -e "RUNNER_TOKEN=<insert-token>" --volume=`pwd`/certs:/usr/local/share/ca-certificates/my_certs/ quay.io/signalfx/splunk-synthetics-runner:latest bash -c "sudo update-ca-certificates && bundle exec bin/start_runner"
Note
Custom root CA certificates aren’t supported for Browser tests. Browser tests require SSL/TLS validation for accurate testing. Optionally, you can deactivate SSL/TLS validation for Browser tests when necessary.
Configuring Proxy Settings for Private Locations 🔗
In environments where direct internet access is restricted, you can route synthetic test traffic through a proxy server by configuring the following environment variables:
HTTP_PROXY
: Specifies the proxy server for HTTP traffic.Example:
export HTTP_PROXY="\http://proxy.example.com:8080"
HTTPS_PROXY
: Specifies the proxy server for HTTPS traffic.Example:
export HTTPS_PROXY="\https://proxy.example.com:8443"
NO_PROXY
: Specifies a comma-separated list of domains or IP addresses that should bypass the proxy.Example:
export NO_PROXY="localhost,127.0.0.1,.internal-domain.com"
For example, here is what a command might look like after you modify it to fit your environment:
docker run --cap-add NET_ADMIN -e "RUNNER_TOKEN=*****" quay.io/signalfx/splunk-synthetics-runner:latest -e NO_PROXY=".signalfx.com,.amazonaws.com" -e HTTPS_PROXY="https://172.17.0.1:1234" -e HTTP_PROXY="http://172.17.0.1:1234"
In this example:
HTTP_PROXY
and HTTPS_PROXY
are set to route traffic through a proxy at http://172.17.0.1:1234
.
NO_PROXY
is configured to bypass the proxy for local addresses and specific domains like .signalfx.com and .amazonaws.com.
Ensure that these variables are correctly configured to comply with your network policies. This setup allows the synthetic tests to communicate securely and efficiently in a controlled network environment.
When using runner, it’s important to correctly configure the proxy settings to avoid issues with browser-based tests. The following steps should be followed when setting up their environment:
Ensure proper NO_PROXY setup:
When configuring
NO_PROXY
always include the following addresses:127.0.0.1
(for localhost communication)localhost
(for resolving local tests)
These addresses ensure that internal services and tests run correctly without routing through a proxy, preventing potential failures.
Merging HTTP_PROXY and http_proxy:
The system automatically handles both
HTTP_PROXY
andhttp_proxy
environment variables. If you define one of these, ensure the other is also set, or they will be automatically merged at start-up.
Dockerfile defaults:
By default, the runner will set the
NO_PROXY
variable in the Dockerfile to include127.0.0.1
. If you overrideNO_PROXY
, you must ensure that127.0.0.1
andlocalhost
are still present, or browser tests may fail.
Assess the health of your private location 🔗
A private location’s health depends on three factors:
Factor |
Description |
Solution |
---|---|---|
Active runner |
At least one runner is actively checking in. |
If no runners are checking in, set up new runners for the private location. |
Used in tests |
The private location is currently being used in one or more tests. |
If you need to delete a private location, you need to first delete it from all tests. |
Clear queue |
The queue for a given location is being cleared periodically and is not backed up. |
If the queue is backed up, add new runners to the private location. |
Troubleshoot queue length and latency 🔗
If both the queue latency and length increase over time, then add more runners to improve performance.
If your queue latency increases but your queue length doesn’t, then try these troubleshooting methods:
Check to see if a step is delaying the rest of the test
Investigate whether you have the sufficient resources to run private location runners on your machines.
The maximum number of runs in a queue is 100,000.
Any runs older than one hour are removed from the queue.