Skip to main content

Upload Logs to an HTTP Source

After you have added an HTTP Logs and Metrics Source to a Hosted Collector you can begin uploading data. You can upload both logs and metrics to the same HTTP source, however not in the same HTTP request. This document provides instructions on uploading logs, if you are uploading metrics see Upload Metrics to an HTTP Source.

tip

To immediately validate the reception of log data use Live Tail. Data sent to an HTTP source may take some time to show up in Search due to indexing delay. If your source does not seem to be receiving data, see Troubleshooting HTTP Sources.

Upload log data

note

Data needs to be in UTF-8 encoding.

Upload log data with a POST Request

To upload log data with a POST request, include the complete data payload as the request body. Any query parameters will be ignored.

info

We recommend that the POST data payload have a size, before compression, of 100KB to 1MB. See data payload considerations for details.

  • Data payload:
    • Data line 1
    • Data line 2
    • Data line 3
  • Method: POST
  • URL:
    Enter the URL obtained when you configure the HTTP Logs and Metrics Source or when you regenerate the URL. Enter either a presigned URL or a URL to be used with an auth header:
    • Presigned URL: https://[SumoEndpoint]/receiver/v1/http/[UniqueHTTPCollectorCode]
      where
      • [SumoEndpoint] is your Sumo collection endpoint
      • [UniqueHTTPCollectorCode] is the string that follows the last forward slash (/) in the upload URL for the HTTP source
    • URL used with auth header: https://[SumoEndpoint]/receiver/v1/http
      where [SumoEndpoint] is your Sumo collection endpoint
  • Body
    • Data line 1
    • Data line 2
    • Data line 3

Supported HTTP Headers

The following parameters can be specified via headers when sending data to an HTTP Source. The settings will apply to all messages in the request. For Source Name, Host, and Category, the header value will override any default value already specified for the source and/or collector.

You can configure your Source to process HTTP Headers into metadata fields. See HTTP Source fields for details.

note

Overridden metadata field values are not returned with Search Autocomplete.

SettingHeader NameHeader Value
Compressed dataContent-EncodingValues can be zstd, gzip, or deflate.
Required if you are uploading compressed data.
Custom Source NameX-Sumo-NameDesired source name.
Useful if you want to override the source name configured for the source.
Custom Source HostX-Sumo-HostDesired host name.
Useful if you want to override the source host configured for the source.
Custom Source CategoryX-Sumo-CategoryDesired source category.
Useful if you want to override the source category configured for the source.
Fields as custom metadataX-Sumo-FieldsFields need to be in a comma separated list of key-value pairs.
Token authenticationx-sumo-tokenToken to be used for authentication in an authorization header. Obtain the token when you select Auth Header when you configure the HTTP Logs and Metrics Source, or when you regenerate the URL.

Command line examples

note

Data is ingested according to the configured processing rules. Messages blocked by filters will not be ingested.

cURL

When using cURL to POST data from a file: 

  • Make sure to use the -T parameter to specify the file path, not -d. The -d parameter causes new lines to be removed from the content, which will interfere with message boundary detection.
  • Make sure that each line in the file follows the format specified by the Content-Type header for the HTTP request.
  • Enter the URL (and auth header if applicable) obtained when you configured the HTTP Logs and Metrics Source or when you regenerate the URL. If you use an auth header, enter it in this format:
    -H "x-sumo-token: [TokenString]"

POST upload

Presigned URL:

curl -v -X POST -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode] 

URL with auth header:

curl -v -X POST -H "x-sumo-token: [TokenString]" -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http

POST upload (gzip compressed data) 

Presigned URL:

curl -v -X POST -H 'Content-Encoding:gzip' -T [local_file_name.gz] https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]

URL with auth header:

curl -v -X POST -H 'Content-Encoding:gzip' -H "x-sumo-token: [TokenString]" -T [local_file_name.gz] https://collectors.sumologic.com/receiver/v1/http

POST upload with custom Source Category

Presigned URL:

curl -v -X POST -H 'X-Sumo-Category:myNewCategory' -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]

URL with auth header:

curl -v -X POST -H 'X-Sumo-Category:myNewCategory' -H "x-sumo-token: [TokenString]" -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http

POST upload with custom Fields

Presigned URL:

curl -v -X POST -H 'X-Sumo-Fields:environment=dev,cluster=k8s' -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]

URL with auth header:

curl -v -X POST -H 'X-Sumo-Fields:environment=dev,cluster=k8s' -H "x-sumo-token: [TokenString]" -T [local_file_name] https://collectors.sumologic.com/receiver/v1/http

PowerShell

POST upload

In the following examples when a URL is used with an auth header, $headers is defined as follows:

$headers = @{
Authorization="x-sumo-token: [TokenString]"
Content='application/json'
}

Presigned URL:

Invoke-WebRequest -Method POST -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]'

URL with auth header:

Invoke-WebRequest -Method POST -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http' -Headers $headers

POST upload (gzip compressed data) 

Presigned URL:

Invoke-WebRequest -Method POST -Headers @{'Content-Encoding' = 'gzip'} -InFile [local_file_name.gz] 'https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]'

URL with auth header:

Invoke-WebRequest -Method POST -Headers @{'Content-Encoding' = 'gzip'} -InFile [local_file_name.gz] 'https://collectors.sumologic.com/receiver/v1/http' -Headers $headers

POST upload with custom Source Category

Presigned URL:

Invoke-WebRequest -Method POST -Headers @{'X-Sumo-Category' = 'myCustomCategory'} -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]'

URL with auth header:

Invoke-WebRequest -Method POST -Headers @{'X-Sumo-Category' = 'myCustomCategory'} -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http' -Headers $headers

POST upload with custom Field

Presigned URL:

Invoke-WebRequest -Method POST -Headers @{'X-Sumo-Fields' = 'environment=dev'} -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http/[UniqueHTTPCollectorCode]'

URL with auth header:

Invoke-WebRequest -Method POST -Headers @{'X-Sumo-Fields' = 'environment=dev'} -InFile [local_file_name] 'https://collectors.sumologic.com/receiver/v1/http' -Headers $headers
Status
Legal
Privacy Statement
Terms of Use
CA Privacy Notice

Copyright © 2026 by Sumo Logic, Inc.