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

Add some tracing #11102

Merged
merged 8 commits into from
Feb 2, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions migration/executed/25_deprecate_public_notes.cypher

This file was deleted.

6 changes: 3 additions & 3 deletions packages/server/customer-os-api/.env
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@ CLOUDFLARE_API_EMAIL:
OPENSRS_API_KEY:
OPENSRS_API_USERNAME: USERNAME_HERE

PROVIDER_TENANT_NAME: TENANT_NAME_HERE
PROVIDER_USERNAME: USERNAME_HERE
PROVIDER_TENANT_NAME:
PROVIDER_USERNAME:

FILE_STORE_JWT_SECRET: SECRET_HERE
AWS_S3_REGION: us-east-1
AWS_S3_BUCKET: openline

SLACK_CLIENT_ID: CLIENT_ID_HERE
SLACK_CLIENT_SECRET: CLIENT_SECRET_HERE
SLACK_NOTIFY_NEW_TENANT_REGISTERED_WEBHOOK: WEBHOOK_HERE
SLACK_NOTIFY_NEW_TENANT_REGISTERED_WEBHOOK:

IPDATA_API_URL: https://api.ipdata.co
IPDATA_API_KEY:
Expand Down
5 changes: 2 additions & 3 deletions packages/server/customer-os-api/entity/action_item.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ type ActionItemEntity struct {

Content string

Source neo4jentity.DataSource
SourceOfTruth neo4jentity.DataSource
AppSource string
Source neo4jentity.DataSource
AppSource string

DataloaderKey string
}
Expand Down
17 changes: 8 additions & 9 deletions packages/server/customer-os-api/entity/calendar.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ import (

// Deprecated, use neo4j module instead
type CalendarEntity struct {
Id string
CalType string
Link string
Primary bool
CreatedAt time.Time
UpdatedAt time.Time
Source neo4jentity.DataSource
SourceOfTruth neo4jentity.DataSource
AppSource string
Id string
CalType string
Link string
Primary bool
CreatedAt time.Time
UpdatedAt time.Time
Source neo4jentity.DataSource
AppSource string

DataloaderKey string
}
Expand Down
17 changes: 8 additions & 9 deletions packages/server/customer-os-api/entity/custom_field.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,14 @@ func (p propertyName) String() string {
}

type CustomFieldEntity struct {
Id *string
Name string
DataType string
Value model.AnyTypeValue
TemplateId *string
Source neo4jentity.DataSource
SourceOfTruth neo4jentity.DataSource
CreatedAt time.Time
UpdatedAt time.Time
Id *string
Name string
DataType string
Value model.AnyTypeValue
TemplateId *string
Source neo4jentity.DataSource
CreatedAt time.Time
UpdatedAt time.Time
}

type CustomFieldEntities []CustomFieldEntity
Expand Down
48 changes: 24 additions & 24 deletions packages/server/customer-os-api/graphql/generated/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading