mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-19 13:08:27 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
27
node_modules/@opentelemetry/api/build/esm/trace/span_kind.d.ts
generated
vendored
Normal file
27
node_modules/@opentelemetry/api/build/esm/trace/span_kind.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
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
|
||||
* broker. Unlike client and server, there is no direct critical path latency
|
||||
* relationship between producer and consumer spans.
|
||||
*/
|
||||
CONSUMER = 4
|
||||
}
|
||||
//# sourceMappingURL=span_kind.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue