https://linen.dev logo
Join Slack
Powered by
# support
  • p

    proud-gold-50429

    09/28/2022, 10:03 PM
    👋 Hello, team! I created a new account today and I was playing around but so far I don’t get the events. My source was implemented in a Ruby project and the destination is a Google Analytics project 🙃
    s
    • 2
    • 14
  • p

    proud-businessperson-71460

    09/29/2022, 1:19 PM
    New to RudderStack, extracting data from NetSuite to RedShift. During the set up at the last step getting an error saying
    s
    a
    • 3
    • 19
  • s

    straight-wire-29384

    09/30/2022, 3:21 PM
    👋 Hello, team! Had a question on the Iterable integration. Is it possible to pass the Iterable fields
    campaignId
    and
    templateId
    to the track event? Wanted to know if they would be passed to the Iterable API for tracking
    h
    • 2
    • 4
  • m

    many-vr-23780

    10/01/2022, 3:39 AM
    Hello team, I'd like to implement the integration with a new destination, Apache Unomi. If you could provide some documentations or guides, it would be very much appreciated.
    • 1
    • 12
  • l

    loud-airport-4842

    10/01/2022, 4:34 AM
    Hi, I am trying to setup stack. Have added sources and destination, exported the workspace config file, mounted the same file with backend container, but Still the container is not starting with workspace json file. Can anyone help me to fix the issue?
    • 1
    • 4
  • w

    wide-ice-66658

    10/03/2022, 11:16 AM
    Hello guys, wanted to understand if suppose i send more than the 1000events/min which is the limit in free tier, do my events get backed up to be sent at a later point or do i incur permanent data loss.? Thanks in advance
    • 1
    • 3
  • e

    enough-telephone-15935

    10/03/2022, 1:29 PM
    Hi team RudderStack, We are using RudderStack cloud mode to log events on CleverTap, And we are also using CleverTap's react native integration separately for push notification, now when RudderStack logs events on CleverTap for an Anonymous user, CleverTap creates a CleverTapId for that Anonymous user. And later on once the rudderClient.identify() is called, the user data are merged to the existing CleverTapId. Now, since our app has a separate React Native Integration for CleverTap, The CleverTap SDK also generates a device specific CleverTapId, And we want to merge these ID's. I want the Key that can be passed to rudderClient.identify() which will in turn be passed to the objectId key in the upload api of CleverTap https://developer.clevertap.com/docs/upload-user-profiles-api#example-request So that , events are logged on. the profile which was created by CleverTap's React Native SDK
    s
    • 2
    • 17
  • l

    loud-planet-33215

    10/03/2022, 5:14 PM
    !!
  • b

    big-rainbow-48554

    10/03/2022, 7:43 PM
    Hello, I'm having issues syncing HubSpot to Snowflake
  • b

    big-rainbow-48554

    10/03/2022, 7:43 PM
    s
    p
    • 3
    • 10
  • b

    blue-accountant-37241

    10/03/2022, 9:24 PM
    Hey , We are using the Javascript SDK to push page views into Mixpanel is via Rudderstack -- which is the boilerplate integration that captures pageviews by default and captures (should) all default properties. We have most of the properties being ingested correctly but are having issues with properties for web such as • Operating System • UTM parameters • DeviceID These are all listed in the default properties. Can someone assist in figuring out why these are not ingested https://help.mixpanel.com/hc/en-us/articles/115004613766-Default-Properties-Collected-by-Mixpanel#javascript-docs:~:text=[…]20(%24os),-OS%20of%20the
    b
    s
    h
    • 4
    • 12
  • s

    sparse-zebra-10962

    10/04/2022, 4:05 AM
    👋 Hello, team!
  • s

    sparse-zebra-10962

    10/04/2022, 4:05 AM
    Are there any known methods to change my email address in my Rudderstack Account?
    • 1
    • 8
  • s

    steep-byte-42023

    10/04/2022, 8:23 AM
    Hi, we are using the open source Rudderstack, and in our account it’s showing a data plane URL and the following
    Copy code
    Trial Limit: 1000 events/min
    This is our second account, our first account doesn’t show this. Who could I speak with about removing this?
    b
    j
    n
    • 4
    • 18
  • d

    damp-vase-55707

    10/04/2022, 9:57 AM
    Hi RudderStack, We recently migrated from Segment to RudderStack (in our web project). Now in our case the events have stopped flowing to CleverTap destination since we migrated. They were working with Segment earlier. We have validated the Clevertap integration keys & everything (all looks good here) & events can be seen flowing to the Clevertap destination from Live events but they are not found in the Clevertap destination Can someone please help me identity what could be the issue here?
    s
    • 2
    • 31
  • p

    proud-businessperson-71460

    10/04/2022, 2:08 PM
    We are evaluating RudderStack, looking for a technical demo of it. Can you please connect us to the demo resources?
    s
    d
    +2
    • 5
    • 10
  • f

    fast-jordan-77850

    10/04/2022, 8:27 PM
    Is there a debug/verbose mode for the backend? I am using the docker compose setup and I am getting is:
    Copy code
    hatch-rudder-stack-backend-1               | Operation timed out
    hatch-rudder-stack-backend-1 exited with code 1
    Here is my setup for the backend:
    Copy code
    rudder-stack-db:
        image: postgres:11-alpine
        environment:
          - POSTGRES_USER=rudder
          - POSTGRES_PASSWORD=password
          - POSTGRES_DB=jobsdb
        ports:
          - "6432:5432"
      rudder-stack-backend:
        depends_on:
          - rudder-stack-db
          - rudder-stack-metrics-exporter
          - rudder-stack-d-transformer
        image: rudderlabs/rudder-server:latest 
        entrypoint: sh -c '/wait-for rudder-stack-db:6432 -- /rudder-server'
        ports:
          - "8080:8080"
        environment:
          - JOBS_DB_HOST=rudder-stack-db
          - JOBS_DB_USER=rudder
          - JOBS_DB_PORT=6432
          - JOBS_DB_DB_NAME=jobsdb
          - JOBS_DB_PASSWORD=password
          - DEST_TRANSFORM_URL=rudder-stack-d-transformer:9091
          - STATSD_SERVER_URL=rudder-stack-metrics-exporter:9102
          - CONFIG_BACKEND_URL=<https://api.rudderlabs.com>
          - WORKSPACE_TOKEN=<token>
      rudder-stack-d-transformer:
        depends_on:
          - rudder-stack-metrics-exporter
        image: rudderlabs/rudder-transformer:latest
        ports:
          - "9091:9090"
        environment:
          - STATSD_SERVER_HOST=rudder-stack-metrics-exporter
          - STATSD_SERVER_PORT="9125"
      rudder-stack-metrics-exporter:
        image:
          prom/statsd-exporter:v0.22.4
        ports:
          - "9102:9102"
    • 1
    • 3
  • f

    few-toddler-98389

    10/05/2022, 7:46 AM
    Hello Team, I got several questions during setting ‘Appsflyer’ with Rudderstack 1. Appsflyer ID is missing a. we use ‘device mode’ and insert code for set up, but events failed and error message was “Appsflyer id is not set. Rejecting the event(error code 400) b. How could we do with this situation? 2. and we decide to use ‘cloud mode’ If ‘Device mode’ is not working. but in your docs, there is only ‘JS’ in ‘cloud mode’ section a. We use ‘cloud mode’ with our app(iOS, Android) b. So we need to know ‘How to use Cloude mode’ for getting ‘externalId’ (include AppsFlyer_ID) Could you please check our issue and give us some guides
    • 1
    • 5
  • a

    alert-magazine-74168

    10/05/2022, 9:27 PM
    Hello! I'm curious about the sync time to Postgres destinations on the free tier. I've read through some of the previous support requests and it seems like the answer is that if the update queue is backlogged then a 30 min sync frequency is not guaranteed. What is a good estimate for an average sync time? Currently sitting at ~7 hours since the "first event time" of the waiting sync.
    • 1
    • 12
  • w

    worried-lighter-96658

    10/06/2022, 8:37 AM
    Does Rudderstack supports 2FA auth for OSS control plane hosted on Rudderstack side ?
    • 1
    • 2
  • s

    straight-pizza-92760

    10/06/2022, 2:35 PM
    HI Team I want to integrate a react native mobile app with Facebook pixel & Google Ads. I have done the integration as per the documentation and I can see all the events being sent to FB on rudderstack dasboard. However, I am unable to see those events in Facebook and it's not allowing me to create campaigns. Same is the case with Google ads - it asks me to choose events to select a conversion event, but the list is empty. Please find below the screenshots:
    • 1
    • 16
  • s

    shy-terabyte-38386

    10/06/2022, 2:40 PM
    does Cloud extract goes into event counting for billing?
    j
    • 2
    • 1
  • c

    colossal-match-56275

    10/06/2022, 3:55 PM
    Hi everyone, Is there a way to know if the user updated the app without opening his app ?
    • 1
    • 3
  • q

    quiet-jordan-21126

    10/07/2022, 4:31 AM
    Hi, I am considering RudderStack for ETL to SQL Server. I see that there is a connector for Stripe, but I also need to get data from two other systems called Thinkific and Brillium. They each have a REST API, but I don't see any option for configuring a generic REST API source...
    h
    • 2
    • 3
  • s

    sparse-pizza-34501

    10/07/2022, 8:26 AM
    Hi, not sure if this relates in this channel. I'm checking App Transparency Tracking policy from Apple. Is it sufficient to initialize rudder client with ``autoCollectAdvertId = false` to comply with Apple policy. ATT popup still need to displayed if
    track
    and
    identify
    events are being forwarded to Meta/Facebook? To me it's still not so clear in this tracking context. Any comments are appreciated to research futher.
    k
    • 2
    • 3
  • m

    mysterious-journalist-49043

    10/07/2022, 9:07 AM
    Hi there! I recently connected the GA 4 destination to our Rudderstack but nothing is sent to GA4... Wen I check live events they all failed and I have an error with a pretty poor explanation:
    Copy code
    {
      "error": "Not Found"
    }
    I checked the secret API key and the Measurement ID, both are ok. Do you know how to solve this issue? Thank you 🙏
    s
    l
    g
    • 4
    • 27
  • i

    incalculable-room-64240

    10/07/2022, 9:18 AM
    I noticed today that our rudderstack sync from Xero to Sql Server hasn't been running for a while. When I checked the history, I saw below. Any idea? #support #general Thank you! 🎫
    s
    • 2
    • 9
  • h

    hundreds-exabyte-78498

    10/07/2022, 5:09 PM
    Hello everybody! I’m an engineer at Barkbox and I’m helping to build out our Rudderstack integration for a new Next.js React app. I found these setup instructions specific to Next that helped me get the sdk script loading on every page. One thing I noticed about the instructions is that the script loaded in the
    _document.js
    file doesn’t include a
    page()
    call and I’m wondering why? I was able to add that line below the
    e.ready()
    line but I’m concerned this might not be best practice for Next.js. In your examples the page event is getting emitted individually on every page, which seems kind of cumbersome for an event you’d want to emit on every page.
    j
    h
    • 3
    • 3
  • w

    white-appointment-62280

    10/08/2022, 12:57 PM
    Hello all, in Rudderstack is the context around an event limited by "common field" and properties defined in documentation?
    • 1
    • 2
  • f

    fresh-window-35674

    10/10/2022, 10:58 PM
    Hi guys, We are trying to send events from rudder to google ads, but it is not working. We setted up the flux but it is not receiving any events. Can anyone help us? cc @dazzling-park-85154
    • 1
    • 17
1...909192...127Latest