Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,708 for ControlZ (0.32 sec)

  1. pkg/ctrlz/assets/templates/modules/header.html

                        <polygon points="65,230 125,220 125,110"/>
                        <polygon points="135,220 225,230 135,30"/>
                    </svg>
                </span>
                <span class="brand-name">Istio ControlZ [{{ template "instance" }}]</span>
            </a>
        </nav>
    </header>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 682 bytes
    - Viewed (0)
  2. pkg/ctrlz/topics/args.go

    package topics
    
    import (
    	"net/http"
    	"os"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type argsTopic struct{}
    
    // ArgsTopic returns a ControlZ topic that allows visualization of process command-line arguments.
    func ArgsTopic() fw.Topic {
    	return argsTopic{}
    }
    
    func (argsTopic) Title() string {
    	return "Command-Line Arguments"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/topics/env.go

    package topics
    
    import (
    	"net/http"
    	"os"
    	"sort"
    	"strings"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type envTopic struct{}
    
    // EnvTopic returns a ControlZ topic that allows visualization of process environment variables.
    func EnvTopic() fw.Topic {
    	return envTopic{}
    }
    
    func (envTopic) Title() string {
    	return "Environment Variables"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/version.go

    package topics
    
    import (
    	"net/http"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    	"istio.io/istio/pkg/version"
    )
    
    type versionTopic struct{}
    
    // VersionTopic returns a ControlZ topic that allows visualization of versioning info.
    func VersionTopic() fw.Topic {
    	return versionTopic{}
    }
    
    func (versionTopic) Title() string {
    	return "Version Info"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/signals.go

    package topics
    
    import (
    	"net/http"
    	"os"
    	"syscall"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type signalsTopic struct{}
    
    // SignalsTopic returns a ControlZ topic that sends command signals to the process
    func SignalsTopic() fw.Topic {
    	return signalsTopic{}
    }
    
    func (signalsTopic) Title() string {
    	return "Signals"
    }
    
    func (signalsTopic) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/proc.go

    package topics
    
    import (
    	"net/http"
    	"os"
    	"runtime"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type procTopic struct{}
    
    // ProcTopic returns a ControlZ topic that allows visualization of process state.
    func ProcTopic() fw.Topic {
    	return procTopic{}
    }
    
    func (procTopic) Title() string {
    	return "Process Info"
    }
    
    func (procTopic) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/templates/home.html

    {{ define "title" }}Istio ControlZ{{ end }}
    {{ define "content" }}
    
    <p>
        Make a selection in the left sidebar to inspect & control aspects of this process.
    </p>
    
    <table>
        <tbody>
        <tr>
            <td>Process Name</td>
            <td>{{.ProcessName}}</td>
        </tr>
    
        <tr>
            <td>Heap Size</td>
            <td id="HeapSize">{{.HeapSize}} bytes</td>
        </tr>
    
        <tr>
            <td>Num Garbage Collections</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. istioctl/pkg/admin/istiodconfig.go

    			if err != nil {
    				return fmt.Errorf("could not build port forwarder for ControlZ %s: %v", podName, err)
    			}
    			defer portForwarder.Close()
    			err = portForwarder.Start()
    			if err != nil {
    				return fmt.Errorf("could not start port forwarder for ControlZ %s: %v", podName, err)
    			}
    
    			ctrlzClient := &ControlzClient{
    				baseURL: &url.URL{
    					Scheme: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pkg/ctrlz/topics/scopes.go

    }
    
    var stringToLevel = map[string]log.Level{
    	"debug": log.DebugLevel,
    	"info":  log.InfoLevel,
    	"warn":  log.WarnLevel,
    	"error": log.ErrorLevel,
    	"none":  log.NoneLevel,
    }
    
    // ScopeTopic returns a ControlZ topic that allows visualization of process logging scopes.
    func ScopeTopic() fw.Topic {
    	return scopeTopic{}
    }
    
    func (scopeTopic) Title() string {
    	return "Logging Scopes"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. operator/cmd/operator/server.go

    				log.Errorf("Unable to configure logging: %v", err)
    			}
    
    			if cs, err := ctrlz.Run(introspectionOptions, nil); err == nil {
    				defer cs.Close()
    			} else {
    				log.Errorf("Unable to initialize ControlZ: %v", err)
    			}
    
    			run(sArgs)
    			return nil
    		},
    	}
    
    	loggingOptions.AttachCobraFlags(serverCmd)
    	introspectionOptions.AttachCobraFlags(serverCmd)
    	addServerFlags(serverCmd, sArgs)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top