Documentation ¶
Overview ¶
Package logfields defines common logging fields which are used across packages
Index ¶
Constants ¶
View Source
const ( // Annotations are any annotations for Pods Annotations = "annotations" // LogSubsys is the field denoting the subsystem when logging LogSubsys = "subsys" // Signal is the field to print os signals on exit etc. Signal = "signal" // Node is a host machine in the cluster, running cilium Node = "node" // NodeID is the node-scoped ID of the node as allocated by the agent NodeID = "nodeID" // NodeName is a human readable name for the node NodeName = "nodeName" // Endpoint is the endpoint name (e.g. wireguard) Endpoint = "endpoint" // EndpointID is the numeric endpoint identifier EndpointID = "endpointID" // EndpointState is the current endpoint state EndpointState = "endpointState" // EventUUID is an event unique identifier EventUUID = "eventID" // ContainerID is the container identifier ContainerID = "containerID" // IdentityLabels are the labels relevant for the security identity IdentityLabels = "identityLabels" // InfoLabels are the labels relevant for the security identity InfoLabels = "infoLabels" // Labels are any label, they may not be relevant to the security identity. Labels = "labels" // Controller is the name of the controller to log it. Controller = "controller" // Identity is the identifier of a security identity Identity = "identity" // Ingress is the identifier of an ingress object Ingress = "ingress" // OldIdentity is a previously used security identity OldIdentity = "oldIdentity" // PolicyRevision is the revision of the policy in the repository or of // the object in question PolicyRevision = "policyRevision" // DatapathPolicyRevision is the policy revision currently running in // the datapath DatapathPolicyRevision = "datapathPolicyRevision" // DesiredPolicyRevision is the latest policy revision as evaluated for // an endpoint. It is the desired policy revision to be implemented // into the datapath. DesiredPolicyRevision = "desiredPolicyRevision" // PolicyID is the identifier of a L3, L4 or L7 Policy. Ideally the .NumericIdentity PolicyID = "policyID" // AddedPolicyID is the .NumericIdentity, or set or them AddedPolicyID = "policyID.Added" // DeletedPolicyID is the .NumericIdentity, or set or them DeletedPolicyID = "policyID.Deleted" // AddedPolicyDenyID is the .NumericIdentity, or set or them AddedPolicyDenyID = "policyID.Deny.Added" // DeletedPolicyDenyID is the .NumericIdentity, or set or them DeletedPolicyDenyID = "policyID.Deny.Deleted" // L3PolicyID is the identifier of a L3 Policy L3PolicyID = "policyID.L3" // L4PolicyID is the identifier of a L4 Policy L4PolicyID = "PolicyID.L4" // AuthType is an enum for the type of authentication required, if any. AuthType = "AuthType" // IsRedirect is a boolean for if the entry is a redirect or not IsRedirect = "IsRedirect" // DNSName is a FQDN or not fully qualified name intended for DNS lookups DNSName = "dnsName" // DNSRequestID is the DNS request id used by dns-proxy DNSRequestID = "DNSRequestID" // MACAddr is a MAC address MACAddr = "macAddr" // NextHop is an IPV4 or IPv6 address for the next hop NextHop = "nextHop" // IPAddr is an IPV4 or IPv6 address IPAddr = "ipAddr" // IPMask is an IPV4 or IPv6 address mask IPMask = "ipMask" // IPv4 is an IPv4 address IPv4 = "ipv4" // IPv6 is an IPv6 address IPv6 = "ipv6" // BPFCompilationTime is the time elapsed to build a BPF endpoint program BPFCompilationTime = "BPFCompilationTime" // StartTime is the start time of an event StartTime = "startTime" // EndTime is the end time of an event EndTime = "endTime" // Interval is the duration for periodic execution of an operation. Interval = "interval" // Duration is the duration of a measured operation Duration = "duration" // V4HealthIP is an address used to contact the cilium-health endpoint V4HealthIP = "v4healthIP.IPv4" // V6HealthIP is an address used to contact the cilium-health endpoint V6HealthIP = "v6healthIP.IPv6" // V4IngressIP is an address used to contact the cilium-Ingress endpoint V4IngressIP = "v4IngressIP.IPv4" // V6IngressIP is an address used to contact the cilium-Ingress endpoint V6IngressIP = "v6IngressIP.IPv6" // V4CiliumHostIP is an address used for the cilium_host interface. V4CiliumHostIP = "v4CiliumHostIP.IPv4" // V6CiliumHostIP is an address used for the cilium_host interface. V6CiliumHostIP = "v6CiliumHostIP.IPv6" // L3n4Addr is a L3 (IP) + L4 (port and protocol) address object. L3n4Addr = "l3n4Addr" // L3n4AddrID is the allocated ID for a L3n4Addr object L3n4AddrID = "l3n4AddrID" // Port is a L4 port Port = "port" // PortName is a k8s ContainerPort Name PortName = "portName" // NamedPorts is a set of named ports NamedPorts = "namedPorts" // Family is the L3 protocol family Family = "family" // Protocol is the L4 protocol Protocol = "protocol" // V4Prefix is a IPv4 subnet/CIDR prefix V4Prefix = "v4Prefix" // V6Prefix is a IPv6 subnet/CIDR prefix V6Prefix = "v6Prefix" // IPv4CIDRs is a list of IPv4 CIDRs IPv4CIDRs = "ipv4CIDRs" // IPv6CIDRs is a list of IPv6 CIDRs IPv6CIDRs = "ipv6CIDRs" // CIDR is a IPv4/IPv6 subnet/CIDR CIDR = "cidr" // CIDRS is a list of IPv4/IPv6 CIDRs CIDRS = "cidrs" // OldCIDR is the previous subnet/CIDR OldCIDR = "oldCIDR" // NewCIDR is the new subnet/CIDR NewCIDR = "newCIDR" // IPAddrs is a lsit of IP addrs IPAddrs = "ipAddrs" // MTU is the maximum transmission unit of one interface MTU = "mtu" // Interface is an interface id/name on the system Interface = "interface" // Veth is a veth object or ID Veth = "veth" // VethPair is a tuple of Veth that are paired VethPair = "vethPair" // NetNSName is a name of a network namespace NetNSName = "netNSName" // HardwareAddr is L2 addr of a network iface HardwareAddr = "hardwareAddr" // Hash is a hash of something Hash = "hash" // ServerNames is the list of TLS SNIs ServerNames = "serverNames" // ServiceName is the orchestration framework name for a service ServiceName = "serviceName" // ServiceNamespace is the orchestration framework namespace of a service name ServiceNamespace = "serviceNamespace" // SessionAffinity indicates whether the ClientIP session affinity is enabled // for the service SessionAffinity = "sessionAffinity" // SessionAffinityTimeout is a timeout for the session affinity SessionAffinityTimeout = "sessionAffinityTimeout" // LoadBalancerSourceRanges is the LB SVC source ranges LoadBalancerSourceRanges = "loadBalancerSourceRanges" // ClusterName is the name of the cluster ClusterName = "clusterName" // ServiceID is the orchestration unique ID of a service ServiceID = "serviceID" // ServiceIP is the IP of the service ServiceIP = "serviceIP" // ServiceKey is the key of the service in a BPF map ServiceKey = "svcKey" // ServiceValue is the value of the service in a BPF map ServiceValue = "svcVal" // ServiceType is the type of the service ServiceType = "svcType" // ServiceHealthCheckNodePort is the port on which we serve health checks ServiceHealthCheckNodePort = "svcHealthCheckNodePort" // ServiceExtTrafficPolicy is the external traffic policy of the service ServiceExtTrafficPolicy = "svcExtTrafficPolicy" // ServiceIntTrafficPolicy is the internal traffic policy of the service ServiceIntTrafficPolicy = "svcIntTrafficPolicy" // BackendIDs is the map of backend IDs (lbmap) indexed by backend address BackendIDs = "backendIDs" // BackendID is the ID of the backend BackendID = "backendID" // BackendWeight is a weight of service backend. BackendWeight = "backendWeight" // Backends is the list of the service backends Backends = "backends" // BackendName is the name of the backend BackendName = "backendName" // BackendSlot is the backend slot number in a service BPF map BackendSlot = "backendSlot" // L7LBProxyPort is the port number of the Envoy listener a L7 LB service redirects traffic to for load balancing. L7LBProxyPort = "l7LBProxyPort" // L7LBFrontendPorts is the list of frontend ports for load balancing. L7LBFrontendPorts = "l7LBFrontendPorts" // BackendState is the state of the backend BackendState = "backendState" // BackendPreferred is the indicator if this backend is preferred if active. BackendPreferred = "backendPreferred" // CiliumNetworkPolicy is a cilium specific NetworkPolicy CiliumNetworkPolicy = "ciliumNetworkPolicy" // CiliumNetworkPolicyName is the name of a CiliumNetworkPolicy CiliumNetworkPolicyName = "ciliumNetworkPolicyName" // CiliumClusterwideNetworkPolicyName is the name of the CiliumClusterWideNetworkPolicy CiliumClusterwideNetworkPolicyName = "ciliumClusterwideNetworkPolicyName" // BPFClockSource denotes the internal clock source (ktime vs jiffies) BPFClockSource = "bpfClockSource" // BPFInsnSet denotes the instruction set version BPFInsnSet = "bpfInsnSet" // CiliumLocalRedirectPolicyName is the name of a CiliumLocalRedirectPolicy CiliumLocalRedirectName = "ciliumLocalRedirectPolicyName" // CiliumEgressGatewayPolicyName is the name of a CiliumEgressGatewayPolicy CiliumEgressGatewayPolicyName = "ciliumEgressGatewayPolicyName" // CiliumClusterwideEnvoyConfigName is the name of a CiliumClusterwideEnvoyConfig CiliumClusterwideEnvoyConfigName = "ciliumClusterwideEnvoyConfigName" // CiliumEnvoyConfigName is the name of a CiliumEnvoyConfig CiliumEnvoyConfigName = "ciliumEnvoyConfigName" // Listener is the name of an Envoy Listener defined in CEC or CCEC Listener = "listener" // BPFMapKey is a key from a BPF map BPFMapKey = "bpfMapKey" // BPFMapValue is a value from a BPF map BPFMapValue = "bpfMapValue" // Device is the device name Device = "device" // Devices is the devices name Devices = "devices" // DirectRoutingDevice is the name of the direct routing device DirectRoutingDevice = "directRoutingDevice" // DatapathMode is the datapath mode name DatapathMode = "datapathMode" // Tunnel is the tunnel name Tunnel = "tunnel" // Selector is a selector of any sort: endpoint, CIDR, toFQDNs Selector = "Selector" // EndpointLabelSelector is a selector for Endpoints by label EndpointLabelSelector = "EndpointLabelSelector" // EndpointSelector is a selector for Endpoints EndpointSelector = "EndpointSelector" // Path is a filesystem path. It can be a file or directory. // Note: pkg/proxy/accesslog points to this variable so be careful when // changing the value Path = "file-path" // Line is a line number within a file Line = "line" // LinkIndex is a network iface index LinkIndex = "linkIndex" // Object is used when "%+v" printing Go objects for debug or error handling. // It is often paired with logfields.Repr to render the object. Object = "obj" // Request is a request object received by us, reported in debug or error. // It is often paired with logfields.Repr to render the object. Request = "req" // Params are the parameters of a request, reported in debug or error. Params = "params" // Response is a response object received by us, reported in debug or error. // It is often paired with logfields.Repr to render the object. Response = "resp" // Resource is a resource Resource = "resource" // Route is a L2 or L3 Linux route Route = "route" // RetryUUID is an UUID identical for all retries of a set RetryUUID = "retryUUID" // Rule is an ip rule Rule = "rule" // XDSStreamID is the ID of an xDS request stream. XDSStreamID = "xdsStreamID" // XDSAckedVersion is the version of an xDS resource acked by Envoy. XDSAckedVersion = "xdsAckedVersion" // XDSCachedVersion is the version of an xDS resource currently in cache. XDSCachedVersion = "xdsCachedVersion" // XDSTypeURL is the URL that identifies an xDS resource type. XDSTypeURL = "xdsTypeURL" // XDSNonce is a nonce sent in xDS requests and responses. XDSNonce = "xdsNonce" // XDSCanary is a boolean indicating whether a response is a dry run. XDSCanary = "xdsCanary" // XDSResourceName is the name of an xDS resource. XDSResourceName = "xdsResourceName" // XDSClientNode is the ID of an XDS client, e.g. an Envoy node. XDSClientNode = "xdsClientNode" // XDSResource is an xDS resource message. XDSResource = "xdsResource" // XDSDetail is detail string included in XDS NACKs. XDSDetail = "xdsDetail" // K8sNodeID is the k8s ID of a K8sNode K8sNodeID = "k8sNodeID" // K8sPodName is the name of a k8s pod K8sPodName = "k8sPodName" // K8sSvcName is the name of a K8s service K8sSvcName = "k8sSvcName" // K8sSvcID is the K8s service name and namespace K8sSvcID = "k8sSvcID" // K8sSvcType is the k8s service type (e.g. NodePort, Loadbalancer etc.) K8sSvcType = "k8sSvcType" // K8sEndpointName is the k8s name for a k8s Endpoint (not a cilium Endpoint) K8sEndpointName = "k8sEndpointName" // K8sNamespace is the namespace something belongs to K8sNamespace = "k8sNamespace" // K8sIdentityAnnotation is a k8s non-identifying annotations on k8s objects K8sIdentityAnnotation = "k8sIdentityAnnotation" // K8sNetworkPolicy is a k8s NetworkPolicy object (not a CiliumNetworkObject, above). K8sNetworkPolicy = "k8sNetworkPolicy" // K8sNetworkPolicyName is the name of a K8sPolicyObject K8sNetworkPolicyName = "k8sNetworkPolicyName" // K8sIngress is a k8s Ingress service object K8sIngress = "k8sIngress" // K8sIngressName is the name of a K8sIngress K8sIngressName = "k8sIngressName" // K8sAPIVersion is the version of the k8s API an object has K8sAPIVersion = "k8sApiVersion" // K8sNodeIP is the k8s Node IP (either InternalIP or ExternalIP) K8sNodeIP = "k8sNodeIP" // K8sUID is the UID of a K8s object K8sUID = "k8sUID" // Attempt is the attempt number if an operation is attempted multiple times Attempt = "attempt" // TrafficDirection represents the directionality of traffic with respect // to an endpoint. TrafficDirection = "trafficDirection" // Modification represents a type of state change operation (insert, delete, // upsert, etc.). Modification = "modification" // BPFMapName is the name of a BPF map. BPFMapName = "bpfMapName" // BPFHeaderHash is the hash of the BPF header. BPFHeaderfileHash = "bpfHeaderfileHash" // BPFMapPath is the path of a BPF map in the filesystem. BPFMapPath = "bpfMapPath" // BPFMapFD is the file descriptor for a BPF map. BPFMapFD = "bpfMapFileDescriptor" // ThreadID is the Envoy thread ID. ThreadID = "threadID" // Reason is a human readable string describing why an operation was // performed Reason = "reason" // Limit is a numerical limit that has been exceeded Limit = "limit" // Count is a measure being compared to the Limit Count = "count" // Debug is a boolean value for whether debug is set or not. Debug = "debug" // PID is an integer value for the process identifier of a process. PID = "pid" // PIDFile is a string value for the path to a file containing a PID. PIDFile = "pidfile" // Probe is the name of a status probe. Probe = "probe" // Key is the identity of the encryption key Key = "key" // URL represents a Uniform Resource Locator. URL = "url" // SysParamName is the name of the kernel parameter (sysctl) SysParamName = "sysParamName" // SysParamValue is the value of the kernel parameter (sysctl) SysParamValue = "sysParamValue" // HashSeed is the seed value for the hashing algorithm HashSeed = "hashSeed" // HelpMessage is the help message corresponding to a log message. // This is to make sure we keep separate contexts for logs and help messages. HelpMessage = "helpMessage" // LRPName is the parsed name of the Local Redirect Policy. LRPName = "lrpName" // LRPFrontend is the parsed frontend mappings of the Local Redirect Policy. LRPFrontends = "lrpFrontends" // LRPLocalEndpointSelector is the local endpoint selector of the Local Redirect Policy. LRPLocalEndpointSelector = "lrpLocalEndpointSelector" // LRPBackendPorts are the parsed backend ports of the Local Redirect Policy. LRPBackendPorts = "lrpBackendPorts" // LRPType is the type of the Local Redirect Policy. LRPType = "lrpType" // LRPFrontendType is the parsed frontend type of the Local Redirect Policy. LRPFrontendType = "lrpFrontendType" // ENPName is the name of the egress nat policy ENPName = "enpName" // Mode describes an operations mode Mode = "mode" // PubKey is the public key PubKey = "pubKey" // NodeIPv4 is the node IPv4 addr NodeIPv4 = "nodeIPv4" // NodeIPv6 is the node IPv4 addr NodeIPv6 = "nodeIPv6" // OldNode refers to the node before the update OldNode = "oldNode" // NewNode refers to the node after the update NewNode = "newNode" // AttachedENIs are the ENIs which have been attached to the node AttachedENIs = "attachedENIs" // ExpectedENIs are the ENIs which are expected to be available ExpectedENIs = "expectedENIs" // Hint helps nudge the user in the right direction when troubleshooting. Hint = "hint" // CEPName is the name of the CiliumEndpoint. CEPName = "ciliumEndpointName" // CEPUID is the UID of the CiliumEndpoint. CEPUID = "ciliumEndpointUID" // CESName is the name of the CiliumEndpointSlice. CESName = "ciliumEndpointSliceName" // WorkQueueQPSLimit is the QPS limit for WorkQueues. WorkQueueQPSLimit = "workQueueQPSLimit" // WorkQueueBurstLimit is the burst limit for WorkQueues. WorkQueueBurstLimit = "workQueueBurstLimit" // WorkQueueSyncBackoff is the backoff time used by workqueues before an attempt to retry sync with k8s-apiserver. WorkQueueSyncBackOff = "workQueueSyncBackOff" // CESSliceMode indicates the name of algorithm used to batch CEPs in a CES. CESSliceMode = "ciliumEndpointSliceMode" // SourceIP is a source IP SourceIP = "sourceIP" DestinationIP = "destinationIP" LocalIP = "localIP" RemoteIP = "remoteIP" SourceCIDR = "sourceCIDR" // DestinationCIDR is a destination CIDR DestinationCIDR = "destinationCIDR" // EgressIP is the egress IP used in a given egress policy EgressIP = "egressIP" // GatewayIP is the gateway IP used in a given egress policy GatewayIP = "gatewayIP" // Number of Backends failed while restoration. RestoredBackends = "restoredBackends" // Number of Backends failed while restoration. FailedBackends = "failedBackends" // SkippedBackends is the number of Backends that were skipped during restore // as duplicates. SkippedBackends = "skippedBackends" // OrphanBackends is the number Backends that are not associated with any services. OrphanBackends = "orphanBackends" // Number of Services failed while restoration. RestoredSVCs = "restoredServices" // Number of Services failed while restoration. FailedSVCs = "failedServices" // Chain is an Iptables chain Chain = "chain" // IPSec SPI SPI = "spi" // IPSec old SPI OldSPI = "oldSPI" // CGroupId is the numerical cgroup id CGroupID = "cgroupID" // Expected is an expected value Expected = "expected" // ConfigSource is a configuration source (for process options, e.g. agent) ConfigSource = "configSource" // ConfigKey is a single key in a configuration source ConfigKey = "configKey" // ConfigAnnotation is an annotation on a node ConfigAnnotation = "configAnnotation" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.