blob: 30cbf99624c94bca52fe3641a597cd70a99d7cec [file] [log] [blame]
Girish Gowdra631ef3d2020-06-15 10:45:52 -07001// Copyright (c) 2018 The Jaeger Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package jaeger
16
17// Process holds process specific metadata that's relevant to this client.
18type Process struct {
19 Service string
20 UUID string
21 Tags []Tag
22}
23
24// ProcessSetter sets a process. This can be used by any class that requires
25// the process to be set as part of initialization.
26// See internal/throttler/remote/throttler.go for an example.
27type ProcessSetter interface {
28 SetProcess(process Process)
29}