Log.java
2.63 KB
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
/*
* Copyright 2013-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* 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 com.yoho.trace.sleuth;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
/**
* Represents an event in time associated with a span. Every span has zero or more Logs,
* each of which being a timestamped event name.
*
* @author Spencer Gibb
* @since 1.0.0
*/
public class Log implements Serializable{
/**
* The epoch timestamp of the log record; often set via {@link System#currentTimeMillis()}.
*/
private final long timestamp;
/**
* Event should be the stable name of some notable moment in the lifetime of a span.
* For instance, a span representing a browser page load might add an Event for each of the
* Performance.timing moments here: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming
*
* <p>While it is not a formal requirement, Event strings will be most useful if they are *not*
* unique; rather, tracing systems should be able to use them to understand how two similar spans
* relate from an internal timing perspective.
*/
private final String event;
@JsonCreator
public Log(
@JsonProperty(value = "timestamp", required = true) long timestamp,
@JsonProperty(value = "event", required = true) String event
) {
if (event == null) throw new NullPointerException("event");
this.timestamp = timestamp;
this.event = event;
}
public long getTimestamp() {
return this.timestamp;
}
public String getEvent() {
return this.event;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Log) {
Log that = (Log) o;
return (this.timestamp == that.timestamp)
&& (this.event.equals(that.event));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= (this.timestamp >>> 32) ^ this.timestamp;
h *= 1000003;
h ^= this.event.hashCode();
return h;
}
@Override public String toString() {
return "Log{" +
"timestamp=" + this.timestamp +
", event='" + this.event + '\'' +
'}';
}
}