forked from dotnet/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiagnosticsConstants.cs
More file actions
35 lines (29 loc) · 1.21 KB
/
DiagnosticsConstants.cs
File metadata and controls
35 lines (29 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.Extensions.DataIngestion;
internal static class DiagnosticsConstants
{
internal const string ActivitySourceName = "Experimental.Microsoft.Extensions.DataIngestion";
internal const string ErrorTypeTagName = "error.type";
internal static class ProcessDirectory
{
internal const string ActivityName = "ProcessDirectory";
internal const string DirectoryPathTagName = "rag.directory.path";
internal const string SearchPatternTagName = "rag.directory.search.pattern";
internal const string SearchOptionTagName = "rag.directory.search.option";
}
internal static class ProcessFiles
{
internal const string ActivityName = "ProcessFiles";
internal const string FileCountTagName = "rag.file.count";
}
internal static class ProcessSource
{
internal const string DocumentIdTagName = "rag.document.id";
}
internal static class ProcessFile
{
internal const string ActivityName = "ProcessFile";
internal const string FilePathTagName = "rag.file.path";
}
}