Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 389 for telemetry (0.1 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/_helpers.tpl

      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.prometheus.enabled
    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}}
    {{ define "default-sd-metrics" }}
    {{- and
      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.stackdriver.enabled
    }}
    {{- end }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/_helpers.tpl

      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.prometheus.enabled
    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}}
    {{ define "default-sd-metrics" }}
    {{- and
      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.stackdriver.enabled
    }}
    {{- end }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/telemetry/providers.go

    		len(meshConfig.DefaultProviders.AccessLogging) == 0 {
    		c.ForEach(gvk.Telemetry, func(r *resource.Instance) bool {
    			telemetry := r.Message.(*telemetryapi.Telemetry)
    
    			for _, l := range telemetry.AccessLogging {
    				if l.Disabled != nil && l.Disabled.Value {
    					continue
    				}
    				if len(l.Providers) == 0 {
    					c.Report(gvk.Telemetry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 02:29:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    // license that can be found in the LICENSE file.
    
    package telemetry
    
    import (
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"sync"
    	"time"
    
    	"golang.org/x/sync/errgroup"
    	"golang.org/x/telemetry/counter"
    	"golang.org/x/telemetry/internal/crashmonitor"
    	"golang.org/x/telemetry/internal/telemetry"
    	"golang.org/x/telemetry/internal/upload"
    )
    
    // Config controls the behavior of [Start].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package telemetry manages the telemetry mode file.
    package telemetry
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"time"
    )
    
    // Default is the default directory containing Go telemetry configuration and
    // data.
    //
    // If Default is uninitialized, Default.Mode will be "off". As a consequence,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/telemetry/default_selector.go

    // limitations under the License.
    package telemetry
    
    import (
    	"istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // DefaultSelectorAnalyzer validates, per namespace, that there aren't multiple
    // telemetry resources that have no selector. This is distinct from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/dir.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package telemetry
    
    import "golang.org/x/telemetry/internal/telemetry"
    
    // Dir returns the telemetry directory.
    func Dir() string {
    	return telemetry.Default.Dir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 325 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	"strings"
    	"time"
    
    	"golang.org/x/telemetry/internal/configstore"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // RunConfig configures non-default behavior of a call to Run.
    //
    // All fields are optional, for testing or observability.
    type RunConfig struct {
    	TelemetryDir string    // if set, overrides the telemetry data directory
    	UploadURL    string    // if set, overrides the telemetry upload endpoint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/telemetry/lightstep.go

    		}
    	}
    	if len(providerNames) == 0 {
    		return
    	}
    
    	c.ForEach(gvk.Telemetry, func(r *resource.Instance) bool {
    		telemetry := r.Message.(*telemetryapi.Telemetry)
    		for _, tracing := range telemetry.Tracing {
    			for _, p := range tracing.Providers {
    				if providerNames.Contains(p.Name) {
    					c.Report(gvk.Telemetry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 27 17:23:16 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. samples/open-telemetry/loki/REAME.md

    # Open Telemetry with Loki
    
    This sample demonstrates Istio's Open Telemetry [ALS(Access Log Service)](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/access_loggers/grpc/v3/als.proto) and sending logs to [Loki](https://github.com/grafana/loki).
    
    ## Install Istio
    
    Run the following script to install Istio with an Open Telemetry ALS provider:
    
    ```bash
    istioctl install -f iop.yaml -y
    ```
    
    ## Setup Loki
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top