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
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 180 181 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 | |
__init__(logger)
¶
Source code in solnlib/observability.py
170 171 172 173 174 175 176 177 | |
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
179 180 181 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 | |
force_flush(timeout_millis=10000)
¶
Flush is a no-op for a synchronous logger; always returns
True.
Source code in solnlib/observability.py
245 246 247 248 | |
shutdown(timeout_millis=30000, **kwargs)
¶
No-op shutdown — the underlying logger needs no teardown.
Source code in solnlib/observability.py
242 243 | |
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 at INFO 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
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 570 571 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 | |
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
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 | |
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
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 | |
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
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 | |
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
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 | |
__enter__()
¶
Return self to support the with statement.
Source code in solnlib/observability.py
1034 1035 1036 | |
__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
1038 1039 1040 1041 1042 1043 1044 1045 | |
__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
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 | |
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
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 | |
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
946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 | |
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
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 | |