Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 583af57

Browse files
Merge pull request #35 from signalfx/pops_eol
Remove references to POPS
2 parents 325686a + f0d9e74 commit 583af57

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Step 3: Set environment variables
8888
8989
SIGNALFX_ACCESS_TOKEN=access token
9090
91-
2. If you use POPS, Smart Gateway, or want to ingest directly from a realm other than us0, then you must set at least one endpoint variable. (For environment variables, SignalFx defaults to the us0 realm. As a result, if you are not in the us0 realm, you may need to set your environment variables.) There are two options:
91+
2. If you use Smart Gateway, or want to ingest directly from a realm other than us0, then you must set at least one endpoint variable. (For environment variables, SignalFx defaults to the us0 realm. As a result, if you are not in the us0 realm, you may need to set your environment variables.) There are two options:
9292

9393
**Option 1**
9494

@@ -101,15 +101,14 @@ You can update ``SIGNALFX_ENDPOINT_URL`` where both metrics and traces will be s
101101
102102
**Option 2**
103103

104-
You can update ``SIGNALFX_ENDPOINT_URL`` and ``SIGNALFX_METRICS_URL`` where traces will be sent to the gateway and metrics will go through POPS, respectively.
104+
You can update ``SIGNALFX_ENDPOINT_URL`` and ``SIGNALFX_METRICS_URL`` where traces will be sent to the gateway and metrics will go directly to the ingest endpoint, respectively.
105105

106106
.. code:: bash
107107
108-
SIGNALFX_METRICS_URL=https://pops.signalfx.com
108+
SIGNALFX_METRICS_URL=https://ingest.us0.signalfx.com
109109
SIGNALFX_ENDPOINT_URL=http://<my_gateway>:8080
110110
111111
To learn more, see:
112-
* [SignalFx Point of Presence Service (POPS)](https://docs.signalfx.com/en/latest/integrations/integrations-reference/integrations.signalfx.point.of.presence.service.(pops).html)
113112
* [Deploying the SignalFx Smart Gateway](https://docs.signalfx.com/en/latest/apm/apm-deployment/smart-gateway.html)
114113

115114

signalfx_lambda/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_metrics_url():
5454
url = os.environ.get('SIGNALFX_METRICS_URL')
5555

5656
if not url:
57-
url = os.environ.get('SIGNALFX_ENDPOINT_URL', 'https://pops.signalfx.com')
57+
url = os.environ.get('SIGNALFX_ENDPOINT_URL', 'https://ingest.us0.signalfx.com')
5858

5959
return url
6060

0 commit comments

Comments
 (0)