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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file splunk_hec_logger-0.1.3.tar.gz.
File metadata
- Download URL: splunk_hec_logger-0.1.3.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
227cda47d2ba7a623e7e6aff6d973e1d58ffe4ac3cad3d93649843c0cb1ba8d4
|
|
| MD5 |
7d1fbea5227daca64aa0860b8ecc1b2e
|
|
| BLAKE2b-256 |
9339d50119d0f362e2aa760c2c952576385467bd0fca4472a155e1f783fc6bb0
|
File details
Details for the file splunk_hec_logger-0.1.3-py3-none-any.whl.
File metadata
- Download URL: splunk_hec_logger-0.1.3-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eae6840a2a7287b0e430c952857407f877a960e898190dcb0c12e47e7bae2ea1
|
|
| MD5 |
5bab5c32bbd0be167b80271930e2e9dc
|
|
| BLAKE2b-256 |
3392cd96c3c2eeda63591785875b9feace88ffb86741ab385829c4e4fa6f925d
|