Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for registerScope (0.16 sec)

  1. pilot/pkg/config/kube/ingress/status.go

    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    	queue          controllers.Queue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/state.go

    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/status"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("status",
    	"CRD distribution status debugging")
    
    type Progress struct {
    	AckedInstances int
    	TotalInstances int
    }
    
    func (p *Progress) PlusEquals(p2 Progress) {
    	p.TotalInstances += p2.TotalInstances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/pki/ca"
    	caerror "istio.io/istio/security/pkg/pki/error"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var serverCaLog = log.RegisterScope("serverca", "Citadel server log")
    
    // CertificateAuthority contains methods to be supported by a CA.
    type CertificateAuthority interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kube/krt/core.go

    // limitations under the License.
    
    package krt
    
    import (
    	"istio.io/istio/pkg/kube/controllers"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("krt", "")
    
    // Collection is the core resource type for krt, representing a collection of objects. Items can be listed, or fetched
    // directly. Most importantly, consumers can subscribe to events when objects change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. operator/pkg/helm/helm.go

    	DefaultProfileString = "default"
    
    	// NotesFileNameSuffix is the file name suffix for helm notes.
    	// see https://helm.sh/docs/chart_template_guide/notes_files/
    	NotesFileNameSuffix = ".txt"
    )
    
    var scope = log.RegisterScope("installer", "installer")
    
    // TemplateFilterFunc filters templates to render by their file name
    type TemplateFilterFunc func(string) bool
    
    // TemplateRenderer defines a helm template renderer interface.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/config/monitor/monitor.go

    	getSnapshotFunc func() ([]*config.Config, error)
    	// channel to trigger updates on
    	// generally set to a file watch, but used in tests as well
    	updateCh chan struct{}
    }
    
    var log = istiolog.RegisterScope("monitor", "file configuration monitor")
    
    // NewMonitor creates a Monitor and will delegate to a passed in controller.
    // The controller holds a reference to the actual store.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/trustdomain/bundle.go

    package trustdomain
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/constants"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var authzLog = istiolog.RegisterScope("authorization", "Istio Authorization Policy")
    
    type Bundle struct {
    	// Contain the local trust domain and its aliases.
    	// The trust domain corresponds to the trust root of a system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/server/server.go

    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("validationServer", "validation webhook server")
    
    var (
    	runtimeScheme = runtime.NewScheme()
    	codecs        = serializer.NewCodecFactory(runtimeScheme)
    	deserializer  = codecs.UniversalDeserializer()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/kube/controllers/common.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("controllers", "common controller logic")
    
    // Object is a union of runtime + meta objects. Essentially every k8s object meets this interface.
    // and certainly all that we care about.
    type Object interface {
    	metav1.Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/monitoring/monitoring.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    )
    
    var (
    	meter = func() api.Meter {
    		return otel.GetMeterProvider().Meter("istio")
    	}
    
    	monitoringLogger = log.RegisterScope("monitoring", "metrics monitoring")
    )
    
    func init() {
    	otel.SetLogger(log.NewLogrAdapter(monitoringLogger))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top