Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/engagesoftware/elm-application-insights
https://github.com/engagesoftware/elm-application-insights
application-insights elm
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/engagesoftware/elm-application-insights
- Owner: EngageSoftware
- License: apache-2.0
- Created: 2016-10-20T21:02:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-22T06:04:13.000Z (about 8 years ago)
- Last Synced: 2024-04-14T23:17:23.271Z (9 months ago)
- Topics: application-insights, elm
- Language: Elm
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Elm Application Insights
---
Native library for sending tracking information from Elm to Application Insights.DISCLAIMER: All functions here are purely side effect function, but it shouldn't modify the data you pass to the function, and should return it as is.
Example:
```elm
import AppInsights-- You can send string
AppInsights.trackEvent "This is the event message"-- You can also send arbritary value like records
AppInsights.trackEvent { id = 1, value = "One" }-- You can also add this to a pipe
{ data = "One" }
|> ..
|> AppInsights.trackEvent
|> updateData
|> ..
```