Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FileAccessLogFromMeshConfig (0.46 sec)

  1. pilot/pkg/networking/core/accesslog.go

    	if cal := b.cachedFileAccessLog(); cal != nil {
    		return cal
    	}
    
    	// We need to build access log. This is needed either on first access or when mesh config changes.
    	al := model.FileAccessLogFromMeshConfig(mesh.AccessLogFile, mesh)
    
    	b.mutex.Lock()
    	defer b.mutex.Unlock()
    	b.fileAccesslog = al
    
    	return al
    }
    
    func addAccessLogFilter() *accesslog.AccessLogFilter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    		// For built-in provider, fallback to MeshConfig for formatting options when LogFormat unset.
    		if fp.Name == builtinEnvoyAccessLogProvider && prov.EnvoyFileAccessLog.LogFormat == nil {
    			al = FileAccessLogFromMeshConfig(prov.EnvoyFileAccessLog.Path, push.Mesh)
    		} else {
    			al = fileAccessLogFromTelemetry(prov.EnvoyFileAccessLog)
    		}
    	case *meshconfig.MeshConfig_ExtensionProvider_EnvoyHttpAls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top