- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Powerpacks는 전문 그래프를 재사용 가능한 대시보드 빌딩 블록으로 규모 조정할 수 있는 템플릿 형식의 위젯 그룹입니다. Powerpacks는 사전 설정(Datadog에서 만들고, 모든 고객이 사용 가능)하거나 커스텀(사용자가 만들고, 조직 내에서만 사용 가능)하여 사용할 수 있습니다. Powerpacks 모범 사례에 관한 자세한 내용은 Powerpacks로 전문 그래프 규모 조정하기 가이드를 참고하세요.
대시보드 기존 그룹에서 Powerpack 만들기
참고: Powerpack을 생성한 후에는 원래 그룹이 Powerpack 인스턴스로 교체됩니다.
Powerpack이 사용된 모든 대시보드에 Powerpack 동기화로 변경
Powerpack 레이아웃과 외형을 변경하는 방법:
Powerpack 상세 내용을 변경하는 방법:
참고: Powerpack을 업데이트하거나 권한을 수정하려면 편집 권한이 있어야 합니다.
Powerpack을 생성한 후 여러 대시보드에 Powerpack 인스턴스를 추가할 수 있습니다.
대시보드에 Powerpack 인스턴스를 추가하는 방법:
Powerpack 인스턴스를 변경해도 다른 대시보드에 있는 Powerpack 인스턴스에 적용되지 않습니다.
대시보드에 있는 Powerpack 인스턴스를 사용자 지정하는 방법:
Powerpack 편집 권한을 변경하는 방법:
이 위젯은 **대시보드 API**와 함께 사용할 수 있습니다. 위젯 JSON 스키마 정의에 대한 다음 표를 참조하세요.
항목
유형
설명
background_color
string
Background color of the powerpack title.
banner_img
string
URL of image to display as a banner for the powerpack.
powerpack_id [required]
string
UUID of the associated powerpack.
show_title
boolean
Whether to show the title or not.
default: true
template_variables
object
Powerpack template variables.
controlled_by_powerpack
[object]
Template variables controlled at the powerpack level.
name [required]
string
The name of the variable.
prefix
string
The tag prefix associated with the variable.
values [required]
[string]
One or many template variable values within the saved view, which will be unioned together using OR
if more than one is specified.
controlled_externally
[object]
Template variables controlled by the external resource, such as the dashboard this powerpack is on.
name [required]
string
The name of the variable.
prefix
string
The tag prefix associated with the variable.
values [required]
[string]
One or many template variable values within the saved view, which will be unioned together using OR
if more than one is specified.
title
string
Title of the widget.
type [required]
enum
Type of the powerpack widget.
Allowed enum values: powerpack
default: powerpack
{
"background_color": "string",
"banner_img": "string",
"powerpack_id": "df43cf2a-6475-490d-b686-6fbc6cb9a49c",
"show_title": false,
"template_variables": {
"controlled_by_powerpack": [
{
"name": "host1",
"prefix": "string",
"values": [
"my-host",
"host1",
"host2"
]
}
],
"controlled_externally": [
{
"name": "host1",
"prefix": "string",
"values": [
"my-host",
"host1",
"host2"
]
}
]
},
"title": "string",
"type": "powerpack"
}