instana_agent 1.0.0
instana_agent: ^1.0.0 copied to clipboard
Instana agent for Flutter
Instana agent for Flutter #
Changelog | Contributing
Instana agent allows Flutter apps to send monitoring data to Instana.
Installation #
The Instana agent Flutter package is available via pub.dev.
You can add it to your app the same way as usual:
- Open the
pubspec.yaml
file located inside the app folder, and addinstana_agent:
underdependencies
. - Install it
From the terminal: Run
flutter pub get
Or- From Android Studio/IntelliJ: Click Packages get in the action ribbon at the top of
pubspec.yaml
. - From VS Code: Click Get Packages located in right side of the action ribbon at the top of
pubspec.yaml
.
- From Android Studio/IntelliJ: Click Packages get in the action ribbon at the top of
Initialization #
Import package in your dart file(s):
import 'package:instana_agent/instana_agent.dart';
Stop and restart the app, if necessary
Setup Instana once as soon as possible. For example, in initState()
@override
void initState() {
super.initState();
InstanaAgent.setup(key: 'YOUR-INSTANA-KEY', reportingUrl: 'YOUR-REPORTING_URL');
}
Tracking View changes #
At any point after initializing the Instana agent:
import 'package:instana_agent/instana_agent.dart';
[...]
InstanaAgent.setView('Home');
Tracking HTTP requests #
At any point after initializing the Instana agent:
import 'package:instana_agent/instana_agent.dart';
[...]
InstanaAgent.startCapture(url: 'https://example.com/success', method: 'GET').then((marker) => marker
..responseStatusCode = 200
..responseSizeBody = 1000
..responseSizeBodyDecoded = 2400
..finish());
We recommend creating your own InstrumentedHttpClient
extending http.BaseClient
as shown in this snippet, for example:
class _InstrumentedHttpClient extends BaseClient {
_InstrumentedHttpClient(this._inner);
final Client _inner;
@override
Future<StreamedResponse> send(BaseRequest request) async {
final Marker marker = await InstanaAgent.startCapture(url: request.url.toString(), method: request.method);
StreamedResponse response;
try {
response = await _inner.send(request);
marker
..responseStatusCode = response.statusCode
..responseSizeBody = response.contentLength
..backendTracingID = BackendTracingIDParser.fromHeadersMap(response.headers);
} finally {
await marker.finish();
}
return response;
}
}
class _MyAppState extends State<MyApp> {
[...]
Future<void> httpRequest() async {
final _InstrumentedHttpClient httpClient = _InstrumentedHttpClient(Client());
final Request request = Request("GET", Uri.parse("https://www.instana.com"));
httpClient.send(request);
}
[...]
}
More #
The complete documentation for this package, including custom events
and others can be found within Instana's public documentation page
Please also check out the Flutter example in this repository for a simple usage demonstration.