dotnet-monitor/cspell.json

203 строки
4.3 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

{
"version": "0.2",
"ignorePaths": [
"eng/common",
"eng/release/DiagnosticsReleaseTool",
"src/external",
2023-01-14 02:04:18 +03:00
"src/inc",
"*.Designer.cs"
],
"overrides": [
{
"filename": "*.resx",
"languageId": "xml"
},
{
"filename": "*{.targets,.props,.*proj}",
"languageId": "msbuild"
2023-01-14 02:04:18 +03:00
}
],
"words": [
"arity",
2023-07-20 03:53:25 +03:00
"armv",
"Bldr",
"blittable",
"Brotli",
"Browsable",
"callstacks",
2023-07-20 03:53:25 +03:00
"cctor",
"CLSID",
"codespace",
2023-04-21 19:40:21 +03:00
"codespaces",
"configurator",
"coreclr",
"darc",
"dbug",
2023-07-20 03:53:25 +03:00
"Demultiplexer",
"disambiguator",
"discoverability",
"Distro",
2023-11-04 00:33:57 +03:00
"distroless",
"dockerfiles",
"dylib",
"entra",
"ESRP",
"evented",
"exfiltrate",
"fwlink",
"gcdump",
"gcdumps",
"globbing",
"globstar",
"HCORENUM",
"hmac",
"HMACSHA",
"hresult",
"Hsts",
"Impls",
"JITID",
"JWTs",
2023-01-14 02:04:18 +03:00
"LCID",
2023-07-20 03:53:25 +03:00
"Ldstr",
"libc",
"livemetrics",
"minidump",
"minio",
2023-11-04 00:33:57 +03:00
"mitigations",
"msbuild",
2023-01-14 02:04:18 +03:00
"msdata",
"MSRC",
"mvid",
"ndjson",
"netcoreapp",
"newtonsoft",
"Notfication",
"NTLM",
"nupkg",
"openapi",
2023-08-01 23:23:07 +03:00
"overreporting",
"PCCOR",
"Pids",
2023-07-20 03:53:25 +03:00
"Pinnable",
2023-11-04 00:33:57 +03:00
"PINVOKE",
2023-07-20 03:53:25 +03:00
"Pkce",
"PKCS",
2023-07-20 03:53:25 +03:00
"pkgs",
"Posix",
"pwsz",
Add support for System.Diagnostics.Metrics (#3479) * Add prototype support for system diagnostics metrics * [feature branch, do not review] Update counter api, fixup metadata parsing (#3137) * Fix ICountersLogger contract * MetadataUpdates * Fixup merge issues * Fixup api protection levels * Fixup tests and add CounterEnded payload * Fixup metadata parsing * [System Diagnostics Metrics] Quantile->Percentile Changes & Testing Improvements (#3165) * Rename counterpipeline * Fix invariant * Fixup regex * Added tests for histogram and timeseries; addressed some other feedback. Still need to address erroneusly printing error message when doing live metrics without Sys.Diag.Metrics, and add configuration option to allow users to specify eventcounter/sys.diag.metrics * Fix counter name * Use one payload for Histogram * Added MetricType option for configuration; added testing to go along with it * Move documentation to correct file * Initial PR feedback * Do not allow CounterEnded events to displace existing metrics * Deduplicate errors * Update dependencies from https://github.com/dotnet/diagnostics build 20230130.1 Microsoft.Diagnostics.Monitoring , Microsoft.Diagnostics.Monitoring.EventPipe From Version 6.0.0-preview.23077.1 -> To Version 6.0.0-preview.23080.1 * Fix minor formatting issues * Fix spell check issues * Update documentation/configuration/metrics-configuration.md Co-authored-by: Justin Anderson <jander-msft@users.noreply.github.com> * Update documentation/configuration/metrics-configuration.md Co-authored-by: Justin Anderson <jander-msft@users.noreply.github.com> * PR Feedback * Add comment from PR --------- Co-authored-by: kkeirstead <kkeirstead@microsoft.com> Co-authored-by: kkeirstead <85592574+kkeirstead@users.noreply.github.com> Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Justin Anderson <jander-msft@users.noreply.github.com>
2023-02-01 20:49:21 +03:00
"quantile",
"rclsid",
"reentrancy",
"REFCLSID",
"REFIID",
"rejit",
"Remoting",
"Renormalize",
"respecifying",
"resx",
"rethrown",
"riid",
"RSASSA",
"runtimes",
"speedscope",
"Tfms",
"threadpool",
"trce",
"tstr",
"ukwn",
"uninitialize",
"Uninstallation",
"uniquifier",
2023-01-14 02:04:18 +03:00
"Unlocalized",
"Unredacted",
2023-07-20 03:53:25 +03:00
"Unthrown",
"upvoting",
"VSAPPIDDIR",
"walkthroughs",
2023-07-20 03:53:25 +03:00
"WSADATA",
"Xunit"
],
"patterns": [
{
"name": "markdown_code_block",
"pattern": "/^(\\s*`{3,}).*[^```]*?^\\1/gmx"
},
{
"name": "markdown_inline_code",
"pattern": "/`[^`\\n\\r]*`/gmx"
},
{
"name": "preprocessor_conditional",
"pattern": "/^[^\\S\\n\\r]*\\#(el)?if (.)*$/gm"
},
{
"name": "test_data",
"pattern": "/^[^\\S\\n\\r]*\\[(Inline|Member)Data\\(.*$/gm"
},
{
"name": "using_statement",
"pattern": "/^[^\\S\\n\\r]*using .*;$/gm"
},
{
"name": "error_codes",
"pattern": "/[A-Z_]+(E|S)_\\w+/gm"
},
{
"name": "il_opcodes",
"pattern": "/CEE_[A-Z_]+/gm"
2023-01-14 02:04:18 +03:00
},
{
"name": "xml_comment_block",
"pattern": "/<!--[\\s\\S]*?-->/gm"
}
],
"languageSettings": [
{
"languageId": [
"markdown"
],
"ignoreRegExpList": [
"markdown_code_block",
"markdown_inline_code"
]
},
{
"languageId": [
"csharp"
],
"allowCompoundWords": true,
"ignoreRegExpList": [
"preprocessor_conditional",
"test_data",
"using_statement"
]
},
{
"languageId": [
"cpp"
],
"allowCompoundWords": true,
"ignoreRegExpList": [
"preprocessor_conditional",
"il_opcodes",
"error_codes"
]
2023-01-14 02:04:18 +03:00
},
{
"languageId": [
"xml"
],
"allowCompoundWords": true,
"ignoreRegExpList": [
"xml_comment_block"
]
},
{
"languageId": [
"msbuild"
],
"allowCompoundWords": true
}
]
}