Skip to content

Commit

Permalink
fix ingest endpoints for data ingestion
Browse files Browse the repository at this point in the history
  • Loading branch information
jgheewala committed Sep 27, 2021
1 parent 67fdcbf commit af4fc52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sfxclient/httpsink.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ const (
ClientVersion = "1.0"

// IngestEndpointV2 is the v2 version of the signalfx ingest endpoint
IngestEndpointV2 = "https://ingest.signalfx.com/v2/datapoint"
IngestEndpointV2 = "https://ingest.us0.signalfx.com/v2/datapoint"

// EventIngestEndpointV2 is the v2 version of the signalfx event endpoint
EventIngestEndpointV2 = "https://ingest.signalfx.com/v2/event"
EventIngestEndpointV2 = "https://ingest.us0.signalfx.com/v2/event"

// TraceIngestEndpointV1 is the v1 version of the signalfx trace endpoint
TraceIngestEndpointV1 = "https://ingest.signalfx.com/v1/trace"
TraceIngestEndpointV1 = "https://ingest.us0.signalfx.com/v1/trace"

// TraceIngestSAPMEndpointV2 is the of the sapm trace endpoint
TraceIngestSAPMEndpointV2 = "https://ingest.signalfx.com/v2/trace"
TraceIngestSAPMEndpointV2 = "https://ingest.us0.signalfx.com/v2/trace"

// DefaultTimeout is the default time to fail signalfx datapoint requests if they don't succeed
DefaultTimeout = time.Second * 5
Expand Down

0 comments on commit af4fc52

Please sign in to comment.