You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
472 lines
15 KiB
472 lines
15 KiB
#
|
|
# Copyright 2021 Splunk Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
"""This module provides two kinds of event writers (ClassicEventWriter,
|
|
HECEventWriter) to write Splunk modular input events."""
|
|
|
|
import logging
|
|
import multiprocessing
|
|
import sys
|
|
import threading
|
|
import time
|
|
import traceback
|
|
from abc import ABCMeta, abstractmethod
|
|
from random import randint
|
|
from typing import List, Union
|
|
|
|
from splunklib import binding
|
|
|
|
from .. import splunk_rest_client as rest_client
|
|
from .. import utils
|
|
from ..hec_config import HECConfig
|
|
from ..splunkenv import get_splunkd_access_info
|
|
from ..utils import retry
|
|
from .event import HECEvent, XMLEvent
|
|
|
|
__all__ = ["ClassicEventWriter", "HECEventWriter"]
|
|
|
|
|
|
class EventWriter(metaclass=ABCMeta):
|
|
"""Base class of event writer."""
|
|
|
|
description = "EventWriter"
|
|
|
|
@abstractmethod
|
|
def create_event(
|
|
self,
|
|
data: dict,
|
|
time: float = None,
|
|
index: str = None,
|
|
host: str = None,
|
|
source: str = None,
|
|
sourcetype: str = None,
|
|
fields: dict = None,
|
|
stanza: str = None,
|
|
unbroken: bool = False,
|
|
done: bool = False,
|
|
) -> Union[XMLEvent, HECEvent]:
|
|
"""Create a new event.
|
|
|
|
Arguments:
|
|
data: Event data.
|
|
time: (optional) Event timestamp, default is None.
|
|
index: (optional) The index event will be written to, default is None.
|
|
host: (optional) Event host, default is None.
|
|
source: (optional) Event source, default is None.
|
|
sourcetype: (optional) Event sourcetype, default is None.
|
|
fields: (optional) Event fields, default is None.
|
|
stanza: (optional) Event stanza name, default is None.
|
|
unbroken: (optional) Event unbroken flag, default is False.
|
|
It is only meaningful when for XMLEvent when using ClassicEventWriter.
|
|
done: (optional) The last unbroken event, default is False.
|
|
It is only meaningful when for XMLEvent when using ClassicEventWriter.
|
|
|
|
Examples:
|
|
>>> ew = event_writer.HECEventWriter(...)
|
|
>>> event = ew.create_event(
|
|
>>> data='This is a test data.',
|
|
>>> time='%.3f' % 1372274622.493,
|
|
>>> index='main',
|
|
>>> host='localhost',
|
|
>>> source='Splunk',
|
|
>>> sourcetype='misc',
|
|
>>> fields={'accountid': '603514901691', 'Cloud': u'AWS'},
|
|
>>> stanza='test_scheme://test',
|
|
>>> unbroken=True,
|
|
>>> done=True)
|
|
"""
|
|
|
|
pass
|
|
|
|
@abstractmethod
|
|
def write_events(self, events: List):
|
|
"""Write events.
|
|
|
|
Arguments:
|
|
events: List of events to write.
|
|
|
|
Examples:
|
|
>>> from solnlib.modular_input import event_writer
|
|
>>> ew = event_writer.EventWriter(...)
|
|
>>> ew.write_events([event1, event2])
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ClassicEventWriter(EventWriter):
|
|
"""Classic event writer.
|
|
|
|
Use sys.stdout as the output.
|
|
|
|
Examples:
|
|
>>> from solnlib.modular_input import event_writer
|
|
>>> ew = event_writer.ClassicEventWriter()
|
|
>>> ew.write_events([event1, event2])
|
|
"""
|
|
|
|
description = "ClassicEventWriter"
|
|
|
|
def __init__(self, lock: Union[threading.Lock, multiprocessing.Lock] = None):
|
|
"""Initializes ClassicEventWriter.
|
|
|
|
Arguments:
|
|
lock: (optional) lock to exclusively access stdout.
|
|
by default, it is None and it will use threading safe lock.
|
|
if user would like to make the lock multiple-process safe, user should
|
|
pass in multiprocessing.Lock() instead
|
|
"""
|
|
if lock is None:
|
|
self._lock = threading.Lock()
|
|
else:
|
|
self._lock = lock
|
|
|
|
def create_event(
|
|
self,
|
|
data: dict,
|
|
time: float = None,
|
|
index: str = None,
|
|
host: str = None,
|
|
source: str = None,
|
|
sourcetype: str = None,
|
|
fields: dict = None,
|
|
stanza: str = None,
|
|
unbroken: bool = False,
|
|
done: bool = False,
|
|
):
|
|
"""Create a new XMLEvent object."""
|
|
|
|
return XMLEvent(
|
|
data,
|
|
time=time,
|
|
index=index,
|
|
host=host,
|
|
source=source,
|
|
sourcetype=sourcetype,
|
|
stanza=stanza,
|
|
unbroken=unbroken,
|
|
done=done,
|
|
)
|
|
|
|
def write_events(self, events):
|
|
if not events:
|
|
return
|
|
|
|
stdout = sys.stdout
|
|
|
|
data = "".join([event for event in XMLEvent.format_events(events)])
|
|
with self._lock:
|
|
stdout.write(data)
|
|
stdout.flush()
|
|
|
|
|
|
class HECEventWriter(EventWriter):
|
|
"""HEC event writer.
|
|
|
|
Use Splunk HEC as the output.
|
|
|
|
Examples:
|
|
>>> from solnlib.modular_input import event_writer
|
|
>>> ew = event_writer.HECEventWriter(hec_input_name, session_key)
|
|
>>> ew.write_events([event1, event2])
|
|
"""
|
|
|
|
WRITE_EVENT_RETRIES = 5
|
|
HTTP_INPUT_CONFIG_ENDPOINT = "/servicesNS/nobody/splunk_httpinput/data/inputs/http"
|
|
HTTP_EVENT_COLLECTOR_ENDPOINT = "/services/collector"
|
|
TOO_MANY_REQUESTS = 429 # we exceeded rate limit
|
|
SERVICE_UNAVAILABLE = 503 # remote service is temporary unavailable
|
|
|
|
description = "HECEventWriter"
|
|
|
|
headers = [("Content-Type", "application/json")]
|
|
|
|
def __init__(
|
|
self,
|
|
hec_input_name: str,
|
|
session_key: str,
|
|
scheme: str = None,
|
|
host: str = None,
|
|
port: int = None,
|
|
hec_uri: str = None,
|
|
hec_token: str = None,
|
|
logger: logging.Logger = None,
|
|
**context: dict
|
|
):
|
|
"""Initializes HECEventWriter.
|
|
|
|
Arguments:
|
|
hec_input_name: Splunk HEC input name.
|
|
session_key: Splunk access token.
|
|
scheme: (optional) The access scheme, default is None.
|
|
host: (optional) The host name, default is None.
|
|
port: (optional) The port number, default is None.
|
|
hec_uri: (optional) If hec_uri and hec_token are provided, they will
|
|
higher precedence than hec_input_name.
|
|
hec_token: (optional) HEC token.
|
|
logger: Logger object.
|
|
context: Other configurations for Splunk rest client.
|
|
"""
|
|
super().__init__()
|
|
self._session_key = session_key
|
|
if logger:
|
|
self.logger = logger
|
|
else:
|
|
self.logger = logging
|
|
|
|
if not all([scheme, host, port]):
|
|
scheme, host, port = get_splunkd_access_info()
|
|
|
|
if hec_uri and hec_token:
|
|
scheme, host, hec_port = utils.extract_http_scheme_host_port(hec_uri)
|
|
else:
|
|
hec_port, hec_token = self._get_hec_config(
|
|
hec_input_name, session_key, scheme, host, port, **context
|
|
)
|
|
|
|
if not context.get("pool_connections"):
|
|
context["pool_connections"] = 10
|
|
|
|
if not context.get("pool_maxsize"):
|
|
context["pool_maxsize"] = 10
|
|
|
|
self._rest_client = rest_client.SplunkRestClient(
|
|
hec_token, app="-", scheme=scheme, host=host, port=hec_port, **context
|
|
)
|
|
|
|
@staticmethod
|
|
def create_from_token(
|
|
hec_uri: str, hec_token: str, **context: dict
|
|
) -> "HECEventWriter":
|
|
"""Given HEC URI and HEC token, create HECEventWriter object. This
|
|
function simplifies the standalone mode HECEventWriter usage (not in a
|
|
modinput).
|
|
|
|
Arguments:
|
|
hec_uri: HTTP Event Collector URI, like https://localhost:8088.
|
|
hec_token: HTTP Event Collector token.
|
|
context: Other configurations.
|
|
|
|
Returns:
|
|
Created HECEventWriter.
|
|
"""
|
|
|
|
return HECEventWriter(
|
|
None,
|
|
None,
|
|
None,
|
|
None,
|
|
None,
|
|
hec_uri=hec_uri,
|
|
hec_token=hec_token,
|
|
**context
|
|
)
|
|
|
|
@staticmethod
|
|
def create_from_input(
|
|
hec_input_name: str, splunkd_uri: str, session_key: str, **context: dict
|
|
) -> "HECEventWriter":
|
|
"""Given HEC input stanza name, splunkd URI and splunkd session key,
|
|
create HECEventWriter object. HEC URI and token etc will be discovered
|
|
from HEC input stanza. When hitting HEC event limit, the underlying
|
|
code will increase the HEC event limit automatically by calling
|
|
corresponding REST API against splunkd_uri by using session_key.
|
|
|
|
Arguments:
|
|
hec_input_name: Splunk HEC input name.
|
|
splunkd_uri: Splunkd URI, like https://localhost:8089
|
|
session_key: Splunkd access token.
|
|
context: Other configurations.
|
|
|
|
Returns:
|
|
Created HECEventWriter.
|
|
"""
|
|
|
|
scheme, host, port = utils.extract_http_scheme_host_port(splunkd_uri)
|
|
return HECEventWriter(
|
|
hec_input_name, session_key, scheme, host, port, **context
|
|
)
|
|
|
|
@staticmethod
|
|
def create_from_token_with_session_key(
|
|
splunkd_uri: str,
|
|
session_key: str,
|
|
hec_uri: str,
|
|
hec_token: str,
|
|
**context: dict
|
|
) -> "HECEventWriter":
|
|
"""Given Splunkd URI, Splunkd session key, HEC URI and HEC token,
|
|
create HECEventWriter object. When hitting HEC event limit, the event
|
|
writer will increase the HEC event limit automatically by calling
|
|
corresponding REST API against splunkd_uri by using session_key.
|
|
|
|
Arguments:
|
|
splunkd_uri: Splunkd URI, like https://localhost:8089.
|
|
session_key: Splunkd access token.
|
|
hec_uri: Http Event Collector URI, like https://localhost:8088.
|
|
hec_token: Http Event Collector token.
|
|
context: Other configurations.
|
|
|
|
Returns:
|
|
Created HECEventWriter.
|
|
"""
|
|
|
|
scheme, host, port = utils.extract_http_scheme_host_port(splunkd_uri)
|
|
return HECEventWriter(
|
|
None,
|
|
session_key,
|
|
scheme,
|
|
host,
|
|
port,
|
|
hec_uri=hec_uri,
|
|
hec_token=hec_token,
|
|
**context
|
|
)
|
|
|
|
@retry(exceptions=[binding.HTTPError])
|
|
def _get_hec_config(
|
|
self, hec_input_name, session_key, scheme, host, port, **context
|
|
):
|
|
hc = HECConfig(session_key, scheme=scheme, host=host, port=port, **context)
|
|
settings = hc.get_settings()
|
|
if utils.is_true(settings.get("disabled")):
|
|
# Enable HEC input
|
|
self.logger.info("Enabling HEC")
|
|
settings["disabled"] = "0"
|
|
settings["enableSSL"] = context.get("hec_enablessl", "1")
|
|
settings["port"] = context.get("hec_port", "8088")
|
|
hc.update_settings(settings)
|
|
|
|
hec_input = hc.get_input(hec_input_name)
|
|
if not hec_input:
|
|
# Create HEC input
|
|
self.logger.info("Create HEC datainput, name=%s", hec_input_name)
|
|
hinput = {
|
|
"index": context.get("index", "main"),
|
|
}
|
|
|
|
if context.get("sourcetype"):
|
|
hinput["sourcetype"] = context["sourcetype"]
|
|
|
|
if context.get("token"):
|
|
hinput["token"] = context["token"]
|
|
|
|
if context.get("source"):
|
|
hinput["source"] = context["source"]
|
|
|
|
if context.get("host"):
|
|
hinput["host"] = context["host"]
|
|
|
|
hec_input = hc.create_input(hec_input_name, hinput)
|
|
|
|
limits = hc.get_limits()
|
|
HECEvent.max_hec_event_length = int(limits.get("max_content_length", 1000000))
|
|
|
|
return settings["port"], hec_input["token"]
|
|
|
|
def create_event(
|
|
self,
|
|
data: dict,
|
|
time: float = None,
|
|
index: str = None,
|
|
host: str = None,
|
|
source: str = None,
|
|
sourcetype: str = None,
|
|
fields: dict = None,
|
|
stanza: str = None,
|
|
unbroken: bool = False,
|
|
done: bool = False,
|
|
) -> HECEvent:
|
|
"""Create a new HECEvent object.
|
|
|
|
Arguments:
|
|
data: Event data.
|
|
time: (optional) Event timestamp, default is None.
|
|
index: (optional) The index event will be written to, default is None.
|
|
host: (optional) Event host, default is None.
|
|
source: (optional) Event source, default is None.
|
|
sourcetype: (optional) Event sourcetype, default is None.
|
|
fields: (optional) Event fields, default is None.
|
|
stanza: (optional) Event stanza name, default is None.
|
|
unbroken: (optional) Event unbroken flag, default is False.
|
|
It is only meaningful when for XMLEvent when using ClassicEventWriter.
|
|
done: (optional) The last unbroken event, default is False.
|
|
It is only meaningful when for XMLEvent when using ClassicEventWriter.
|
|
|
|
Returns:
|
|
Created HECEvent.
|
|
"""
|
|
|
|
return HECEvent(
|
|
data,
|
|
time=time,
|
|
index=index,
|
|
host=host,
|
|
source=source,
|
|
sourcetype=sourcetype,
|
|
fields=fields,
|
|
)
|
|
|
|
def write_events(
|
|
self,
|
|
events: List,
|
|
retries: int = WRITE_EVENT_RETRIES,
|
|
event_field: str = "event",
|
|
):
|
|
"""Write events to index in bulk.
|
|
|
|
Arguments:
|
|
events: List of events.
|
|
retries: Number of retries for writing events to index.
|
|
event_field: Event field.
|
|
"""
|
|
if not events:
|
|
return
|
|
|
|
last_ex = None
|
|
for event in HECEvent.format_events(events, event_field):
|
|
for i in range(retries):
|
|
try:
|
|
self._rest_client.post(
|
|
self.HTTP_EVENT_COLLECTOR_ENDPOINT,
|
|
body=event.encode("utf-8"),
|
|
headers=self.headers,
|
|
)
|
|
except binding.HTTPError as e:
|
|
self.logger.warn(
|
|
"Write events through HEC failed. Status=%s", e.status
|
|
)
|
|
last_ex = e
|
|
if e.status in [self.TOO_MANY_REQUESTS, self.SERVICE_UNAVAILABLE]:
|
|
# wait time for n retries: 10, 20, 40, 80, 80, 80, 80, ....
|
|
sleep_time = min(((2 ** (i + 1)) * 5), 80)
|
|
if i < retries - 1:
|
|
random_millisecond = randint(0, 1000) / 1000.0
|
|
time.sleep(sleep_time + random_millisecond)
|
|
else:
|
|
raise last_ex
|
|
else:
|
|
break
|
|
else:
|
|
# When failed after retry, we reraise the exception
|
|
# to exit the function to let client handle this situation
|
|
self.logger.error(
|
|
"Write events through HEC failed: %s. status=%s",
|
|
traceback.format_exc(),
|
|
last_ex.status,
|
|
)
|
|
raise last_ex
|