Documentation ¶
Index ¶
Constants ¶
View Source
const ( // ApertureSourceLabel is the label used to identify the flow control integration. ApertureSourceLabel = "aperture.source" // ApertureSourceSDK const for SDK source. ApertureSourceSDK = "sdk" // ApertureSourceEnvoy const for Envoy source. ApertureSourceEnvoy = "envoy" // ApertureSourceLua const for Lua source. ApertureSourceLua = "lua" // FeatureControlPoint const for feature control point. FeatureControlPoint = "feature" // HTTPControlPoint for envoy control point. HTTPControlPoint = "http" // ApertureCheckResponseLabel contains JSON encoded check response struct. ApertureCheckResponseLabel = "aperture.check_response" // ResponseReceivedLabel designates whether a response was received. ResponseReceivedLabel = "response_received" // ResponseReceivedTrue const for true value. ResponseReceivedTrue = "true" // ResponseReceivedFalse const for false value. ResponseReceivedFalse = "false" // ApertureServicesLabel describes services to which metrics refer. ApertureServicesLabel = "aperture.services" // ApertureControlPointLabel describes control point to which metrics refer. ApertureControlPointLabel = "aperture.control_point" // ApertureControlPointTypeLabel describes the type of control point. ApertureControlPointTypeLabel = "aperture.control_point_type" // WorkloadDurationLabel describes duration of the workload in milliseconds. WorkloadDurationLabel = "workload_duration_ms" // FlowDurationLabel describes duration of the flow in milliseconds. FlowDurationLabel = "flow_duration_ms" // ApertureProcessingDurationLabel describes Aperture's processing duration in milliseconds. ApertureProcessingDurationLabel = "aperture_processing_duration_ms" // ApertureSourceServiceLabel describes the source service of the flow. ApertureSourceServiceLabel = "aperture.source_service" // ApertureDestinationServiceLabel describes the destination service of the flow. ApertureDestinationServiceLabel = "aperture.destination_service" // ApertureDecisionTypeLabel describes the decision type taken by policy. ApertureDecisionTypeLabel = "aperture.decision_type" // ApertureRejectReasonLabel describes the reject reason of the decision taken by policy. ApertureRejectReasonLabel = "aperture.reject_reason" // ApertureRateLimitersLabel describes rate limiters matched to the traffic. ApertureRateLimitersLabel = "aperture.rate_limiters" // ApertureDroppingRateLimitersLabel describes rate limiters dropping the traffic. ApertureDroppingRateLimitersLabel = "aperture.dropping_rate_limiters" // ApertureConcurrencyLimitersLabel describes concurrency limiters matched to the traffic. ApertureConcurrencyLimitersLabel = "aperture.concurrency_limiters" // ApertureDroppingConcurrencyLimitersLabel describes concurrency limiters dropping the traffic. ApertureDroppingConcurrencyLimitersLabel = "aperture.dropping_concurrency_limiters" // ApertureWorkloadsLabel describes workloads matched to the traffic. ApertureWorkloadsLabel = "aperture.workloads" // ApertureDroppingWorkloadsLabel describes workloads dropping the traffic. ApertureDroppingWorkloadsLabel = "aperture.dropping_workloads" // ApertureFluxMetersLabel describes flux meters matched to the traffic. ApertureFluxMetersLabel = "aperture.flux_meters" // ApertureFlowLabelKeysLabel describes keys of flow labels matched to the traffic. ApertureFlowLabelKeysLabel = "aperture.flow_label_keys" // ApertureClassifiersLabel describes classifiers matched to the traffic. ApertureClassifiersLabel = "aperture.classifiers" // ApertureClassifierErrorsLabel describes encountered classifier errors for specified policy. ApertureClassifierErrorsLabel = "aperture.classifier_errors" // ApertureFlowStatusLabel label to denote OK or Error across all protocols. ApertureFlowStatusLabel = "aperture.flow.status" // ApertureFlowStatusOK const for OK status. ApertureFlowStatusOK = "OK" // ApertureFlowStatusError const for error status. ApertureFlowStatusError = "Error" // HTTPStatusCodeLabel describes HTTP status code of the response. HTTPStatusCodeLabel = "http.status_code" // HTTPRequestContentLength describes length of the HTTP request content in bytes. HTTPRequestContentLength = "http.request_content_length" // HTTPResponseContentLength describes length of the HTTP response content in bytes. HTTPResponseContentLength = "http.response_content_length" // EnvoyAuthzDurationLabel describes duration of the Authz call in milliseconds. EnvoyAuthzDurationLabel = "authz_duration" // CheckHTTPDurationLabel describes duration of the CheckHTTP call in milliseconds. CheckHTTPDurationLabel = "checkhttp_duration" // ResponseDurationLabel from access logs. ResponseDurationLabel = "RESPONSE_DURATION" // BytesReceivedLabel from access logs. BytesReceivedLabel = "BYTES_RECEIVED" // BytesSentLabel from access logs. BytesSentLabel = "BYTES_SENT" // EnvoyMissingAttributeValue is a special attribute value, which can // happen when (eg. Envoy's) logger tries to send attribute value, but it // is not available. Eg. In case authz could not reach agent, so we know // nothing about flowcontrol policies. Note that this is different case // from "just empty", eg. "", "[]" or "{}". EnvoyMissingAttributeValue = "-" // LuaMissingAttributeValue is a special attribute value, which can // happen when (eg. Lua's) logger tries to send attribute value, but it // is not available. LuaMissingAttributeValue = "-" // ApertureFlowStartTimestampLabel is the start timestamp of the flow. ApertureFlowStartTimestampLabel = "aperture.flow_start_timestamp" // ApertureFlowEndTimestampLabel is the end timestamp of the flow. ApertureFlowEndTimestampLabel = "aperture.flow_end_timestamp" // ApertureWorkloadStartTimestampLabel is the start timestamp of the workload. ApertureWorkloadStartTimestampLabel = "aperture.workload_start_timestamp" // AgentGroupLabel describes agent group to which metrics refer. AgentGroupLabel = "agent_group" // InstanceLabel describes agent group to which metrics refer. InstanceLabel = "instance" // ReceiverOTLP collects logs from libraries and SDKs. ReceiverOTLP = "otlp" // ReceiverPrometheus collects metrics from environment and services. ReceiverPrometheus = "prometheus" // ReceiverAlerts collects alerts from alerter. ReceiverAlerts = "alerts" // ReceiverKubeletStats collects metrics from kubelet. ReceiverKubeletStats = "kubeletstats" // ProcessorMetrics generates metrics based on logs and exposes them // on application prometheus metrics endpoint. ProcessorMetrics = "metrics" // ProcessorBatchPrerollup batches incoming data before rolling up. This is // required, as rollup processor can only roll up data inside a single batch. ProcessorBatchPrerollup = "batch/prerollup" // ProcessorBatchPostrollup batches data after rolling up, as roll up process // shrinks number of data points significantly. ProcessorBatchPostrollup = "batch/postrollup" // ProcessorBatchAlerts batches alerts before passing them to exporters. // This reduces number of calls to the Alertmanager. ProcessorBatchAlerts = "batch/alerts" // ProcessorRollup rolls up data to decrease cardinality. ProcessorRollup = "rollup" // ProcessorAgentGroup adds `agent_group` attribute. ProcessorAgentGroup = "attributes/agent_group" // ProcessorCustomMetrics adds `service.name` resource attribute. ProcessorCustomMetrics = "resource/custom_metrics" // ProcessorAgentResourceLabels adds `instance` and `agent_group` resource attributes. ProcessorAgentResourceLabels = "transform/agent_resource_labels" // ProcessorTracesToLogs converts received tracess to logs and passes them to configured // log exporter. ProcessorTracesToLogs = "tracestologs" // ProcessorAlertsNamespace adds host info as `namespace` attribute. ProcessorAlertsNamespace = "attributes/alerts" // ProcessorFilterKubeletStats filters in only metrics of interest. ProcessorFilterKubeletStats = "filter/kubeletstats" // ProcessorK8sAttributes enriches metrics with k8s metadata. ProcessorK8sAttributes = "k8sattributes/kubeletstats" // ExporterLogging exports telemetry using Aperture logger. ExporterLogging = "logging" // ExporterPrometheusRemoteWrite exports metrics to local prometheus instance. ExporterPrometheusRemoteWrite = "prometheusremotewrite" // ExporterOTLPLoopback exports OTLP data to local OTLP receiver. To be used only // with ProcessorSpanToLog. ExporterOTLPLoopback = "otlp/loopback" // ExporterAlerts exports alerts via alertmanager clients. ExporterAlerts = "alerts" // AlertGeneratorURLLabel describes. AlertGeneratorURLLabel = "generator_url" // AlertNameLabel describes name of the alert. AlertNameLabel = "alertname" // AlertSeverityLabel also known as log level. Human readable string. AlertSeverityLabel = "severity" // AlertChannelsLabel is a comma-separated list of channels to which alert is assigned. AlertChannelsLabel = "alert_channels" // IsAlertLabel helps to differentiate normal logs from alert logs. IsAlertLabel = "is_alert" // AlertNamespaceLabel which required by Alertmanager. Set to host name. AlertNamespaceLabel = "namespace" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.