observability.py¶
OpenTelemetry observability utilities for Splunk add-ons.
This module provides three public components:
-
:class:
LoggerMetricExporter— an OpenTelemetryMetricExporterthat writes every exported data point to a standard Python logger. It is useful for local development, debugging, and as a fallback when the Spotlight collector is not available. -
:class:
ObservabilityService— a high-level wrapper that wires up aMeterProviderand creates the two mandatory event counters required by every Splunk add-on modular input. It automatically tries to connect to the Splunk Spotlight OTLP collector and falls back silently when it is not reachable, so callers never have to handle observability failures themselves. -
:class:
StanzaObservabilityRecorder— a stanza-scoped recorder that wrapsObservabilityServicewith a per-process singleton cache. Bind it to a single stanza name and call :meth:~StanzaObservabilityRecorder.recordafter each batch of ingested events. Use as a context manager for automatic flush on exit.
Typical usage::
import logging
from solnlib.observability import StanzaObservabilityRecorder
logger = logging.getLogger(__name__)
with StanzaObservabilityRecorder("my-input", logger, stanza_name) as obs:
obs.record(len(events), total_bytes)
ATTR_MODINPUT_NAME = 'splunk.modinput.name'
module-attribute
¶
LoggerMetricExporter
¶
Bases: MetricExporter
An OpenTelemetry MetricExporter that logs every data point.
Each exported data point is written to a standard Python logger at INFO
level. Counters are logged as value, histograms as count,
sum, min, max, bucket_counts, and explicit_bounds.
This exporter is always available without any external infrastructure, so it is suitable for local development, CI environments, and as a fallback alongside the OTLP exporter.
Both Counter and Histogram instruments use delta temporality,
meaning each export interval reports only the change since the previous
interval, not a cumulative total.
Example::
import logging
from solnlib.observability import LoggerMetricExporter
logger = logging.getLogger(__name__)
exporter = LoggerMetricExporter(logger)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
logger
|
_Logger
|
The Python logger (or |
required |
Source code in solnlib/observability.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
__init__(logger)
¶
Source code in solnlib/observability.py
103 104 105 106 107 108 109 110 | |
export(metrics_data, timeout_millis=10000, **kwargs)
¶
Export metrics by writing each data point to the logger.
Called automatically by the PeriodicExportingMetricReader on each
export interval. You do not need to call this method directly.
Returns:
| Type | Description |
|---|---|
MetricExportResult
|
|
MetricExportResult
|
|
Source code in solnlib/observability.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
force_flush(timeout_millis=10000)
¶
Flush is a no-op for a synchronous logger; always returns
True.
Source code in solnlib/observability.py
176 177 178 179 | |
shutdown(timeout_millis=30000, **kwargs)
¶
No-op shutdown — the underlying logger needs no teardown.
Source code in solnlib/observability.py
173 174 | |
ObservabilityService
¶
OpenTelemetry observability service for a Splunk modular input.
Sets up a MeterProvider with two built-in event counters and,
when the Spotlight collector is reachable, an OTLP gRPC exporter.
Initialisation failures are caught and logged as warnings so that a
missing or misconfigured observability stack never breaks the add-on.
Resource attributes (fixed for the lifetime of the process):
| Attribute | Value |
|---|---|
splunk.addon.name |
ta_name |
service.namespace |
"splunk.addon" |
splunk.addon.version |
ta_version |
splunk.modinput.type |
modinput_type |
Built-in counters (None if initialisation failed):
| Attribute | Metric name | Unit |
|---|---|---|
event_count_counter |
splunk.addon.events |
1 |
event_bytes_counter |
splunk.addon.events.bytes |
By |
Both counters accept ATTR_MODINPUT_NAME ("splunk.modinput.name")
as the only recommended data-point attribute. Avoid adding other
high-cardinality labels to these metrics.
Additional instruments can be created with :meth:register_instrument.
Example::
import logging
from solnlib.observability import (
LoggerMetricExporter,
ObservabilityService,
ATTR_MODINPUT_NAME,
)
logger = logging.getLogger(__name__)
obs = ObservabilityService(
modinput_type="my-input",
logger=logger,
ta_name="my_ta",
ta_version="1.0.0",
extra_exporters=[LoggerMetricExporter(logger)],
)
# Record ingested events in your collection loop:
attrs = {ATTR_MODINPUT_NAME: stanza_name}
if obs.event_count_counter:
obs.event_count_counter.add(len(events), attrs)
if obs.event_bytes_counter:
obs.event_bytes_counter.add(total_bytes, attrs)
Source code in solnlib/observability.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 | |
event_bytes_counter = self._meter.create_counter(name='splunk.addon.events.bytes', description='Volume of data ingested by the add-on modular input', unit='By')
instance-attribute
¶
event_count_counter = self._meter.create_counter(name='splunk.addon.events', description='Number of events ingested by the add-on modular input', unit='1')
instance-attribute
¶
__init__(modinput_type, logger, ta_name=None, ta_version=None, extra_exporters=None)
¶
Initialise the observability service.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
modinput_type
|
str
|
Low-cardinality string identifying the modular input
type, e.g. |
required |
logger
|
_Logger
|
Python logger (or |
required |
ta_name
|
Optional[str]
|
Add-on identifier, e.g. |
None
|
ta_version
|
Optional[str]
|
Add-on version string, e.g. |
None
|
extra_exporters
|
Optional[list[MetricExporter]]
|
Optional list of additional
|
None
|
Source code in solnlib/observability.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | |
flush(timeout_millis=30000)
¶
Force-flush all metric readers.
Blocks until all buffered data points have been handed off to their exporters or timeout_millis elapses. Call this before the modular input process exits to avoid dropping the last batch of metrics.
Prefer using :class:StanzaObservabilityRecorder as a context manager
rather than calling this method directly — it calls
:meth:StanzaObservabilityRecorder.flush on exit automatically.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout_millis
|
float
|
Maximum time to wait for exporters to drain, in milliseconds. Defaults to 30 seconds. |
30000
|
Source code in solnlib/observability.py
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 | |
register_instrument(callback)
¶
Create a custom instrument using the service’s meter.
Passes the internal Meter to callback and returns whatever the
callback creates. If the service failed to initialise (e.g. because
ta_name could not be determined), the meter is None and this
method returns None without invoking the callback.
Always guard the returned value against None before calling it, for
the same reason you guard event_count_counter.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callback
|
Callable[[Meter], Instrument]
|
A callable that receives the |
required |
Returns:
| Type | Description |
|---|---|
Optional[Instrument]
|
The instrument created by callback, or |
Optional[Instrument]
|
not available. |
Example::
latency = obs.register_instrument(
lambda meter: meter.create_histogram(
name="my_ta.request.latency",
description="Latency of outbound API requests",
unit="s",
)
)
if latency:
latency.record(elapsed, {ATTR_MODINPUT_NAME: stanza_name})
Source code in solnlib/observability.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 | |
StanzaObservabilityRecorder
¶
Stanza-scoped observability recorder backed by a shared ObservabilityService.
One ObservabilityService is created per modinput_type per process and
cached in :attr:_instances for the lifetime of the process. Every
StanzaObservabilityRecorder for the same modinput_type shares that
service regardless of how many stanzas are active, so the OTLP connection
and MeterProvider are only initialised once.
Each recorder instance is bound to a single stanza_name, which is
automatically attached as the "splunk.modinput.name" attribute on every
recorded data point.
Best practices:
- Use as a context manager (
withstatement) so that :meth:flushis always called when the stanza collection loop exits, even on exceptions. - Pass the same modinput_type string for all stanzas of the same input
type. The string should be lowercase, hyphenated, and stable across
restarts (e.g.
"event-hub"). - Do not store the recorder beyond the lifetime of a single stanza collection cycle — create a new instance for each run.
- Register custom instruments via :meth:
register_instrumenton the recorder instance rather than accessing the underlying service directly. - :class:
StanzaObservabilityRecorderis thread-safe at the singleton level (_lockprotects_instances), but individual recorder instances are not meant to be shared across threads.
Typical usage::
import logging
from solnlib.observability import StanzaObservabilityRecorder
logger = logging.getLogger(__name__)
def collect(stanza_name: str) -> None:
with StanzaObservabilityRecorder("my-input", logger, stanza_name) as obs:
events = fetch_events()
obs.record(len(events), sum(len(e) for e in events))
Custom instrument (e.g. latency histogram)::
from solnlib.observability import StanzaObservabilityRecorder, ATTR_MODINPUT_NAME
with StanzaObservabilityRecorder("my-input", logger, stanza_name) as obs:
latency_histogram = obs.register_instrument(
lambda meter: meter.create_histogram(
name="my_ta.request.latency",
description="Latency of outbound API requests",
unit="s",
)
)
# ... collect events ...
if latency_histogram:
latency_histogram.record(elapsed, {ATTR_MODINPUT_NAME: stanza_name})
Source code in solnlib/observability.py
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 | |
__enter__()
¶
Return self to support the with statement.
Source code in solnlib/observability.py
773 774 775 | |
__exit__(*_)
¶
Flush all metric readers and allow exceptions to propagate.
Returns False so any exception raised inside the with block
is re-raised after flushing.
Source code in solnlib/observability.py
777 778 779 780 781 782 783 784 | |
__init__(modinput_type, logger, stanza_name)
¶
Initialise a stanza-scoped recorder.
Gets or creates the shared :class:ObservabilityService for
modinput_type (singleton per process), then emits a zero baseline
on both built-in counters so that the metric series is visible in
dashboards from the very first collection cycle even when no events
were ingested.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
modinput_type
|
str
|
Low-cardinality identifier for the input type,
e.g. |
required |
logger
|
_Logger
|
Python logger used both for |
required |
stanza_name
|
str
|
The name of the input stanza being collected (e.g.
|
required |
Source code in solnlib/observability.py
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | |
flush()
¶
Force-flush all metric readers.
Delegates to :meth:ObservabilityService.flush (which calls
MeterProvider.force_flush() internally). Called automatically by
__exit__ when the recorder is used as a context manager, so you
rarely need to call this directly.
Call it explicitly only when you are not using the context manager and need to guarantee delivery before the process exits::
obs = StanzaObservabilityRecorder("my-input", logger, stanza_name)
try:
obs.record(len(events), total_bytes)
finally:
obs.flush()
Source code in solnlib/observability.py
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | |
record(event_count, byte_count, extra_attrs=None)
¶
Add event_count and byte_count to the built-in counters.
The "splunk.modinput.name" attribute is always set to the
stanza_name supplied at construction time and cannot be overridden by
extra_attrs. This preserves the stanza-scoped guarantee — every data
point is unambiguously attributed to the stanza that recorded it.
Silently no-ops if either counter is None (i.e.
:class:ObservabilityService failed to initialise).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_count
|
int
|
Number of events ingested in this batch. Pass |
required |
byte_count
|
int
|
Total size of the ingested events in bytes. |
required |
extra_attrs
|
Optional[dict]
|
Optional dict of additional OpenTelemetry attributes to attach to both data points. Keys must be strings; values must be strings, booleans, or numbers. Avoid high-cardinality keys such as user IDs or GUIDs. |
None
|
Example::
obs.record(
event_count=len(events),
byte_count=sum(len(e) for e in events),
extra_attrs={"my_ta.partition": partition_id},
)
Source code in solnlib/observability.py
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | |
register_instrument(callback)
¶
Create a custom instrument on the shared meter.
Delegates to :meth:ObservabilityService.register_instrument. The
instrument is registered on the process-wide MeterProvider, so it
is shared across all recorders for the same modinput_type. Calling
this method on any recorder instance for a given modinput_type is
equivalent — register each instrument only once.
Returns None when :class:ObservabilityService failed to
initialise (e.g. because ta_name could not be determined). Always
guard the returned value before recording::
latency_histogram = obs.register_instrument(
lambda meter: meter.create_histogram(
name="my_ta.request.latency",
description="Latency of outbound API requests",
unit="s",
)
)
if latency_histogram:
latency_histogram.record(elapsed, {ATTR_MODINPUT_NAME: self._stanza_name})
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callback
|
Callable[[Meter], Instrument]
|
Callable that receives the |
required |
Returns:
| Type | Description |
|---|---|
Optional[Instrument]
|
The instrument created by callback, or |
Source code in solnlib/observability.py
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 | |