Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for visualizers (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"web":    {report.Dot, massageDotSVG(), invokeVisualizer("svg", browsers()), false, "Visualize graph through web browser", reportHelp("web", false, false)},
    
    	// Visualize callgrind output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	configure("compact_labels", "true")
    	configHelp["sample_index"] += fmt.Sprintf("Or use sample_index=name, with name in %v.\n", sampleTypes(p))
    
    	// Do not wait for the visualizer to complete, to allow multiple
    	// graphs to be visualized simultaneously.
    	interactiveMode = true
    	shortcuts := profileShortcuts(p)
    
    	copier := makeProfileCopier(p)
    	greetings(p, o.UI)
    	for {
    		input, err := o.UI.ReadLine("(pprof) ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		if err := c.postProcess(src, dst, o.UI); err != nil {
    			return err
    		}
    		src = dst
    	}
    
    	// If no output is specified, use default visualizer.
    	output := cfg.Output
    	if output == "" {
    		if c.visualizer != nil {
    			return c.visualizer(src, os.Stdout, o.UI)
    		}
    		_, err := src.WriteTo(os.Stdout)
    		return err
    	}
    
    	// Output to specified file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/README.md

    # How to monitor MinIO server with Grafana [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    [Grafana](https://grafana.com/) allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/README.md

    Optionally you can also collect per node metrics. This needs to be done on a per server instance.
    The scrape configurations should use all the servers under `targets` so that graphing systems like
    grafana can visualize them for all the nodes
    
    ```yaml
    scrape_configs:
    - job_name: minio-job
      metrics_path: /minio/v2/metrics/node
      scheme: http
      static_configs:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. testing/performance/README.md

    ### Report
    
    A `performance:report` task generates a static HTML report from the contents of the database in `~/.gradle-performance-test-data`. This report allows the results over
    time to be visualized.
    
    The reports for the most recent test suite run against master can be found at:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    Projects with hundreds of declared dependencies can be difficult to debug.
    Gradle provides tools to visualize and analyze a project's dependency graph (i.e. dependency tree).
    You can use a link:https://scans.gradle.com/get-started[Build Scan(TM)] or <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,built-in tasks>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. pkg/ctrlz/ctrlz.go

    // limitations under the License.
    
    // Package ctrlz implements Istio's introspection facility. When components
    // integrate with ControlZ, they automatically gain an IP port which allows operators
    // to visualize and control a number of aspects of each process, including controlling
    // logging scopes, viewing command-line options, memory use, etc. Additionally,
    // the port implements a REST API allowing access and control over the same state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. samples/addons/README.md

    [Prometheus](https://prometheus.io/) is an open source monitoring system and time series database.
    You can use Prometheus with Istio to record metrics that track the health of Istio and of applications within the service mesh.
    You can visualize metrics using tools like [Grafana](#grafana) and [Kiali](#kiali).
    
    For more information about integrating with Prometheus, please see the [Prometheus integration page](https://istio.io/docs/ops/integrations/prometheus/).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    A build whose execution time is dominated by a single subproject won't benefit much at all.
    Neither will a project with lots of inter-subproject dependencies.
    But most multi-subproject builds see a reduction in build times.
    
    === Visualize parallelism with build scans
    
    Build scans give you a visual timeline of task execution. In the following
    example build, you can see long-running tasks at the beginning and end of the build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top