Version: 0.4.00.5.00.5.10.5.20.6.00.6.10.7.00.8.00.8.10.8.20.8.30.9.00.10.00.10.10.10.20.10.3-alpha.340.10.3-alpha.350.10.3-alpha.410.10.3-canary.00.11.00.11.1-alpha.150.11.1-alpha.350.11.1-alpha.360.11.1-alpha.440.11.1-alpha.480.11.1-alpha.530.12.00.12.1-alpha.70.12.1-alpha.540.13.00.14.00.15.00.16.00.16.1-alpha.110.16.1-alpha.140.16.1-alpha.150.16.1-alpha.200.17.00.17.1-alpha.210.18.00.18.10.19.00.20.00.21.01.0.0-rc.01.0.0-rc.11.0.0-rc.21.0.0-rc.31.0.01.0.11.0.21.0.31.0.41.1.01.2.01.3.01.4.01.4.11.5.01.6.01.7.01.8.01.9.0
export declare enum SpanKind {
/** Default value. Indicates that the span is used internally. */
INTERNAL = 0,
/**
* Indicates that the span covers server-side handling of an RPC or other
* remote request.
*/
SERVER = 1,
* Indicates that the span covers the client-side wrapper around an RPC or
* other remote request.
CLIENT = 2,
* Indicates that the span describes producer sending a message to a
* broker. Unlike client and server, there is no direct critical path latency
* relationship between producer and consumer spans.
PRODUCER = 3,
* Indicates that the span describes consumer receiving a message from a
CONSUMER = 4
}
//# sourceMappingURL=span_kind.d.ts.map