Skip to content

A multiplatform HTTP inspection library for Ktor inspired by Chucker with request response overriding/mocking

License

Notifications You must be signed in to change notification settings

ShreyashKore/inspektor

Repository files navigation

Inspektor logo

Inspektor 🕵️‍♂️

main status kotlin kotlin latest version

Caution

This library is not stable, and the API may change. It is not advised to use it in production projects.

Inspektor is an HTTP inspection library for Ktor. It allows you to view HTTP requests and responses, including basic information, headers, and bodies. Please note that this library is not stable, and the API may change. Users are not advised to use it in production projects.

Here's an introductory article for those who are interested.

Screenshots

Installation

Add the following dependency to your build.gradle.kts file:

dependencies {
    implementation("com.gyanoba.inspektor:inspektor:latest-version")
}

Usage

To use Inspektor, install the plugin in your HttpClient configuration:

// For Android this is enough
val client = HttpClient {
    install(Inspektor)
}

suspend fun apiCall() {
    client.get("http://example.com")
}

For ios you need to add the following -lsqlite3 to the Other Linker flags under Build Settings. See more details here

For Desktop platforms, you need to specify the APPLICATION_ID using setApplicationId before using Inspektor. This is used to determine the location to store the database file.

fun main() {
    setApplicationId("com.example.myapp")
    // ...
}

Configuration

You can customize Inspektor using the InspektorConfig object. Here are the available options:

  • level: Specifies the logging level. Available options are LogLevel.NONE, LogLevel.INFO, LogLevel.HEADERS, and LogLevel.BODY.
  • maxContentLength: Sets the maximum content length for logging request and response bodies.
  • filter: Allows you to filter log messages for calls matching a predicate.
  • sanitizeHeader: Allows you to sanitize sensitive headers to avoid their values appearing in the logs.
  • showNotifications: If set to true, notifications will be shown for HTTP requests. Defaults to true.
  • retentionDuration: Specifies the duration for which the logs will be retained. Defaults to 30 days.

Example

install(Inspektor) {
    level = LogLevel.HEADERS
    maxContentLength = 100_000
    filter { request -> request.url.host.contains("example.com") }
    sanitizeHeader { header -> header == "Authorization" }
    showNotifications = true
    retentionDuration = 30.days
}

Overriding Requests and Responses

This feature is meant to be used for testing purposes. It allows you to override the request and response bodies. To use this feature, open the overrides page from the menu. Add new overrides by specifying matchers for the request; then select the action to perform, i.e. override the request or response. Only the values specified are replaced in the request or response. Empty values are ignored.

Request.Response.Overriding.mp4

You can easily add new overrides by clicking on the Edit icon in the Transactions List screen. Default override with original info gets created which you can then modify to get your desired result.

Viewing the logs

Inspektor provides a UI to view the logs. You can access it by invoking openInspektor function. This opens up a new activity in Android, a bottom sheet in iOS, and a new window in the Desktop.

On Android you can also open the UI by clicking on the generated notifications.

HAR Export

Inspektor supports exporting the logs in HAR format. You can export the logs by clicking on the "Export as HAR" button in the UI. This allows you to analyze the logs in detail using tools like HAR Viewer or Fiddler.

Upcoming Features 🚀

  • Request-Response overriding functionality
  • Pause and allow editing Request and Response
  • HAR export for detailed analysis
  • More HTTP client support (OkHttp maybe?)

License

This project is licensed under the MIT License. See the LICENSE file for details.

Inspiration

This project is inspired by Chucker - An HTTP inspector for Android & OkHttp. It borrows many ideas (and some code 😉) from the project.

Disclaimer ⚠️

This library is not stable, and the API may change. Users are not advised to use it in production projects.

About

A multiplatform HTTP inspection library for Ktor inspired by Chucker with request response overriding/mocking

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •