Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,018 for Tracing (0.14 sec)

  1. pkg/tracing/tracing.go

    	)
    	otel.SetTracerProvider(tp)
    	return func() {
    		if err := tp.Shutdown(context.Background()); err != nil {
    			log.Warnf("failed to shutdown tracing: %v", err)
    		}
    	}, nil
    }
    
    // InitializeFullBinary is a specialized variant of Initialize for uses with binaries who are tracing their entire execution
    // as a single trace span. Not for use with long running services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/tracing.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package tracing
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing.go

    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: meshID,
    				},
    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/tracing.go

    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/server"
    	"k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/apiserver/pkg/util/feature"
    	tracing "k8s.io/component-base/tracing"
    	tracingapi "k8s.io/component-base/tracing/api/v1"
    	"k8s.io/utils/path"
    )
    
    const apiserverService = "apiserver"
    
    var (
    	cfgScheme = runtime.NewScheme()
    	codecs    = serializer.NewCodecFactory(cfgScheme)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 21:39:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. common/scripts/tracing.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Usage: tracing::extract_prow_trace.
    # If running in a prow job, this sets the parent trace to the same value Prow tracing will use, as defined in https://github.com/kubernetes/test-infra/issues/30010
    function tracing::extract_prow_trace() {
      if [[ "${PROW_JOB_ID:-}" != "" ]]; then
        local trace
        trace="$(<<< "$PROW_JOB_ID" tr -d '\-')"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/tracing/otelcollector/testdata/otel-tracing-http.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: otel-tracing
    spec:
      tracing:
      - providers:
        - name: test-otel-http
        randomSamplingPercentage: 100.0
        customTags:
          "provider":
            literal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 261 bytes
    - Viewed (0)
  7. tests/integration/telemetry/tracing/otelcollector/testdata/otel-tracing.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: otel-tracing
    spec:
      tracing:
      - providers:
        - name: test-otel
        randomSamplingPercentage: 100.0
        customTags:
          "provider":
            literal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 09:20:10 UTC 2022
    - 251 bytes
    - Viewed (0)
  8. releasenotes/notes/drop-default-tracing.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
        **Removed** default tracing configuration that enables tracing to `zipkin.istio-system.svc`. See upgrade notes for more information.
    upgradeNotes:
      - title: Default tracing to `zipkin.istio-system.svc` removed
        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  9. releasenotes/notes/tracing-canonical-service.yaml

        content: |
          Istio now configures Envoy to include tags identifying the canonical service for a workload in generated trace spans.
    
          This will lead to a small increase in storage per span for tracing backends.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 582 bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/otelcollector/testdata/otel-tracing-res-detectors.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: otel-tracing
    spec:
      tracing:
      - providers:
        - name: test-otel-res-detectors
        randomSamplingPercentage: 100.0
        customTags:
          "provider":
            literal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 289 bytes
    - Viewed (0)
Back to top