File: common.go

package info (click to toggle)
golang-github-cue-lang-cue 0.12.0.-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,072 kB
  • sloc: sh: 57; makefile: 17
file content (101 lines) | stat: -rw-r--r-- 3,064 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package wire

// This file holds common ocagent types

type Node struct {
	Identifier  *ProcessIdentifier `json:"identifier,omitempty"`
	LibraryInfo *LibraryInfo       `json:"library_info,omitempty"`
	ServiceInfo *ServiceInfo       `json:"service_info,omitempty"`
	Attributes  map[string]string  `json:"attributes,omitempty"`
}

type Resource struct {
	Type   string            `json:"type,omitempty"`
	Labels map[string]string `json:"labels,omitempty"`
}

type TruncatableString struct {
	Value              string `json:"value,omitempty"`
	TruncatedByteCount int32  `json:"truncated_byte_count,omitempty"`
}

type Attributes struct {
	AttributeMap           map[string]Attribute `json:"attributeMap,omitempty"`
	DroppedAttributesCount int32                `json:"dropped_attributes_count,omitempty"`
}

type StringAttribute struct {
	StringValue *TruncatableString `json:"stringValue,omitempty"`
}

type IntAttribute struct {
	IntValue int64 `json:"intValue,omitempty"`
}

type BoolAttribute struct {
	BoolValue bool `json:"boolValue,omitempty"`
}

type DoubleAttribute struct {
	DoubleValue float64 `json:"doubleValue,omitempty"`
}

type Attribute interface {
	labelAttribute()
}

func (StringAttribute) labelAttribute() {}
func (IntAttribute) labelAttribute()    {}
func (BoolAttribute) labelAttribute()   {}
func (DoubleAttribute) labelAttribute() {}

type StackTrace struct {
	StackFrames      *StackFrames `json:"stack_frames,omitempty"`
	StackTraceHashID uint64       `json:"stack_trace_hash_id,omitempty"`
}

type StackFrames struct {
	Frame              []*StackFrame `json:"frame,omitempty"`
	DroppedFramesCount int32         `json:"dropped_frames_count,omitempty"`
}

type StackFrame struct {
	FunctionName         *TruncatableString `json:"function_name,omitempty"`
	OriginalFunctionName *TruncatableString `json:"original_function_name,omitempty"`
	FileName             *TruncatableString `json:"file_name,omitempty"`
	LineNumber           int64              `json:"line_number,omitempty"`
	ColumnNumber         int64              `json:"column_number,omitempty"`
	LoadModule           *Module            `json:"load_module,omitempty"`
	SourceVersion        *TruncatableString `json:"source_version,omitempty"`
}

type Module struct {
	Module  *TruncatableString `json:"module,omitempty"`
	BuildID *TruncatableString `json:"build_id,omitempty"`
}

type ProcessIdentifier struct {
	HostName       string    `json:"host_name,omitempty"`
	Pid            uint32    `json:"pid,omitempty"`
	StartTimestamp Timestamp `json:"start_timestamp,omitempty"`
}

type LibraryInfo struct {
	Language           Language `json:"language,omitempty"`
	ExporterVersion    string   `json:"exporter_version,omitempty"`
	CoreLibraryVersion string   `json:"core_library_version,omitempty"`
}

type Language int32

const (
	LanguageGo Language = 4
)

type ServiceInfo struct {
	Name string `json:"name,omitempty"`
}