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-hec-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.1.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.1-py3-none-any.whl (2.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: splunk_hec_logger-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 b49e9b7cb1c5ec110cc3ab53d06d0428916f5e295d7f73aa03d533a4ffecd835
MD5 5351e61f39b52d2b914d89ee256c7977
BLAKE2b-256 497a9cb05af6c035a9458e53b7cf3f4124ffd2d792734518caa5a5e42a60b80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for splunk_hec_logger-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5460aafe58bb432cb746b8a3e65059fcd8958a058c5f7481cfcb485f9cdd1a60
MD5 b86eeaebc21f5bf8a6526b6ca548dfd2
BLAKE2b-256 5f58f74d835c3935eb852fcdde63bf37b25b2da8473a564116fa26a4377babd6

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