Network
This page helps you get started with Luciq's network performance monitoring on iOS, and customize URLs grouping for React Native apps.
Getting Started
GraphQL Support
import { ApolloClient, HttpLink, ApolloLink, InMemoryCache, from } from 'apollo-boost';
import { NetworkLogger } from '@luciq/react-native';
//Setting up the handler
const LCQApolloLink = new ApolloLink(NetworkLogger.apolloLinkRequestHandler);
//Sample code
const httpLink = new HttpLink({ uri: 'https://example.com/api' });
const client = new ApolloClient({ cache: new InMemoryCache(), link: from([LCQApolloLink, httpLink])});Payload Size
URL Patterns
What Are the URL Pattern Components?
Does Luciq Detect Patterns Automatically?
Can You Create Custom Patterns?

URL pattern example
Matches with
Doesn't match with
Disabling/Enabling Network Performance Monitoring
Last updated