Sha256: a2fe11e05f0c9fe6379b64900b666b55c56e7cd52d709da84ecc45a9c6d6c43e

Contents?: true

Size: 934 Bytes

Versions: 4

Compression:

Stored size: 934 Bytes

Contents

package appdash;

// CollectPacket is the message sent to a remote collector server by one of
// it's clients.
message CollectPacket {
	// SpanID is the group of information which can uniquely identify the exact
	// span being collected.
	required group SpanID = 1 {
		// trace is the root ID of the tree that contains all of the spans
		// related to this one.
		required fixed64 trace = 2;

		// span is an ID that probabilistically uniquely identifies this span.
		required fixed64 span = 3;

		// parent is the ID of the parent span, if any.
		optional fixed64 parent = 4;
	}

	// Annotation is any number of annotations for the span to be collected.
	repeated group Annotation = 5 {
		// key is the annotation's key.
		required string key = 6;

		// value is the annotation's value, which may be either human or
		// machine readable, depending on the schema of the event that
		// generated it.
		optional bytes value = 7;
	}
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
appdash-0.6.3 defs/appdash/collector.proto
appdash-0.6.2 defs/appdash/collector.proto
appdash-0.6.1 defs/appdash/collector.proto
appdash-0.6.0 defs/appdash/collector.proto