March 27, 2023

Liang Ma | Software program Engineer, Core Eng; Wei Zhu | Software program Engineer, Observability

Flow map: Pinterest app to JSON logs batch to Logservice — a batch logging endpoint (/log) that handles perf logs, device info(Android) and new JSON log type to json messages to Singer to Pub/Sub with arrows to Logstash, Merced and Other analytics tools. Logstash goes to Open Search. Open Search goes to OpenSearch Dashboards and Metric generator to Statsboard. Merced goes to S3/Hive.

In early 2020, throughout a essential iOS out of reminiscence incident (we’ve got a blogpost for that), we realized that we didn’t have a lot visibility of how the app is operating or an excellent system to search for for monitoring and troubleshooting.

At the moment, on the consumer facet, there have been a number of methods for logging of their day by day work:

  • Context logging: constructed for logging and reporting impressions or something associated to enterprise, thus a time essential and first-class endpoint. Builders have to explicitly outline keys that might in any other case be rejected by the endpoint. Some firms name it “analytics logging.”
  • Misc: logging to an area file on disk, and even logging to a crash monitoring service as an error kind.

The issues are:

  • Not all logs fall into these classes, and folks typically abuse sure varieties of logging
  • None of those instruments present a great way to visualise or combination. For instance, builders have to make code adjustments to populate info like “what the metric appears to be like like on app model A, on machine B, and beneath community kind C”
  • There isn’t a system that may simply monitor logs in a real-time means, to not point out arrange real-time alerts with log-based customized metrics.

We determined to create an end-to-end pipeline with the next traits:

  • It’s constructed with the least resistance: log payload is schemaless and versatile, mainly key-value pairs. That’s one of many causes we name it JSON logging.
  • It’s prepared to make use of logging APIs on every platform
  • Builders don’t want to the touch any backend stuff
  • It’s straightforward to question and visualize logs
  • Performs in real-time!

With these in thoughts, the next key design choices had been made:

  • The logging service endpoint will deal with logs validating, parsing, and processing.
  • Logs will probably be persevered in hive, thus supporting any SQL-based queries.
  • A single and shared Kafka subject will probably be used for all logs going via this pipeline.
  • It’s built-in with OpenSearch (Amazon’s fork of Elasticsearch and Kibana) as an actual time visualization and question device.
  • It will likely be straightforward to arrange real-time alerting with log-based customized metrics.

Excessive degree

Flow map: Pinterest app to JSON logs batch to Logservice — a batch logging endpoint (/log) that handles perf logs, device info(Android) and new JSON log type to json messages to Singer to Pub/Sub with arrows to Logstash, Merced and Other analytics tools. Logstash goes to Open Search. Open Search goes to OpenSearch Dashboards and Metric generator to Statsboard. Merced goes to S3/Hive.
Determine 1 — structure of the logging pipeline

Schema

Shopper facet service integration will present the metadata, and builders simply want to supply the title of the log and precise log payload. Nothing else is required.

A pattern payload

 “name” = “network_metrics”; //required, set by users “timestamp” = 2022121512345; //required, set by pipeline “metadata” =  //required, set by pipeline “app_version” = “8.40”; “os_version” = “14.0”; “device_model” = “IPHONE11,2; “build_type” = “Production” // “OTA”, “Development”, “Alpha”, etc “network_type” = “wifi” // or “cellular” “country” = “United States”; “platform” = “Android”; … ; “payload” =  // users reported payload will appear here ; ;

Visualize and question

Visualization of logs on Opensearch is comparatively easy following the self-service steering supplied for this pipeline. Additionally, builders can use SQL question and every other question/visualization instruments which might be supported by this pipeline to question.

Example on how to visualize network metrics in real-time with six separate graphics: mobile_json)log::platforms, mobile_networking::host, mobile_json_log::total_count_timeline, mobile_networking::req_num_by_ver, mobile_networking::request_latency, and mobile_networking::status.
Determine 2 — a pattern dashboard of community logs from each iOS and Android apps

Actual-time alerting

Log-based metrics are a cost-efficient solution to summarize log knowledge from all the ingest stream. With log-based metrics, customers can generate a rely metric of logs that match a Lucene question. For extra superior use instances, customers can generate metrics from an OpenSearch time period aggregation question to dissect log knowledge throughout completely different dimensions.

Example on how to create a log-based metric. “Succeeded. Metric Name: es.mobile_json.story_pin_by_event_type. Query Name: name: story_pin_creation_event AND metadata.build_type:Production. Index Name: mobile_json_log. Begin: -30mins. End: -5min. Term Aggs (optional) Field: payload.eventType.key. Tag Key: event_type. Size: 10. Order: desc. Field: metadata.platform.key. Tag Key: platform. Size: 10. Order: desc.”
Determine 3 — instance: how you can create a log-based metric

Log-based metrics can be utilized to construct dashboards and real-time alerts:

Title of Tab: ES Mobile JSON Story Pin Event. sum_aggregator: zimsum:1m-avg-none. Two Stratsboards with red lines and dots titled “iOS story pin event SR” and “Android story pin event SR”.
Determine 4 — instance: a real-time alerting arrange primarily based on the log-based metric, on Statsboard

Since this pipeline was constructed up with none actual push, builders have been proactively adopting this logging system primarily for:

Shopper visibility

  • Networking metrics and crash metrics so that they know higher how the purchasers carry out and get that consumer facet indicators to the topline Pinner Uptime metric
  • Efficiency perception, equivalent to info supplied by iOS MetricKit
  • Customized error reporting, equivalent to exceptions, tender errors, and assertions that had been beforehand both not reported or reported someplace and didn’t have an excellent device to investigate

Product floor/function SLA

  • Some product groups leverage this method to report product function well being, equivalent to Pin creation outcomes, to allow them to monitor success/failure charges in real-time. This typically catches points means sooner than the standard day by day metric aggregation, and it’s particularly helpful for points that API facet monitoring wouldn’t alert straight away.

Developer logs

  • Builders like to make use of this pipeline to achieve visibility of sure logic or code paths on manufacturing, e.g. “has this code ever run?,”, “how typically does this occur?”, and plenty of comparable questions that nobody can reply besides the information.
  • Builders add logs to assist troubleshoot odd bugs which might be very onerous to breed domestically or points that solely happen on sure machine fashions, OS variations, and so on.

Actual Time alerting

  • Due to the convenience of reporting and alerting setup, product groups typically use that only for the sake of real-time alerting.
  • On the Opensearch facet, create sub-level indexes by title, which may enhance question efficiency and likewise higher isolate logs
  • Discover the alerting operate supplied by Opensearch

Acknowledgements: enormous due to Stephen Blanco, Darren Gyles, Sha Sha Chu, Nadine Harik, Roger Wang, and our knowledge & infra crew for his or her contribution, suggestions and help.

To be taught extra about engineering at Pinterest, try the remainder of our Engineering Weblog and go to our Pinterest Labs website. To discover life at Pinterest, go to our Careers web page.