/******** Display limits ********/ export declare const MAX_STRING_DISPLAY_LENGTH = 1000; export declare const LOG_PREVIEW_MAX_LENGTH_CHARS = 500; export declare const LOG_PREVIEW_SHORT_LENGTH_CHARS = 100; export declare const CODE_PREVIEW_MAX_LENGTH_CHARS = 200; export declare const MAX_STACK_TRACE_LINES = 100; /******** Trace limits ********/ export declare const MAX_SPAN_NAME_LENGTH = 1000; export declare const MAX_TRACE_ATTRIBUTE_VALUE_SIZE = 10000; export declare const MAX_EVENTS_PER_SPAN = 100; export declare const MAX_LINKS_PER_SPAN = 100; export declare const MAX_SERVER_ACTION_ARGS = 50; export declare const MAX_TEST_ITERATIONS = 100; /******** Cache size limits ********/ export declare const CACHE_MAX_ENTRIES_SMALL = 50; export declare const CACHE_MAX_ENTRIES_MEDIUM = 200; export declare const CACHE_MAX_ENTRIES_LARGE = 500; export declare const CACHE_MAX_ENTRIES_XLARGE = 1000; export declare const API_ROUTE_CACHE_MAX_ENTRIES = 500; export declare const HANDLER_CACHE_MAX_ENTRIES = 256; /** Maximum key length accepted by the shared in-memory cache adapter. */ export declare const MAX_CACHE_KEY_CHARACTERS = 16384; export declare const MAX_PATH_LENGTH_CHARS = 4096; /** Maximum number of path segments admitted by framework route resolvers. */ export declare const MAX_ROUTE_SEGMENTS = 64; export declare const MAX_PORT_NUMBER = 65535; export declare const MIN_PORT_NUMBER = 1; export declare const MAX_URL_LENGTH_FOR_VALIDATION = 2048; /** Maximum batch size. */ export declare const MAX_BATCH_SIZE = 100; /** Largest delay supported consistently by JavaScript timer implementations. */ export declare const MAX_TIMER_DELAY_MS = 2147483647; //# sourceMappingURL=limits.d.ts.map