You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Optional default namespace for metrics sent to Splunk HEC.
59806
+
example: "custom_namespace"
59807
+
type: string
59808
+
endpoint_url_key:
59809
+
description: Name of the environment variable or secret that holds the Splunk HEC endpoint URL.
59810
+
example: SPLUNK_HEC_ENDPOINT_URL
59811
+
type: string
59812
+
id:
59813
+
description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
59814
+
example: splunk-hec-metrics-destination
59815
+
type: string
59816
+
index:
59817
+
description: Optional name of the Splunk index where metrics are written.
59818
+
example: "metrics"
59819
+
type: string
59820
+
inputs:
59821
+
description: A list of component IDs whose output is used as the `input` for this component.
59822
+
example: ["metrics-filter-processor"]
59823
+
items:
59824
+
description: The ID of a component whose output is used as input for this destination.
59825
+
type: string
59826
+
type: array
59827
+
source:
59828
+
description: The Splunk source field value for metric events.
59829
+
example: "observability_pipelines"
59830
+
type: string
59831
+
sourcetype:
59832
+
description: The Splunk sourcetype to assign to metric events.
description: The destination type. Always `splunk_hec_metrics`.
59863
+
enum:
59864
+
- splunk_hec_metrics
59865
+
example: splunk_hec_metrics
59866
+
type: string
59867
+
x-enum-varnames:
59868
+
- SPLUNK_HEC_METRICS
59748
59869
ObservabilityPipelineSplunkHecSource:
59749
59870
description: |-
59750
59871
The `splunk_hec` source implements the Splunk HTTP Event Collector (HEC) API.
@@ -140770,6 +140891,73 @@ paths:
140770
140891
summary: Upsert rows
140771
140892
tags:
140772
140893
- Reference Tables
140894
+
/api/v2/reference-tables/tables/{id}/rows/list:
140895
+
get:
140896
+
description: List all rows in a reference table using cursor-based pagination. Pass the `page[continuation_token]` from the previous response to fetch the next page on the same consistent snapshot. Returns 400 for tables with more than 10,000,000 rows.
140897
+
operationId: ListReferenceTableRows
140898
+
parameters:
140899
+
- description: Unique identifier of the reference table to list rows from.
140900
+
example: "00000000-0000-0000-0000-000000000000"
140901
+
in: path
140902
+
name: id
140903
+
required: true
140904
+
schema:
140905
+
type: string
140906
+
- description: Number of rows to return per page. Defaults to 100, maximum is 1000.
140907
+
example: 100
140908
+
in: query
140909
+
name: page[limit]
140910
+
required: false
140911
+
schema:
140912
+
default: 100
140913
+
format: int64
140914
+
maximum: 1000
140915
+
minimum: 1
140916
+
type: integer
140917
+
- description: Opaque cursor from the previous response's next link. Pass this to retrieve the next page on the same consistent snapshot.
List all rows in a reference table using cursor-based pagination. Pass the ``page[continuation_token]`` from the previous response to fetch the next page on the same consistent snapshot. Returns 400 for tables with more than 10,000,000 rows.
484
+
485
+
:param id: Unique identifier of the reference table to list rows from.
486
+
:type id: str
487
+
:param page_limit: Number of rows to return per page. Defaults to 100, maximum is 1000.
488
+
:type page_limit: int, optional
489
+
:param page_continuation_token: Opaque cursor from the previous response's next link. Pass this to retrieve the next page on the same consistent snapshot.
0 commit comments