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

🎉 New Source: FullStory [Low code CDK] #25465

Merged
merged 26 commits into from
May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
56ec9ec
initial commit
amogh-opsverse Apr 25, 2023
e5dc3cf
Update spec.yaml
amogh-opsverse Apr 25, 2023
0649f2f
Delete TODO.md
amogh-opsverse Apr 25, 2023
2b8f129
Update manifest.yaml
amogh-opsverse Apr 25, 2023
5979f2e
updating with requested changes
amogh-opsverse Apr 25, 2023
139d643
add fullstory source integration doc
amogh-opsverse Apr 25, 2023
a525f8d
updating docs and logo
amogh-opsverse Apr 25, 2023
d1bf72b
Merge branch 'master' into fullstory
amogh-opsverse Apr 26, 2023
0685bd4
Update manifest.yaml
amogh-opsverse Apr 27, 2023
8312aef
Update manifest.yaml
amogh-opsverse Apr 27, 2023
300c30a
Update configured_catalog.json to remove incremental sync
amogh-opsverse Apr 27, 2023
72cad9f
Update acceptance-test-config.yml to remove incremental tests
amogh-opsverse Apr 27, 2023
0127614
Merge branch 'master' into fullstory
amogh-opsverse Apr 27, 2023
eed6ef6
Merge branch 'master' into fullstory
amogh-opsverse May 1, 2023
fa0ebaf
Delete expected_records.jsonl
amogh-opsverse May 1, 2023
5bf2bce
Update abnormal_state.json
amogh-opsverse May 1, 2023
6097174
Update acceptance-test-config.yml
amogh-opsverse May 1, 2023
77812b5
update accpt test
marcosmarxm May 1, 2023
8b5c057
remove start date from spec not used
marcosmarxm May 1, 2023
5bac5e1
fix tests
marcosmarxm May 1, 2023
4f8f8e5
add fullstory to source def file
marcosmarxm May 1, 2023
6847b85
Rename eventdefs.json to eventDefs.json
marcosmarxm May 1, 2023
ac6fc45
Merge branch 'master' into fullstory
amogh-opsverse May 1, 2023
08fc4eb
correct dockerfile version in source def
marcosmarxm May 1, 2023
23990cc
auto-bump connector version
octavia-squidington-iii May 1, 2023
541554f
Merge branch 'master' into fullstory
amogh-opsverse May 1, 2023
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
189 changes: 189 additions & 0 deletions airbyte-config-oss/init-oss/src/main/resources/icons/fullstory.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -13399,6 +13399,45 @@
"public": true,
"custom": false,
"releaseStage": "alpha"
}, {
"sourceDefinitionId": "263fd456-02d1-4a26-a35e-52ccaedad778",
"name": "Fullstory",
"dockerRepository": "airbyte/source-fullstory",
"dockerImageTag": "0.1.0",
"documentationUrl": "https://docs.airbyte.com/integrations/sources/fullstory",
"icon": "fullstory.svg",
"sourceType": "api",
"spec": {
"documentationUrl": "https://docs.airbyte.com/integrations/sources/fullstory",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "fullstory.com Source Spec",
"type": "object",
"required": [ "api_key", "uid" ],
"additionalProperties": true,
"properties": {
"api_key": {
"title": "API Key",
"type": "string",
"description": "API Key for the fullstory.com API.",
"airbyte_secret": true
},
"uid": {
"title": "User ID",
"type": "string",
"description": "User ID for the fullstory.com API.",
"airbyte_secret": true
}
}
},
"supportsNormalization": false,
"supportsDBT": false,
"supported_destination_sync_modes": [ ]
},
"tombstone": false,
"public": true,
"custom": false,
"releaseStage": "alpha"
}, {
"sourceDefinitionId": "2a8c41ae-8c23-4be0-a73f-2ab10ca1a820",
"name": "GCS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,14 @@
icon: freshservice.svg
sourceType: api
releaseStage: alpha
- name: Fullstory
sourceDefinitionId: 263fd456-02d1-4a26-a35e-52ccaedad778
dockerRepository: airbyte/source-fullstory
dockerImageTag: 0.1.0
documentationUrl: https://docs.airbyte.com/integrations/sources/fullstory
icon: fullstory.svg
sourceType: api
releaseStage: alpha
- name: GCS
sourceDefinitionId: 2a8c41ae-8c23-4be0-a73f-2ab10ca1a820
dockerRepository: airbyte/source-gcs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5018,6 +5018,31 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-fullstory:0.1.0"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/fullstory"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "fullstory.com Source Spec"
type: "object"
required:
- "api_key"
- "uid"
additionalProperties: true
properties:
api_key:
title: "API Key"
type: "string"
description: "API Key for the fullstory.com API."
airbyte_secret: true
uid:
title: "User ID"
type: "string"
description: "User ID for the fullstory.com API."
airbyte_secret: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-gcs:0.1.0"
spec:
documentationUrl: "https://docsurl.com"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*
!Dockerfile
!main.py
!source_fullstory
!setup.py
!secrets
38 changes: 38 additions & 0 deletions airbyte-integrations/connectors/source-fullstory/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
FROM python:3.9.11-alpine3.15 as base

# build and load all requirements
FROM base as builder
WORKDIR /airbyte/integration_code

# upgrade pip to the latest version
RUN apk --no-cache upgrade \
&& pip install --upgrade pip \
&& apk --no-cache add tzdata build-base


COPY setup.py ./
# install necessary packages to a temporary folder
RUN pip install --prefix=/install .

# build a clean environment
FROM base
WORKDIR /airbyte/integration_code

# copy all loaded and built libraries to a pure basic image
COPY --from=builder /install /usr/local
# add default timezone settings
COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime
RUN echo "Etc/UTC" > /etc/timezone

# bash is installed for more convenient debugging.
RUN apk --no-cache add bash

# copy payload code only
COPY main.py ./
COPY source_fullstory ./source_fullstory

ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.name=airbyte/source-fullstory
Loading