Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pydtrace.d 969 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. /* Python DTrace provider */
  2. provider python {
  3. probe function__entry(const char *, const char *, int);
  4. probe function__return(const char *, const char *, int);
  5. probe instance__new__start(const char *, const char *);
  6. probe instance__new__done(const char *, const char *);
  7. probe instance__delete__start(const char *, const char *);
  8. probe instance__delete__done(const char *, const char *);
  9. probe line(const char *, const char *, int);
  10. probe gc__start(int);
  11. probe gc__done(long);
  12. probe import__find__load__start(const char *);
  13. probe import__find__load__done(const char *, int);
  14. };
  15. #pragma D attributes Evolving/Evolving/Common provider python provider
  16. #pragma D attributes Evolving/Evolving/Common provider python module
  17. #pragma D attributes Evolving/Evolving/Common provider python function
  18. #pragma D attributes Evolving/Evolving/Common provider python name
  19. #pragma D attributes Evolving/Evolving/Common provider python args
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...