Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT/#294] 엠플리튜드 이벤트 심기 #295

Merged
merged 22 commits into from
Oct 22, 2024

Conversation

leeeyubin
Copy link
Member

@leeeyubin leeeyubin commented Oct 21, 2024

⛳️ Work Description

  • 엠플리튜드 심기
  • 이벤트 타입 변경
  • 버전 업데이트

📢 To Reviewers

이벤트 심는 방법

  • 엠플리튜드 심을 때 track함수의type으로 이벤트 설정해주고, name으로 어떤 내용인지 넣어주면 됩니다.

예를 들어, 다음과 같이 작성하면

 amplitudeTracker.track(
      type = EventType.CLICK,
      name = "home_filtering"
  )

아래처럼 데이터가 뜹니다.
image


  • 프로퍼티를 넣어줘야 할 경우, track함수의 properties에 추가하면 됩니다.
 amplitudeTracker.track(
      type = EventType.CLICK,
      name = "onboarding_completed",
      properties = mapOf(
          "grade" to state.grade,
          "workingPeriod" to state.workingPeriod,
          "startYear" to state.startYear,
          "startMonth" to state.startMonth
      )
  )

그러면 아래처럼 데이터가 뜹니다.

** 참고로 현재 터닝은 온보딩 필터링 말고는 프로퍼티를 넣어줘야 하는 경우는 없습니다!
** 코드 작성을 완료한 경우, 노션에 적용 여부를 "완료"로 바꿔주세요!

@leeeyubin leeeyubin added FEAT ✨ 새로운 기능 구현 유빈💙 유빈 labels Oct 21, 2024
@leeeyubin leeeyubin added this to the 2차 스프린트 작업 milestone Oct 21, 2024
@leeeyubin leeeyubin self-assigned this Oct 21, 2024
Copy link
Member

@boiledEgg-s boiledEgg-s left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다~ 설명 너무 잘해놔서 쓰기 편할거 같네여ㅎㅎ
고생하셨습니닷!!

Copy link
Member

@Hyobeen-Park Hyobeen-Park left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

설명 진짜 쏘스윗하네요.. 쓰기 편할 것 같아요!! 수고하셨습니당😊

@leeeyubin leeeyubin merged commit 14af30d into develop Oct 22, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT ✨ 새로운 기능 구현 유빈💙 유빈
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 엠플리튜드 이벤트 심기
3 participants