Skip to main content

A simple Splunk HEC logger.

Project description

Splunk Logger

A simple Python package for sending logs to Splunk using the HTTP Event Collector (HEC).

Installation

pip install splunk-logger # (or from your local wheel file)

Configuration

The SplunkLogger class retrieves its configuration from environment variables. These are required:

  • SPLUNK_HEC_URL: The URL of your Splunk HEC endpoint (e.g., https://your-splunk-instance:8088/services/collector).
  • SPLUNK_HEC_TOKEN: Your Splunk HEC token.

These are optional:

  • SPLUNK_HOST: The host field for your Splunk events (defaults to the local hostname).
  • SPLUNK_SOURCE: The source field for your Splunk events (defaults to "RPA").
  • SPLUNK_SOURCETYPE: The sourcetype field for your Splunk events (defaults to "_json").
  • SPLUNK_INDEX: The index for your Splunk events (defaults to "rdb").

Usage

import os
from splunk_logger import SplunkLogger

# Set environment variables (for demonstration; normally set outside the script)
os.environ["SPLUNK_HEC_URL"] = "YOUR_SPLUNK_HEC_URL"
os.environ["SPLUNK_HEC_TOKEN"] = "YOUR_SPLUNK_HEC_TOKEN"
os.environ["SPLUNK_HOST"] = "my-application-host"
os.environ["SPLUNK_SOURCE"] = "my-app"
os.environ["SPLUNK_SOURCETYPE"] = "_json"
os.environ["SPLUNK_INDEX"] = "my_index"

logger = SplunkLogger()

logger.info("This is an informational message.", Module="my_module", TaskId="123")
logger.warning("A potential issue occurred.", Module="my_module", StatusCode=404)
logger.error("An error occurred.", Module="my_module", ErrorCode=500, Exception="ValueError")

# You can also log events with a custom level or provide a complete event dictionary
logger.log_event({
    "Level": "DEBUG",
    "Message": "Detailed debug information.",
    "Component": "Database",
    "Query": "SELECT * FROM users"
})

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

splunk_hec_logger-0.1.0.tar.gz (2.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

splunk_hec_logger-0.1.0-py3-none-any.whl (2.9 kB view details)

Uploaded Python 3

File details

Details for the file splunk_hec_logger-0.1.0.tar.gz.

File metadata

  • Download URL: splunk_hec_logger-0.1.0.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for splunk_hec_logger-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a71615d4e4fc90e5cb36588ba4fc5b0cc4c88edb9a6b2771d606cbae14366c24
MD5 31dcbe13263ba6d5efe583df0d8bac8d
BLAKE2b-256 bcf5e5a05b6305f5a43093c73dbe65ac4c2996688817ca82cea04218a283ea32

See more details on using hashes here.

File details

Details for the file splunk_hec_logger-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for splunk_hec_logger-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 254b8ff260aee04435e003675167ba1bd6939c26579c911c370da56c2df0c42f
MD5 fda80e9bd0a7b866c2698bc27a4fa913
BLAKE2b-256 aab4df112612e8ed0f02af193a4b3ec5a1a913ddc37de8e0b67b31fbf33f9887

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page