0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 04:12:23 +01:00
Commit Graph

3163 Commits

Author SHA1 Message Date
posthog-contributions-bot[bot]
4e96edbde5
🤖: Add avorio as a contributor 🎉 (#4377) 2021-05-18 13:31:59 +02:00
Yakko Majuri
4f80aaf15e
Bump 1.25.0, update changelog (#4342)
* Bump 1.25.0, update changelog

* fix links
2021-05-18 08:25:59 -03:00
Neil Kakkar
7be1b0ef92
Add Capabilities to Plugin model (#4371)
* Add capabilities to plugin model

* update tests
2021-05-18 11:46:01 +01:00
Yakko Majuri
99ff639c5a
Add plugin server job queues to sys status (#4300)
* Add plugin server job queues to sys status

* make util func reusable
2021-05-17 10:09:07 -03:00
PostHog bot
c2d7126d19
Update plugin server to 0.21.3 (#4368) 2021-05-17 14:57:22 +02:00
Sam Winslow
a82bfe01ae
Insights UI improvements, reorder property value selectors (#4354)
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2021-05-15 07:43:03 -07:00
Sam Winslow
ea1d031106
Revert "Revert "Improvements to querying experience"" (#4361) 2021-05-15 07:19:37 -07:00
Li Yi Yu
4fe87c35f4
insights title fix (#4363) 2021-05-14 18:35:38 -04:00
Tim Glaser
e8386d9208
Revert "Improvements to querying experience (#4346)" (#4360)
This reverts commit 11501ced86.
2021-05-14 18:56:44 +02:00
Paolo D'Amico
d118d66a52
Refactor SelectBox search logic & add instrumentation (#4336) 2021-05-14 09:25:43 -07:00
Buddy Williams
2746abb5ed
Not starting the frontend is confusing our users so I'm reverting it to it's original state (#4359) 2021-05-14 12:23:14 -04:00
Sam Winslow
01304ff3d9
use text input on all non-multi-operator queries (#4334)
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2021-05-14 16:19:09 +00:00
Tim Glaser
c466a58837
Fix stickiness caching issue (#4333)
* Fix stickiness caching issue

* fix types

* fix tests

* Remove cache key
2021-05-14 16:57:16 +02:00
Paolo D'Amico
11501ced86
Improvements to querying experience (#4346) 2021-05-14 07:09:53 -07:00
PostHog bot
0ab0ecdd0d
Update plugin server to 0.21.2 (#4356) 2021-05-14 16:06:18 +02:00
Karl-Aksel Puulmann
e1464f5e27
Fix how we measure clickhouse query time (#4355)
Previously a gauge was used. From statsd definitions:

```
StatsD also supports gauges. A gauge will take on the arbitrary value assigned to it, and will maintain its value until it is next set.

gaugor:333|g
If the gauge is not updated at the next flush, it will send the previous value. You can opt to send no metric at all for this gauge, by setting config.deleteGauges
```

This is not appropriate for what we're trying to do (measure all
queries). This change fixes things.
2021-05-14 15:27:37 +03:00
Tim Glaser
71b6c861ba
Remove crypto-js in favour of md5 (#4320) 2021-05-14 13:45:09 +02:00
Kunal
2b78060fc4
fix link (#4352) 2021-05-14 04:04:11 +02:00
Li Yi Yu
f4a6dcde9b
Fix dashboard insight loader (#4321)
* fix dashboard insight loader

* flakey e2e

* undo flakey e2e edit
2021-05-13 20:43:35 -04:00
Tim Glaser
1ae890fbe2
1534 configurable columns person events table (#4141)
Co-authored-by: Mohit Gupta <mohitgupta3mail@gmail.com>
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
Co-authored-by: Sam Winslow <sammywinslow@gmail.com>
2021-05-13 14:13:54 -07:00
posthog-contributions-bot[bot]
7f2529705c
🤖: Add ConradKurth as a contributor 🎉 (#4343) 2021-05-13 21:48:08 +02:00
PostHog bot
e33fb2c149
Update plugin server to 0.21.1 (#4337) 2021-05-13 19:58:45 +02:00
Tim Glaser
99cdd640d3
Rename is_ee_enabled to is_clickhouse_enabled (#4216)
* Rename is_ee_enabled to is_clickhouse_enabled

* Do frontend as well

* Fix import

* fix
2021-05-13 16:56:54 +02:00
Sam Winslow
594d586fe5
Interval filter UI tweaks (#4319) 2021-05-13 09:58:37 -04:00
Karl-Aksel Puulmann
0e58f970cd
Send information whether a request failed to statsd (#4327)
Getting the number of failed queries is good to know. :)
2021-05-13 04:38:43 -07:00
PostHog bot
4f70c85087
Update plugin server to 0.21.0 (#4324) 2021-05-13 12:52:02 +02:00
PostHog bot
68dc4d2730
Update plugin server to 0.20.5 (#4323) 2021-05-13 11:48:59 +02:00
Sam Winslow
1df3428f7d
Wrap feature flag key name in CopyToClipboardInline (#4322) 2021-05-12 16:08:52 -04:00
posthog-contributions-bot[bot]
ffac7d1b1e
🤖: Add JeffreyQ as a contributor 🎉 (#4318) 2021-05-12 20:36:46 +02:00
Li Yi Yu
91b6b5f618
Dashboard insight setup (#4308)
* set up dashboard insight scene

* render dashboard insight and allow for description editing

* add type

* remove loader

* copy pasta error
2021-05-12 12:18:28 -04:00
Neil Kakkar
2985bc346f
Update wording for runEvery functions in PluginEditor (#4315)
* Update wording for `runEvery` functions in PluginEditor

There's a distributed lock across plugin servers that ensures only one server gets the task ( https://github.com/PostHog/plugin-server/blob/master/src/main/services/schedule.ts#L43 ), and piscina enqueues the task only once, which ensures only one worker in a server gets it (https://github.com/PostHog/plugin-server/blob/master/src/main/services/schedule.ts#L94-L103)

* minor changes

Co-authored-by: Yakko Majuri <38760734+yakkomajuri@users.noreply.github.com>
2021-05-12 15:06:17 +01:00
Paolo D'Amico
9ddf910764
#4050 query revamp - Final Touches (#4314) 2021-05-12 08:56:51 -04:00
Paolo D'Amico
ebddd25ba5
#4050 insights layouts & misc improvements (#4306) 2021-05-12 03:38:01 -07:00
Sam Winslow
c7b71c4e53
New filtering experience UI enhancements (#4296) 2021-05-11 19:34:47 -07:00
Eric Duong
ff0aa43f3e
rename to be more clear (#4303) 2021-05-11 14:29:15 -04:00
PostHog bot
a09ceaf976
Update plugin server to 0.20.4 (#4302) 2021-05-11 18:21:29 +02:00
Michael Matloka
63d576a276
Fix empty /personalization due to personalizationLogic error (#4287) 2021-05-11 07:16:58 -07:00
Karl-Aksel Puulmann
3e5e1fbe43
Avoid side-effects in api/capture import (#4297)
This could cause scripts to fail when kafka is not available even if not
used.

KafkaProducer class is already a singleton wrapper so this changes no
behavior
2021-05-11 15:00:45 +03:00
Yakko Majuri
d865950016
Prevent search engine crawling of self-hosted PostHog instances (#4189)
* Prevent search engine crawling of self-hosted PostHog instances

* tweaks

* fix code quality

* fix test

* remove env var

* update tests

* fix test

* try new approach

* yet again
2021-05-10 17:59:10 -03:00
Eric Duong
8c623d3a9a
Match session setting to insight param (#4285)
* match session setting to insight param

* add more param handling

* remove unnecessary changes
2021-05-10 17:03:59 -03:00
Li Yi Yu
b2180412ba
Revert dashboard item view (#4286)
* lint fix

* revert update

* revert everything
2021-05-10 14:11:35 -04:00
Sam Winslow
eb5400a794
Customizability for ResizableTable && styling fixes
Co-authored-by: Michael Matloka <dev@twixes.com>
2021-05-10 13:01:11 -04:00
Sam Winslow
5c09c820fb
Change event target criteria for outside click (#4290) 2021-05-10 12:34:58 -04:00
PostHog bot
9742ee9580
Update plugin server to 0.20.3 (#4291) 2021-05-10 18:22:08 +02:00
PostHog bot
ce56028738
Update plugin server to 0.20.2 (#4288) 2021-05-10 18:07:32 +02:00
Michael Matloka
106e0b7182
Improve capture/decide metrics (#4279) 2021-05-10 13:24:48 +00:00
Michael Matloka
10972a6bec
Handle empty distinct_id in capture endpoint (#4276)
* generate_exception_response on empty distinct_id in capture

* Add test, but removing NaN distinct_id support

* Fix merge with master
2021-05-10 13:47:14 +02:00
Michael Matloka
68b9994f22
Increments StatsD counter with tags in generate_exception_response (#4275)
* Increments StatsD counter with tags in generate_exception_response

* Use `type` param instead of `detail` in generate_exception_response tags
2021-05-10 10:20:44 +00:00
Karl-Aksel Puulmann
0a56469f07
Migrate clickhouse alongside postgres in production (#4258)
Latest migrations have been applied.

Only thing we need to keep in sync is CLICKHOUSE_MIGRATION_HOSTS env
variable going forward - managed via secrets manager.
2021-05-10 12:54:26 +03:00
Michael Matloka
964f9ce79c
Improve plugin preinstallation error notice (#4274) 2021-05-10 09:24:59 +00:00