컨텐츠로 바로가기

Getting Started

GitHub

__CAPGO_KEEP_11__

설치 섹션

Capgo AI 도구에 다음 명령어를 사용하여 스킬을 추가할 수 있습니다.

터미널 창
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

만약에 다음 명령어를 사용하여 플러그인을 설치하고 아래의 플랫폼별 지침을 따르세요.

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-firebase-performance` plugin in my project.

클립보드에 복사

수입
bun add @capgo/capacitor-firebase-performance
bunx cap sync
import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';

추적 시작.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.startTrace({} as StartTraceOptions);

추적 중지.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.stopTrace({} as StopTraceOptions);

incrementMetric

incrementMetric 섹션

선택한 추적에 있는 지정된 이름의 메트릭을 atomically 증가시킵니다. incrementBy 클립보드 복사

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.incrementMetric({} as IncrementMetricOptions);

setEnabled

setEnabled

성능 모니터링을 활성화하거나 비활성화합니다. 앱이 다음으로 시작될 때 적용됩니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.setEnabled({} as SetEnabledOptions);

isEnabled

isEnabled

성능 모니터링이 활성화되어 있는지 비활성화되어 있는지 결정합니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.isEnabled();

putAttribute

putAttribute

트레이스에 대한 사용자 지정 속성을 지정된 값으로 설정합니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.putAttribute({} as PutAttributeOptions);

getAttribute

getAttribute

트레이스의 사용자 지정 속성의 값을 반환합니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.getAttribute({} as GetAttributeOptions);

트레이스에 대한 모든 사용자 지정 속성과 그 값을 가져옵니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.getAttributes({} as GetAttributesOptions);

removeAttribute

removeAttribute 섹션

이름을 제공하여 트레이스에서 사용자 지정 속성을 제거합니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.removeAttribute({} as RemoveAttributeOptions);

사용자 지정 메트릭의 값을 설정합니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.putMetric({} as PutMetricOptions);

이름에 따라 사용자 지정 메트릭의 값을 가져옵니다.

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.getMetric({} as GetMetricOptions);

","","","","","","","","","",""

","","","","","","","","","",""

import { FirebasePerformance } from '@capgo/capacitor-firebase-performance';
await FirebasePerformance.record({} as RecordOptions);

","","","","","","","","","",""

","","","","","","","","","",""
export interface StartTraceOptions {
/**
* Custom trace name.
*
* Names for custom code traces must meet the following requirements:
* no leading or trailing whitespace, no leading underscore (_) character,
* and max length is 100 characters.
*
* @since 0.1.0
*/
traceName: string;
}
export interface StopTraceOptions {
/**
* Name of the trace that was set with `startTrace`.
*
* @since 0.1.0
*/
traceName: string;
}

IncrementMetricOptions

","","","","","","","","","",""
export interface IncrementMetricOptions {
/**
* Name of the trace that was set with `startTrace`.
*
* @since 0.1.0
*/
traceName: string;
/**
* Name of the metric to be incremented.
*
* @since 0.1.0
*/
metricName: string;
/**
* Amount by which the metric has to be incremented.
*
* @default 1
* @since 0.1.0
*/
incrementBy?: number;
}

SetEnabledOptions

__CAPGO_KEEP_0__
export interface SetEnabledOptions {
/**
* Should performance monitoring be enabled.
*
* @since 0.1.0
*/
enabled: boolean;
}

IsEnabledResult

__CAPGO_KEEP_0__
export interface IsEnabledResult {
/**
* `true` if performance monitoring is enabled, otherwise `false`.
*
* @since 0.1.0
*/
enabled: boolean;
}

PutAttributeOptions

__CAPGO_KEEP_0__
export interface PutAttributeOptions {
/**
* Name of the trace to set its attribute.
*
* @since 6.3.0
*/
traceName: string;
/**
* Name of the attribute to set its value.
*
* @since 6.3.0
* @example "experiment"
*/
attribute: string;
/**
* The value to set to the attribute.
*
* @since 6.3.0
* @example "A"
*/
value: string;
}

GetAttributeOptions

__CAPGO_KEEP_0__
export interface GetAttributeOptions {
/**
* Name of the trace to set its attribute.
*
* @since 6.3.0
*/
traceName: string;
/**
* Name of the attribute to retrieve its value.
*
* @since 6.3.0
*/
attribute: string;
}

GetAttributeResult

__CAPGO_KEEP_0__
export interface GetAttributeResult {
/**
* The value of the custom attribute.
*
* @since 6.3.0
*/
value: string | null;
}

GetAttributesOptions

__CAPGO_KEEP_0__
export interface GetAttributesOptions {
/**
* Name of the trace to get its attributes.
*
* @since 6.3.0
*/
traceName: string;
}

GetAttributesResult

GetAttributesResult 섹션
export interface GetAttributesResult {
/**
* A map of all custom attributes of a trace with their values.
*
* @since 6.3.0
*/
attributes: { [key: string]: string };
}

RemoveAttributeOptions

RemoveAttributeOptions 섹션
export type RemoveAttributeOptions = GetAttributeOptions;

PutMetricOptions

PutMetricOptions 섹션
export interface PutMetricOptions {
/**
* Name of the trace to set its metric.
*
* @since 6.3.0
*/
traceName: string;
/**
* The metric name.
*
* @since 6.3.0
*/
metricName: string;
/**
* The value to set for the metric.
* The given value is floored down to the nearest integer.
*
* @since 6.3.0
*/
num: number;
}

실질적인 원천

실질적인 원천 섹션

이 페이지는 플러그인의 src/definitions.ts API이 업스트림에서 변경될 때 다시 싱크를 실행하세요.

Getting Started에서 계속

Keep going from Getting Started 섹션

If you are using __CAPGO_KEEP_0__ Getting Started API을 위한 대시보드와 API 운영 계획을 세우려면 API 개요 API 개요에서 구현 세부 정보 소개 소개에서 구현 세부 정보 API 키 API 키에서 구현 세부 정보 장치 장치에서 구현 세부 정보 배너 __CAPGO_KEEP_0__ 구현 세부 사항입니다.