Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
62 lines
No EOL
1.4 KiB
Text
62 lines
No EOL
1.4 KiB
Text
import { Context, TimeInput } from '@opentelemetry/api';
|
|
import { AnyValue, AnyValueMap } from './AnyValue';
|
|
export declare type LogBody = AnyValue;
|
|
export declare type LogAttributes = AnyValueMap;
|
|
export declare enum SeverityNumber {
|
|
UNSPECIFIED = 0,
|
|
TRACE = 1,
|
|
TRACE2 = 2,
|
|
TRACE3 = 3,
|
|
TRACE4 = 4,
|
|
DEBUG = 5,
|
|
DEBUG2 = 6,
|
|
DEBUG3 = 7,
|
|
DEBUG4 = 8,
|
|
INFO = 9,
|
|
INFO2 = 10,
|
|
INFO3 = 11,
|
|
INFO4 = 12,
|
|
WARN = 13,
|
|
WARN2 = 14,
|
|
WARN3 = 15,
|
|
WARN4 = 16,
|
|
ERROR = 17,
|
|
ERROR2 = 18,
|
|
ERROR3 = 19,
|
|
ERROR4 = 20,
|
|
FATAL = 21,
|
|
FATAL2 = 22,
|
|
FATAL3 = 23,
|
|
FATAL4 = 24
|
|
}
|
|
export interface LogRecord {
|
|
/**
|
|
* The time when the log record occurred as UNIX Epoch time in nanoseconds.
|
|
*/
|
|
timestamp?: TimeInput;
|
|
/**
|
|
* Time when the event was observed by the collection system.
|
|
*/
|
|
observedTimestamp?: TimeInput;
|
|
/**
|
|
* Numerical value of the severity.
|
|
*/
|
|
severityNumber?: SeverityNumber;
|
|
/**
|
|
* The severity text.
|
|
*/
|
|
severityText?: string;
|
|
/**
|
|
* A value containing the body of the log record.
|
|
*/
|
|
body?: LogBody;
|
|
/**
|
|
* Attributes that define the log record.
|
|
*/
|
|
attributes?: LogAttributes;
|
|
/**
|
|
* The Context associated with the LogRecord.
|
|
*/
|
|
context?: Context;
|
|
}
|
|
//# sourceMappingURL=LogRecord.d.ts.map |