Meter.CreateUpDownCounter 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
CreateUpDownCounter<T>(String, String, String) |
메트릭 UpDownCounter 개체를 만듭니다. |
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>) |
메트릭 UpDownCounter 개체를 만듭니다. |
CreateUpDownCounter<T>(String, String, String)
- Source:
- Meter.cs
- Source:
- Meter.cs
- Source:
- Meter.cs
메트릭 UpDownCounter 개체를 만듭니다.
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit = default, string? description = default) where T : struct;
member this.CreateUpDownCounter : string * string * string -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, Optional unit As String = Nothing, Optional description As String = Nothing) As UpDownCounter(Of T)
형식 매개 변수
- T
측정값의 숫자 형식입니다.
매개 변수
- name
- String
계측 이름입니다.
null
일 수 없습니다.
- unit
- String
측정의 선택적 계측 단위입니다.
- description
- String
선택적 계측 설명입니다.
반환
새로운 다운 카운터.
설명
UpDownCounter는 양수 또는 음수 메트릭 값을 보고할 수 있는 계측기입니다. UpDownCounter에 대한 예제 사용: 활성 요청 또는 큐 크기의 변경 내용 보고
적용 대상
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)
- Source:
- Meter.cs
- Source:
- Meter.cs
메트릭 UpDownCounter 개체를 만듭니다.
public:
generic <typename T>
where T : value class System::Diagnostics::Metrics::UpDownCounter<T> ^ CreateUpDownCounter(System::String ^ name, System::String ^ unit, System::String ^ description, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags) where T : struct;
member this.CreateUpDownCounter : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object))) As UpDownCounter(Of T)
형식 매개 변수
- T
측정값의 숫자 형식입니다.
매개 변수
- name
- String
계측 이름입니다.
null
일 수 없습니다.
- unit
- String
측정의 선택적 계측 단위입니다.
- description
- String
선택적 계측 설명입니다.
- tags
- IEnumerable<KeyValuePair<String,Object>>
카운터에 연결할 태그입니다.
반환
새로운 다운 카운터.
설명
UpDownCounter는 양수 또는 음수 메트릭 값을 보고할 수 있는 계측기입니다. UpDownCounter에 대한 예제 사용: 활성 요청 또는 큐 크기의 변경 내용 보고
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET